Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-07-19 | pki: wireguard: T3642: Replace/remove old Wireguard op-mode commands | sarthurdev | |
2021-07-19 | pki: wireguard: T3642: Migrate Wireguard private key directly into CLI | sarthurdev | |
Also renames peer pubkey to public-key for consistency | |||
2021-07-18 | ipsec: T1210: remote-access pools can not hold both IPv4 and IPv6 prefixes | Christian Poessinger | |
... this enables a dual-stack IKEv2 VPN deployment. | |||
2021-07-18 | ipsec: T2816: limit remote-access nameservers to two IPv4 and two for IPv6 | Christian Poessinger | |
2021-07-18 | ipsec: l2tp: T2816: use common if 'key' in dict pattern | Christian Poessinger | |
2021-07-18 | Revert "T3641: fastnetmon package is not available for Debian Bullseye" | Christian Poessinger | |
This reverts commit 70f7f06e778efa4bd3c2ad127d66c080e1db80c5. | |||
2021-07-18 | smoketest: ospf: extend passive-interface debugging with kernel log | Christian Poessinger | |
2021-07-18 | bridge: remove obsolete helper script | Christian Poessinger | |
2021-07-17 | ipsec: T2816: add missing +x permission on Python helper | Christian Poessinger | |
2021-07-17 | Merge pull request #927 from zdc/T3655-sagitta | Christian Poessinger | |
VRF: T3655: proper connection tracking for VRFs | |||
2021-07-17 | VRF: T3655: proper connection tracking for VRFs | zsdc | |
Currently, all VRFs share the same connection tracking table, which can lead to problems: - traffic leaks to a wrong VRF - improper NAT rules handling when multiple VRFs contain the same IP networks - stateful firewall rules issues The commit implements connection tracking zones support. Each VRF utilizes its own zone, so connections will never mix up. It also adds some restrictions to VRF names and assigned table numbers, because of nftables and conntrack requirements: - VRF name should always start from a letter (interfaces that start from numbers are not supported in nftables rules) - table number must be in the 100-65535 range because conntrack supports only 65535 zones | |||
2021-07-17 | ipsec: T2816: restore erroneous deleted file | Christian Poessinger | |
Commit 22739144 ('ipsec: T2816: migrate "ipsec interfaces" to "interface"') by accident deleted the vpn_ipsec.py Python handler. Handler was restored. | |||
2021-07-17 | Revert "openvpn: T56: remove strict checks for tls cert-file and key-file" | Christian Poessinger | |
This reverts commit c414479fdf1d5ad77170f977481fb9197c9559ae. This commit broke the smoketests and also OpenVPN complains: Options error: You must define certificate file (--cert) or PKCS#12 file (--pkcs12) | |||
2021-07-17 | vxlan: T3683: bugfix on MTU calculation for IPv6 underlay | Christian Poessinger | |
2021-07-17 | ipsec: T2816: migrate "ipsec interfaces" to "interface" | Christian Poessinger | |
2021-07-17 | xml: provide common "pre-shared-secret" include block | Christian Poessinger | |
2021-07-17 | xml: provide common "dhcp-interface" include block | Christian Poessinger | |
2021-07-17 | Merge pull request #924 from sarthurdev/ipsec_l2tp_pki | Christian Poessinger | |
pki: ipsec: l2tp: T2816: T3642: Move IPSec/L2TP code into vpn_ipsec.py and update to use PKI. | |||
2021-07-15 | pki: ipsec: l2tp: T2816: T3642: Move IPSec/L2TP code into vpn_ipsec.py and ↵ | sarthurdev | |
update to use PKI. | |||
2021-07-15 | vyos-1x-vmware: T3682: remove dhclient from ether-resume.py | Yun Zheng Hu | |
dhclient is already handled by netplug so it's removed to avoid double renewing of dhcp leases. | |||
2021-07-14 | Merge pull request #922 from jack9603301/container | Christian Poessinger | |
container: T3662: Set its priority to 1280 | |||
2021-07-14 | Merge pull request #920 from yunzheng/current | Christian Poessinger | |
vyos-1x-vmware: T3681: don't bytecompile ether-resume.py | |||
2021-07-15 | container: T3662: Set its priority to 1280 | jack9603301 | |
Set its priority to 1280 to prevent its configuration failure from affecting the underlying network services | |||
2021-07-14 | vyos-1x-vmware: T3681: don't bytecompile ether-resume.py | Yun Zheng Hu | |
Exclude /vmware-tools/scripts/ from bytecompilation to avoid the `__pycache__` directory being created. | |||
2021-07-13 | Merge branch 'current' of github.com:/vyos/vyos-1x into current | Daniil Baturin | |
2021-07-13 | T3663: remove some unused sleep imports. | Daniil Baturin | |
2021-07-13 | Merge pull request #918 from erkin/current | Christian Poessinger | |
T3679: Update the unexpected exception message | |||
2021-07-13 | T3679: Update the unexpected exception message | erkin | |
2021-07-13 | T3663: use inotify-based watching for the IPsec process restart. | Daniil Baturin | |
2021-07-13 | T3663: add a small sleep between polling for a new inotify event. | Daniil Baturin | |
2021-07-13 | T3663: use inotify-based watching in "show vrrp". | Daniil Baturin | |
2021-07-13 | Merge pull request #917 from yunzheng/current | Christian Poessinger | |
openvpn: T56: remove strict checks for tls cert-file and key-file | |||
2021-07-13 | openvpn: T56: remove strict checks for tls cert-file and key-file | Yun Zheng Hu | |
This makes the tls cert-file and key-file optional and allows for more advanced configurations via "openvpn-option", such as pkcs11 or pkcs12 options. | |||
2021-07-12 | vrf: T31: remove supefluous new-lines for each VRF instance | Christian Poessinger | |
2021-07-12 | vrf: route: static: T2450: we also need to migrate the interface based routes | Christian Poessinger | |
Previously during migration if one had used interface routes, the VRF based ones got not migrated. The following "old" VyOS 1.3 configuration did not get migrated: set protocols static interface-route 10.20.0.0/24 next-hop-interface eth2 next-hop-vrf 'blue' set protocols static interface-route 10.30.0.0/24 next-hop-interface br10 next-hop-vrf 'red' set protocols vrf blue static interface-route 10.0.0.0/24 next-hop-interface eth1 next-hop-vrf 'default' set protocols vrf red static interface-route 10.0.0.0/24 next-hop-interface eth1 next-hop-vrf 'default' set vrf name blue table '3000' set vrf name mgmt table '1000' set vrf name red table '2000' It must get migrated to: set protocols static route 10.20.0.0/24 interface eth2 vrf 'blue' set protocols static route 10.30.0.0/24 interface br10 vrf 'red' set vrf name blue protocols static route 10.0.0.0/24 interface eth1 vrf 'default' set vrf name blue table '3000' set vrf name mgmt table '1000' set vrf name red protocols static route 10.0.0.0/24 interface eth1 vrf 'default' set vrf name red table '2000' | |||
2021-07-12 | op-mode: T427: add "summary" command for WireGuard interface information | Christian Poessinger | |
2021-07-11 | ipsec: T2816: use common "if key in dict:" pattern | Christian Poessinger | |
2021-07-11 | ipsec: T2816: fix NameError | Christian Poessinger | |
Commit a5cd877a0a ("ipsec: T2816: Migrate ipsec-settings.xml.in and charon.conf to vpn_ipsec.py") unfortunately removed the dictionary definition for "data" which is required when running the l2tp handler script. | |||
2021-07-11 | vxlan: T3665: add VRF support | Christian Poessinger | |
2021-07-11 | smoketest: ospf: change passive-interface debugging | Christian Poessinger | |
2021-07-10 | Merge pull request #916 from jack9603301/T3667 | Christian Poessinger | |
bridge: op-mode: T3667: Moving VLANs and modifying XML errors | |||
2021-07-10 | bridge: op-mode: T3667: Fix command line errors | jack9603301 | |
2021-07-10 | bridge: op-mode: T3667: Moving `vlan` to better locations | jack9603301 | |
2021-07-09 | Merge pull request #915 from jack9603301/T3667 | Christian Poessinger | |
bridge: op-mode: T3667: Fix command line errors | |||
2021-07-10 | bridge: op-mode: T3667: Fix command line errors | jack9603301 | |
2021-07-09 | Merge pull request #913 from jack9603301/T3667 | Christian Poessinger | |
op-mode: brctl: T3667: Using bridge command structure instead of brctl | |||
2021-07-09 | op-mode: brctl: T3667: Using `bridge` command structure instead of `brctl` | jack9603301 | |
2021-07-08 | T3663: add pre_hook argument to util.wait_for_inotify | Daniil Baturin | |
When waiting for processes that don't take long, we need add an inotify watcher _before_ starting that process. The pre-hook arguments allows the user to pass a () -> () anonymous function to be called before adding a watch. | |||
2021-07-08 | T3663: fix the call to time.time() to match the new import scheme. | Daniil Baturin | |
2021-07-07 | Merge pull request #912 from sarthurdev/pki_ipsec_rsa | Christian Poessinger | |
pki: T3642: Migrate rsa-keys to PKI configuration |