Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-23 | ifconfig: vxlan: geneve: T2823: properly set interface state | Christian Poessinger | |
2020-07-26 | vxlan: ifconfig: T2653: move to get_interface_dict() | Christian Poessinger | |
The current VyOS CLI parser code written in Python contains a ton of duplicates which I can also hold myself accountable for - or maybe mainly me - depends on the angle of judge. | |||
2020-06-24 | ifconfig: vxlan: T2629: append() takes exactly one argument | Christian Poessinger | |
Commit 9390988709 ("vxlan: T2629: fix multiple configuration issues") called append() on a list and passed two arguments which is invalid. Traceback (most recent call last): File "/usr/libexec/vyos/conf_mode/interfaces-vxlan.py", line 300, in <module> apply(c) File "/usr/libexec/vyos/conf_mode/interfaces-vxlan.py", line 245, in apply v = VXLANIf(vxlan['intf'], **conf) File "/usr/lib/python3/dist-packages/vyos/ifconfig/interface.py", line 221, in __init__ self._create() File "/usr/lib/python3/dist-packages/vyos/ifconfig/vxlan.py", line 84, in _create cmdline.append('group', 'src_interface') TypeError: append() takes exactly one argument (2 given) | |||
2020-06-22 | vxlan: T2629: fix multiple configuration issues | SIN3R6Y | |
2020-04-18 | interfaces: T2320: correctly honour create and debug options | Thomas Mangin | |
2020-04-09 | vxlan: T2172: add source-address option | Christian Poessinger | |
This is a base requirement for l2vpn evpn. When source-address is configured, the option "local <source-addr> nolearning" is appended when creating the interface as mentioned here: https://vincent.bernat.ch/en/blog/2017-vxlan-bgp-evpn | |||
2020-03-24 | ifconfig: T2057: add class Register | Thomas Mangin | |
2020-03-22 | vxlan: T2057: rewrite _create command | Thomas Mangin | |
2020-03-22 | vxlan: T2057: use self.default as template for get_config | Thomas Mangin | |
2020-03-22 | ifconfig: T2104: remove superfluous __init__ in derived classes | Christian Poessinger | |
__init__ should be added to a derived class only if it does work in the ctor. | |||
2020-03-17 | vxlan: T2134: fix NameError: name 'config' is not defined | Michael Petö | |
2020-03-06 | ifconfig: T2104: splt ifconfig.py into multiple files | Thomas Mangin | |