diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-11-08 06:10:10 -0800 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-11-08 06:10:10 -0800 |
commit | f9f59bf2e3b6b5eb50dedec4c3372595dfd03658 (patch) | |
tree | 5fbf8b233dfd0e186aa15713edcd204d71d9b17b /TODO | |
parent | New functions: set/get/is_interface_type to persistently track type of interf... (diff) | |
download | netifrc-f9f59bf2e3b6b5eb50dedec4c3372595dfd03658.tar.gz netifrc-f9f59bf2e3b6b5eb50dedec4c3372595dfd03658.tar.bz2 netifrc-f9f59bf2e3b6b5eb50dedec4c3372595dfd03658.zip |
TODO: Document more interface types we need to support.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -11,4 +11,23 @@ - rem vlan1 - _ifindex (eth0=0,vlan2=1) - add vlan3 - _ifindex (eth0=0,vlan2=1,vlan3=2) Now your routing table has entries for both vlan2 and vlan3 with a metric of 2. +- Support many more device types easily: + - Dummy: ip link add dev dummy1 type dummy + - HSR: ip link add name hsr0 type hsr slave1 dummy3 slave2 dummy4 + - VXLAN: ip link add link dummy2 name vxlan199 type vxlan id 199 dev dummy2 group 224.2.0.199 dstport 4789 + - IPVLAN: ... + - IFB: ip link add ifb0 type ifb + - CAN: + - VCAN: + - ip6tnl: + - gre,gretap: + - ip6gre,ip6gretap: + - vti: + - nlmon: ip link add nlmon0 type nlmon + - ipvlan: ... + - lowpan: + - macvtap: + - ipoib: .. + - geneve: ip link add gen0 type geneve id 0 remote 192.168.53.53 + |