Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-11-26 | tunnel: T3072: remove bridgable variable as this is already set by the base ↵ | Christian Poessinger | |
class | |||
2020-11-23 | tunnel: T3072: 'gre' devices do not support bridging | Christian Poessinger | |
2020-11-20 | tunnel: T3072: remove debug print code | Christian Poessinger | |
2020-11-20 | tunnel: T3072: drop dead code | Christian Poessinger | |
2020-11-20 | tunnel: T3072: support changing tunnel encapsulation on-the-fly | Christian Poessinger | |
2020-11-20 | tunnel: T3068: automatic generate link-local adresses | Christian Poessinger | |
2020-11-20 | tunnel: T3072: migrate to get_config_dict() | Christian Poessinger | |
2020-11-14 | Revert "T3068: Automatic generation of IPv6 link local addresses for tunnel ↵ | Christian Poessinger | |
interfaces" | |||
2020-11-13 | T3068: Automatic generation of IPv6 link local addresses for tunnel interfaces | ernstjo | |
Better implementation to assign link local addresses automatically because address only assigned to interfaces which supports IPv6 addresses. | |||
2020-11-13 | T3068: Automatic generation of IPv6 link local addresses for tunnel interfaces | ernstjo | |
Tunnel interfaces hot having any IPv6 Link Local address because Linux Kernel does not assign address due to missing MAC. I have implemented a function to generate a linl local address and assign it to the interface. Link local address is required for OSPF and other protocols. | |||
2020-10-24 | tunnel: T3010: add missing ttl option for GRETap / GRE bridge interface | Christian Poessinger | |
2020-09-19 | ifconfig: T2653: convert VLAN interfaces do discrete class | Christian Poessinger | |
Instead of using an Adapter pattern to make interfaces VLAN-aware, create a derived class named VLANIf to represent a VLAN. This change was necessary to eliminate mixed code in Interfaces class which was VLAN - free, but recently gained some VLAN specific code for set_admin_state(). In addition this "autoresolves" the issue in T2894 as a bond vlan interface will no longer change the lower interface. | |||
2020-04-21 | tunnel: T2354: do not allow display as bridge option | Thomas Mangin | |
2020-04-21 | tunnel: T2204: add source-interface | Thomas Mangin | |
2020-04-12 | tunnel: T2236: missed mtu command on all tunnels | Thomas Mangin | |
2020-04-08 | tunnel: T2028: register the _Tunnel class | Thomas Mangin | |
All interface classes register themselves so that we can figure out from an interface name what class is responsible for its creation. In the case of Tunnel, it is not the case as multiple different interfaces are sharing the same "tun" prefix. Still many operations are the same and it should be done. | |||
2020-03-28 | ifconfig: T2057: explicity name state functions | Thomas Mangin | |
The Interface get_state/set_state were not clear about if they edited the admin or operational state. functions are now using admin_state and oper_state for clarity. | |||
2020-03-24 | ifconfig: T2057: add class Register | Thomas Mangin | |
2020-03-22 | tunnel: T2028: move interface tunnel to XML/Python | Thomas Mangin | |
This patch migrates the "interface tunnel" section to xml/python |