Should be fixed in T4794
Check please the newest version
- Feed Queries
- All Stories
- Search
- Feed Search
- Transactions
- Transaction Logs
Dec 6 2022
@aserkin . Viacheslav commands are present in more recent nighly builds.
Try with one of the latests images.
There's no
set firewall interface
option here:
admin@vyos-lns-1:~$ show version
Version: VyOS 1.4-rolling-202209131208
@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
Dec 4 2022
Dec 3 2022
PR to fix recursion check: https://github.com/vyos/vyos-1x/pull/1691
Dec 2 2022
We can do it the same way
vyos@r1# set service snmp oid-enable Possible completions: route-table Enable routing table OIDs (ipCidrRouteTable inetCidrRouteTable)
so by default they should be disabled
Verify if you are trying to add a new vethX to exists pair (veth12 link to veth0 should be RaiseConfigerror)
set interfaces virtual-ethernet veth0 peer-name 'veth1' set interfaces virtual-ethernet veth1 peer-name 'veth0' set interfaces virtual-ethernet veth12 peer-name 'veth0' commit
commit
vyos@r1# commit
[ interfaces virtual-ethernet veth12 ]
{'ifname': 'veth12',
'other_interfaces': {'veth0': {'peer_name': 'veth1'},
'veth1': {'peer_name': 'veth0'},
'veth12': {'peer_name': 'veth0'}},
'peer_name': 'veth0'}
VyOS had an issue completing a command.Dec 1 2022
Nov 30 2022
No, just try the latest rolling
There were a lot of changes/ bug fixed: etc since 2021
@Viacheslav Can you point to any existing defect in which this issue was fixed to understand the root case and fix?
Outdated image 2021
Nov 29 2022
Fixed in latest 1.4 rolling
Nov 28 2022
@ordex Could you check the latest rolling release? Fancontrol should be there.
Issue with FRR https://github.com/FRRouting/frr/issues/12406
Nov 27 2022
I've been testing this for a few weeks now at home and haven't noticed any issues. That said, while I have 6 network zones and a few public services running, my home network isn't very complicated and doesn't have any "exotic" firewall rules. Since the changes are fairly minor and the smoketests pass, I don't think there should be any issues, though.