diff --git a/examples/python/dbus/list-devices.py b/examples/python/dbus/list-devices.py index b8e0058be5..c9c753ec8b 100755 --- a/examples/python/dbus/list-devices.py +++ b/examples/python/dbus/list-devices.py @@ -36,6 +36,10 @@ devtypes = { 1: "Ethernet", 13: "Bridge", 14: "Generic", 15: "Team" + 16: "TUN" + 17: "IPTunnel" + 18: "MACVLAN" + 19: "VXLAN" } states = { 0: "Unknown", diff --git a/examples/ruby/list-devices.rb b/examples/ruby/list-devices.rb index 710ccedc08..9949a40977 100755 --- a/examples/ruby/list-devices.rb +++ b/examples/ruby/list-devices.rb @@ -38,7 +38,11 @@ devtypes = { 1 => "Ethernet", 12 => "ADSL", 13 => "Bridge", 14 => "Generic", - 15 => "Team" + 15 => "Team", + 16 => "TUN", + 17 => "IPTunnel", + 18 => "MACVLAN", + 19 => "VXLAN", } states = { 0 => "Unknown", diff --git a/examples/shell/list-devices.sh b/examples/shell/list-devices.sh index dba82261c0..817c8b7cc4 100755 --- a/examples/shell/list-devices.sh +++ b/examples/shell/list-devices.sh @@ -48,6 +48,10 @@ devtype_to_name() 13) echo "Bridge" ;; 14) echo "Generic" ;; 15) echo "Team" ;; + 16) echo "TUN" ;; + 17) echo "IPTunnel" ;; + 18) echo "MACVLAN" ;; + 19) echo "VXLAN" ;; *) echo "Unknown" ;; esac }