summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRunar Borge <runar@borge.nu>2019-07-05 21:36:16 +0200
committerRunar Borge <runar@borge.nu>2019-07-05 21:36:16 +0200
commitdadc594e08c41b6bc912d7348b8e762c25b8d2c4 (patch)
treeda3283c64f003976613435407e7943c96b807e6d /scripts
parent8c7b09c1487547df339037cfae861d78bd51a17f (diff)
downloadvyatta-op-dadc594e08c41b6bc912d7348b8e762c25b8d2c4.tar.gz
vyatta-op-dadc594e08c41b6bc912d7348b8e762c25b8d2c4.zip
T1499: Allow for usage of systemd interface mappings
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/vyatta-identify-interface.pl2
-rwxr-xr-xscripts/vyatta-show-interfaces6
2 files changed, 4 insertions, 4 deletions
diff --git a/scripts/vyatta-identify-interface.pl b/scripts/vyatta-identify-interface.pl
index 1cfdb36..a116963 100755
--- a/scripts/vyatta-identify-interface.pl
+++ b/scripts/vyatta-identify-interface.pl
@@ -26,7 +26,7 @@ use strict;
my $intf = shift;
-if (!($intf =~ /^eth\d+/)) {
+if (!($intf =~ /^(eth\d+|en[ospx])/)) {
print STDERR "This command only supports Ethernet interfaces\n";
exit 1;
}
diff --git a/scripts/vyatta-show-interfaces b/scripts/vyatta-show-interfaces
index 1b0a156..262664f 100755
--- a/scripts/vyatta-show-interfaces
+++ b/scripts/vyatta-show-interfaces
@@ -22,7 +22,7 @@ shopt -s extglob
shopt -s nullglob
declare progname=${0##*/}
-declare -a full_itfs=( /sys/class/net/+(eth|vmnet|lo|tun|wan|pppoe|pppoa|adsl)* )
+declare -a full_itfs=( /sys/class/net/+(eno|ens|enp|enx|eth|vmnet|lo|tun|wan|pppoe|pppoa|adsl)* )
declare -a itfs
declare _do_show=_show_itf_stats
@@ -128,7 +128,7 @@ _usage ()
_add_itfs ()
{
for itf ; do
- if [[ $itf != +(eth|vmnet|lo|tun|wan|pppoe|pppoa|adsl)* ]] ; then
+ if [[ $itf != +(eno|ens|enp|enx|eth|vmnet|lo|tun|wan|pppoe|pppoa|adsl)* ]] ; then
_error 2 \""$itf"\" is not an interface name\!
elif [ ! -d /sys/class/net/$itf ] ; then
_error 2 $itf: no such interface\!
@@ -146,7 +146,7 @@ if [ $# -gt 0 ] ; then
if [ $# -eq 1 ] ; then
case $1 in
ethernet )
- full_itfs=( /sys/class/net/+(eth|vmnet)* ) ;;
+ full_itfs=( /sys/class/net/+(eno|ens|enp|enx|eth|vmnet)* ) ;;
loopback )
full_itfs=( /sys/class/net/lo* ) ;;
tunnel )