Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-10-24 | vyos.util: drop obsolete function ifname_from_config() | Christian Poessinger | |
2020-10-24 | vyos.util: drop obsolete function get_bridge_member_config() | Christian Poessinger | |
2020-10-24 | test: vyos.util: add testcase for find_device_file() | Christian Poessinger | |
2020-10-21 | http-api: T3007: use ConfigSession config load script, not backend load | John Estabrook | |
2020-10-21 | configsession: T3004: add call to config load script | John Estabrook | |
2020-10-21 | configd: T2582: exclude http-api.py to investigate regression | John Estabrook | |
2020-10-21 | load-config: T2138: support loading gzipped (local) config files | John Estabrook | |
2020-10-19 | dhcpv6-server: T3000: fix prefix-degeation prefix-length help strings | Christian Poessinger | |
Error while copying statement from preference node. | |||
2020-10-19 | smoketest: openvpn: test VRF assignment | Christian Poessinger | |
2020-10-19 | smoketest: openvpn: ensure interfaces do not persist after deletion | Christian Poessinger | |
2020-10-19 | unittests: T2995: vyos_dict_search() must return None on non-existing keys | Christian Poessinger | |
The current wversion unfortunately will raise a KeyError: >>> data = {} >>> vyos_dict_search('foo', data) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python3/dist-packages/vyos/util.py", line 685, in vyos_dict_search return dict[path] KeyError: 'foo' | |||
2020-10-19 | unittests: cleanup unused imports | Christian Poessinger | |
2020-10-18 | README: update folder structure and tests | Christian Poessinger | |
2020-10-18 | smoketest: openvpn: add server (P-t-MP) and site2site testcases | Christian Poessinger | |
2020-10-18 | openvpn: T2969: ensure interface is always removed | Christian Poessinger | |
2020-10-18 | openvpn: T2969: force creation of tunnel interfaces | Christian Poessinger | |
A lot of VyOS code requires the Kernel interface to be present in order to properly work and adjust the interface to the users CLI intends (alias, ipv6, vrf - just to name a few). OpenVPN - when run in client mode - only creates the interface (e.g. vtun1) when the connection to the OpenVPN server was successful. This can't be always the case due to e.g. software-updates or routing issues to the remote side. This will in the end result in a zombie OpenVPN client interface where some config items might not have been set when the interface finally comes up - imagine a wrong assigned VRF instance. By always creating the OpenVPN interface manuall we ensure that all the CLI settings are properly configured in the OS kernel. | |||
2020-10-18 | Merge pull request #578 from bmhughes/fix-show-lldp-neighbors | Daniil Baturin | |
op-mode: lldp: T2993: Fixup 'show lldp neighbors' | |||
2020-10-18 | op-mode: lldp: T2993: Fixup 'show lldp neighbors' | Benjamin M. Hughes | |
Check that interfaces have been returned from lldpcli to prevent trace when no interfaces are enabled for lldp. | |||
2020-10-18 | Merge pull request #577 from bmhughes/fix-show-lldp-neighbors | Daniil Baturin | |
op-mode: lldp: T2993: Fix 'show lldp neighbors' | |||
2020-10-18 | op-mode: lldp: T2993: Fix 'show lldp neighbors' | Benjamin M. Hughes | |
'show lldp neighbors' fails with: Traceback (most recent call last): File "./lldp_op.py", line 122, in <module> config_text = tmpl.render(parse_data(neighbors)) File "./lldp_op.py", line 51, in parse_data for local_if, values in tmp.items(): AttributeError: 'str' object has no attribute 'items' `parse_data` was expecting data to be provided as a dict within an array which doesn't match the format from the parsed json output of lldpcli. Change `parse_data` and `main` to use a dict alone for passing interface neighbors for rendering. | |||
2020-10-18 | smoketest: openvpn: add initial client test | Christian Poessinger | |
2020-10-18 | smoketest: sstp: remove unused variable | Christian Poessinger | |
2020-10-18 | ifconfig: T2985: remove no longer available vyos.ifconfig.stp include | Christian Poessinger | |
almost every interface can be part of a bridge thus the code for changing STP cost is best part of the Interface() base class itself. Commit b5ef10cf ("ifconfig: T2985: support on demand bridge creation") implemented this change but the STP file was not removed on the test devices causing tests to pass. | |||
2020-10-17 | Merge branch 'bridge' of github.com:c-po/vyos-1x into current | Christian Poessinger | |
* 'bridge' of github.com:c-po/vyos-1x: smoketest: add IPv6 option tests to BasicInterfaceTest ifconfig: T2985: support on demand bridge creation geneve: T1799: add IPv6 CLI options op-mode: add "show arp" command | |||
2020-10-17 | smoketest: add IPv6 option tests to BasicInterfaceTest | Christian Poessinger | |
2020-10-17 | ifconfig: T2985: support on demand bridge creation | Christian Poessinger | |
The current implementation for bridge based interfaces has an issue which is caused by priority inheritance. We always assumed that the bridge interface will be created last, but this may not be true in all cases, where some interfaces will be created "on demand" - e.g. OpenVPN or late (VXLAN, GENEVE). As we already have a bunch of verify steps in place we should not see a bridge interface leak to the underlaying infrastructure code. This means, whenever an interface will be member of a bridge, and the bridge does yet not exist, we will create it in advance in the interface context, as the bridge code will be run in the same commit but maybe sooner or later. This will also be the solution for T2924. | |||
2020-10-17 | geneve: T1799: add IPv6 CLI options | Christian Poessinger | |
2020-10-17 | op-mode: add "show arp" command | Christian Poessinger | |
2020-10-17 | Merge pull request #576 from sever-sever/T752 | Christian Poessinger | |
sysctl-forwarding: T752: Add disable forwarding for ipv4 | |||
2020-10-17 | sysctl-forwarding: T752: Add disable forwarding for ipv4 | sever-sever | |
2020-10-17 | Merge pull request #573 from sever-sever/T2938 | Christian Poessinger | |
conf-mode: T2938: Add format octet-counted for syslog | |||
2020-10-17 | syslog: T2938: Add format octet-counted for syslog conf-mode | sever-sever | |
2020-10-17 | Merge pull request #575 from DmitriyEshenko/ipoe-fix-issue01 | Christian Poessinger | |
ipoe-server: T2978: Add required proxy-arp by default | |||
2020-10-16 | ipoe-server: T2978: Add required proxy-arp by default | DmitriyEshenko | |
2020-10-16 | Merge pull request #574 from Cheeze-It/current | Christian Poessinger | |
T2981, Adding MPLS LDP Neighbor Reset functionality | |||
2020-10-16 | T2981, Adding MPLS LDP Neighbor Reset functionality | Cheeze_It | |
Configuration was actually made by Viacheslav. I just added it in here, and tested it. It does test. Viacheslav tested it as well. I cannot take credit for this, even though he's giving me PR. Thanks goes to him. | |||
2020-10-16 | Merge pull request #572 from sever-sever/T2965 | Christian Poessinger | |
op-mode: T2965: Add CLI protocols bfd peers | |||
2020-10-16 | op-mode: T2965: Add CLI protocols bfd peers | sever-sever | |
2020-10-16 | Merge pull request #571 from sever-sever/T915_holdtime_explicit | Christian Poessinger | |
conf-mode: T915: Add mpls ldp explicit and holdtime commands | |||
2020-10-15 | conf-mode: T915: Add mpls ldp explicit and holdtime commands | sever-sever | |
2020-10-13 | Merge pull request #566 from DmitriyEshenko/incr-pppoe-shaper | Christian Poessinger | |
pppoe-server: T2972: Increase rate limit validator | |||
2020-10-13 | pppoe-server: T2976: fix local-users default value retrieval from XML | Christian Poessinger | |
We must use XML node style (hyphen over underscore). | |||
2020-10-13 | pppoe-server: T2972: Increase rate limit validator | DmitriyEshenko | |
2020-10-12 | smoketest: tftp-server: listen on dummy interface address rather then loopback | Christian Poessinger | |
2020-10-11 | tftp-server: T2974: migrate to get_config_dict() | Christian Poessinger | |
2020-10-11 | broadcast-relay: T2712: enable render trim_blocks | Christian Poessinger | |
2020-10-11 | smoketest: tftp-server: add initial testcases | Christian Poessinger | |
2020-10-11 | tftp-server: T2973: bugfix IPv6 listen address/port combination | Christian Poessinger | |
The mandatory colon for separating the IPv6 address and port was missing. | |||
2020-10-11 | nat: T2198: use proper validators for dnat translation address | Christian Poessinger | |
2020-10-11 | smoketest: nat: extend snat and add dnat test cases | Christian Poessinger | |