The same config in 1.3 doesn't have tc filter in 1.3
- Feed Queries
- All Stories
- Search
- Feed Search
- Transactions
- Transaction Logs
Jun 16 2023
It's time to separate this task into subtasks.
Jun 15 2023
Don't see errors with this configuration:
set interfaces ethernet eth1 vif 11 address '192.0.2.2/24' set interfaces input ifb0 description 'WAN Ingress'
vhost modules are not included to kernet
Jun 14 2023
PR https://github.com/vyos/vyos-1x/pull/2042
set service config-sync mode 'load' set service config-sync secondary address '192.168.122.11' set service config-sync secondary key 'foo' set service config-sync section 'nat'
Jun 13 2023
Thanks, @jestabro
It works in my tests!!
Jun 12 2023
In T2251#150145, @ganawaj wrote:This bug is still present in the latest 1.4 rolling release
Jun 10 2023
The similar task https://vyos.dev/T4797
You can add manually nft rules that used for firewall group, but they will overwritten per next firewall change/commit. The whole firewall config will overwritten.
There are 2 ways. Somehow use it in CLI or use native (nft) tables, chains, group-sets and rules which are not overlapping with generated “system” firewall ruleset
Jun 8 2023
Jun 7 2023
Jun 6 2023
Jun 5 2023
PR for vyos-1x https://github.com/vyos/vyos-1x/pull/2025
Jun 3 2023
Jun 2 2023
Validator doesn't allow setting network address to the interface
the same way you can't add 10.2.3.0/24 to interface
But natively it seems working
vyos@r14# sudo ip a add 10.5.0.0/24 dev eth0 [edit] vyos@r14# ping 10.5.0.0 PING 10.5.0.0 (10.5.0.0) 56(84) bytes of data. 64 bytes from 10.5.0.0: icmp_seq=1 ttl=64 time=0.062 ms ^C
May 31 2023
Maybe this [a-zA-Z_](?:[a-zA-Z0-9_\-\.]{0,}[a-zA-Z0-9_\-])?
I have the correct host-name after reboot
vyos@r14:~$ vyos@r14:~$ vtysh -c "show run" | match host hostname r14 vyos@r14:~$ vyos@r14:~$ vyos@r14:~$ show ver Version: VyOS 1.4-rolling-202305260317 Release train: current
May 30 2023
May 29 2023
May 28 2023
Maybe the related bug described in T4737
Could you show a version of FRR?
show version all | match frr
May 27 2023
In T970#149229, @olivier.hault wrote:How far are we in the testing of this important feature ?
May 25 2023
Virtual-ethernet interfaces veth implemented in T4825
For veth in "netns" it should be a separate task.
I can't reproduce it VyOS 1.4-rolling-202305250317
set load-balancing wan flush-connections set load-balancing wan interface-health eth0 failure-count '3' set load-balancing wan interface-health eth0 nexthop '192.168.122.1' set load-balancing wan interface-health eth0 success-count '5' set load-balancing wan interface-health eth0 test 1 target '1.1.1.1' set load-balancing wan interface-health eth0 test 2 target '8.8.8.8' set load-balancing wan interface-health eth2 failure-count '10' set load-balancing wan interface-health eth2 nexthop 'dhcp' set load-balancing wan interface-health eth2 success-count '10' set load-balancing wan interface-health eth2 test 1 target '1.1.1.1' set load-balancing wan interface-health eth2 test 2 target '8.8.8.8' set load-balancing wan rule 1 failover set load-balancing wan rule 1 inbound-interface 'eth1.10' set load-balancing wan rule 1 interface eth0 weight '100' set load-balancing wan rule 1 interface eth2 weight '10'
May 24 2023
PR https://github.com/vyos/vyos-1x/pull/2017
set interfaces virtual-ethernet veth10 peer-name 'veth100' set interfaces virtual-ethernet veth10 vif 50 address '10.0.50.0/31' set interfaces virtual-ethernet veth100 peer-name 'veth10' set interfaces virtual-ethernet veth100 vif 50 address '10.0.50.1/31'
Check:
vyos@r14:~$ show interfaces virtual-ethernet Codes: S - State, L - Link, u - Up, D - Down, A - Admin Down Interface IP Address S/L Description --------- ---------- --- ----------- veth10 - u/u veth10.50 10.0.50.0/31 u/u veth100 - u/u veth100.50 10.0.50.1/31 u/u vyos@r14:~$
Pings:
vyos@r14:~$ ping 10.0.50.1 source-address 10.0.50.0 PING 10.0.50.1 (10.0.50.1) from 10.0.50.0 : 56(84) bytes of data. 64 bytes from 10.0.50.1: icmp_seq=1 ttl=64 time=0.132 ms 64 bytes from 10.0.50.1: icmp_seq=2 ttl=64 time=0.085 ms 64 bytes from 10.0.50.1: icmp_seq=3 ttl=64 time=0.087 ms ^C --- 10.0.50.1 ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2064ms rtt min/avg/max/mdev = 0.085/0.101/0.132/0.021 ms vyos@r14:~$
It is a part of T3829
We should find a solution to check if the interface "neighbor" is in a separate netns. For now, we don't do this check.
veth pair should be in the local router only, VRF or NETNS and it won't work between 2 separate routers or 2 VMs.