PR https://github.com/vyos/vyos-1x/pull/2945
set firewall group address-group ONE address 192.0.2.1 description 'First' set firewall group address-group ONE address 192.0.2.2 description 'Second'
PR https://github.com/vyos/vyos-1x/pull/2945
set firewall group address-group ONE address 192.0.2.1 description 'First' set firewall group address-group ONE address 192.0.2.2 description 'Second'
It seems FRR (9.0.2-36-g31dec1951) does not support this.
The route can be added, but no route is in the routing table.
vyos@r4:~$ vtysh -c "conf t" -c "ip route 192.0.2.0/24 2001:db8::1" vyos@r4:~$ vyos@r4:~$ vtysh -c "show run" | match 192.0.2.0 ip route 192.0.2.0/24 2001:db8::1 vyos@r4:~$ vyos@r4:~$ vyos@r4:~$ show ip route 192.0.2.0/24 % Network not in table vyos@r4:~$
PR for 1.5 https://github.com/vyos/vyos-build/pull/493
PR for 1.3 https://github.com/vyos/vyos-build/pull/494
Update supports via whitespace
r4(config-router)# neighbor foo path-attribute discard 23 24
FRR does not support it
r4# conf t r4(config)# router bgp 65001 r4(config-router)# no bgp ebgp-requires-policy r4(config-router)# no bgp default ipv4-unicast r4(config-router)# no bgp network import-check r4(config-router)# neighbor foo peer-group r4(config-router)# neighbor foo path-attribute discard 24 r4(config-router)# neighbor foo path-attribute discard 23,24 % Unknown command: neighbor foo path-attribute discard 23,24 r4(config-router)#
It won't be implemented for 1.3.x
Have this for 1.4/1.5
merged
wget https://github.com/RUB-NDS/Terrapin-Scanner/releases/download/v1.1.0/Terrapin_Scanner_Linux_amd64 chmod +x Terrapin_Scanner_Linux_amd64
Fixed https://packages.debian.org/buster/openssh-server
vyos@r15:~$ show version all | match ssh ii libssh-4:amd64 0.8.7-1+deb10u2 amd64 tiny C SSH library (OpenSSL flavor) ii libssh2-1:amd64 1.8.0-2.1+deb10u1 amd64 SSH2 client-side library ii openssh-client 1:7.9p1-10+deb10u4 amd64 secure shell (SSH) client, for secure access to remote machines ii openssh-server 1:7.9p1-10+deb10u4 amd64 secure shell (SSH) server, for secure access from remote machines ii openssh-sftp-server 1:7.9p1-10+deb10u4 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines ii python3-paramiko 2.4.2-0.1+deb10u1 all Make ssh v2 connections (Python 3) ii sshguard 2.3.1-1 amd64 Protects from brute force attacks against ssh vyos@r15:~$ vyos@r15:~$ show version
Duplicate of https://vyos.dev/T3500
The root issue could be in https://vyos.dev/T5611 T5611
@stoicopa Do you have any ideas for CLI?
@cleopold73 Do you have any ideas for CLI?
It is more of an upstream issue.
In addition, the PR already exists https://github.com/vyos/vyos-build/pull/438
Related to FRR logic
Won’t fix
Add a bug report on their repo
XDP was dropped
The task is not an actual
I have another result
vyos@r1# set protocols static route 203.0.113.22/32 dhcp-interface eth2 [edit] vyos@r1# commit [edit] vyos@r1# [edit] vyos@r1# vtysh -c "show run" | match 203.0.113 ip route 203.0.113.22/32 192.168.100.1 eth2 [edit] vyos@r1#
PR for policy https://github.com/vyos/vyos-1x/pull/2890
PR for traffic-policy https://github.com/vyos/vyos-1x/pull/2892
WLB is another feature and not related to protocols failover route
Update:
It is completely different issue
@devon Could you share the example of "set" commands before migration?
It is a good practice to have "set" of commands. It makes the lives of developers easy and is one of the requirements of creating bug reports.
Thanks.
In T1237#174506, @Harliff wrote:BTW, do you have any plans to use this mechanism for WAN failover?
Also, issues with the input
vyos@r4# set firewall ipv4 input filter rule 10 action accept [edit] vyos@r4# set firewall ipv4 input filter rule 10 ipsec match-ipsec [edit] vyos@r4# [edit] vyos@r4# commit [ firewall ] Failed to apply firewall: /run/nftables.conf:19:17-27: Error: No such file or directory; did you mean table ‘vyos_filter’ in family ip? delete table ip vyos_filter ^^^^^^^^^^^ /run/nftables.conf:47:18-28: Error: No such file or directory; did you mean table ‘vyos_filter’ in family ip? delete table ip6 vyos_filter ^^^^^^^^^^^ /run/nftables.conf:75:21-31: Error: No such file or directory; did you mean table ‘vyos_filter’ in family ip? delete table bridge vyos_filter ^^^^^^^^^^^
The cause could be due to wrong calculations for bandwidth/ceil class default T5974