- Feed Queries
- All Stories
- Search
- Feed Search
- Transactions
- Transaction Logs
Jan 2 2023
Dec 30 2022
Dec 27 2022
Dec 24 2022
Which version?
@rob Thanks
Dec 23 2022
Dec 20 2022
At first look, at least it works, but it requires more tests and improvements
set protocols failover route 203.0.113.1/32 next-hop 192.168.122.1 check target '192.168.122.1' set protocols failover route 203.0.113.1/32 next-hop 192.168.122.1 check timeout '5' set protocols failover route 203.0.113.1/32 next-hop 192.168.122.1 check type 'icmp' set protocols failover route 203.0.113.1/32 next-hop 192.168.122.1 interface 'eth0'
Dec 19 2022
Dec 17 2022
Dec 15 2022
Did you tried no bgp network import-check ?
Dec 14 2022
Related task IPsec syntax overhaul T4118
Dec 13 2022
Dec 12 2022
As I understand it is impossible directly with config option but possible with module omudpspoof
Dec 9 2022
@klase It is already in the latest rolling release. Could you re-check?
use the next syntax
show bgp ipv4 neighbors x.x.x.x advertised-routes
Dec 8 2022
fix for 1.4 PR https://github.com/vyos/vyos-1x/pull/1698
vyos@r14# cat /run/accel-pppd/l2tp.conf | grep dae-s dae-server=127.0.0.1:1700,testing123 [edit] vyos@r14#
Dec 7 2022
@aserkin Thanks
Do l2tp clients in the network 192.168.101.x ? And you are trying to connect to some web resource behind l2tp?
Dec 6 2022
@dmbaturin It shows only IPv4 routes
Could you also add IPv6?
Should be fixed in T4794
Check please the newest version
@klase could you make some changes?
sudo nano -c +253 /usr/libexec/vyos/conf_mode/vpn_openconnect.py
and change
call('systemctl restart ocserv.service')to:
call('systemctl reload-or-restart ocserv.service')Does it do the same?
set firewall interface l2tp* out name 'FOO' set firewall name FOO rule 10 action 'accept' set firewall name FOO rule 10 protocol 'tcp' set firewall name FOO rule 10 tcp flags syn set firewall name FOO rule 10 tcp mss '1300'
nft
table ip vyos_filter {
chain VYOS_FW_FORWARD {
type filter hook forward priority filter; policy accept;
oifname "l2tp*" counter packets 0 bytes 0 jump NAME_FOO
jump VYOS_POST_FW
}
...
chain NAME_FOO {
tcp flags & syn == syn tcp option maxseg size 1300 counter packets 0 bytes 0 return comment "FOO-10"
counter packets 0 bytes 0 drop comment "FOO default-action drop"
}
}CNI Plugins compatible with nftables https://github.com/greenpau/cni-plugins/
Dec 5 2022
@klase will be fixed in the next rolling release