summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaurabh Mohan <saurabh.mohan@vyatta.com>2012-06-04 16:00:09 -0700
committerSaurabh Mohan <saurabh.mohan@vyatta.com>2012-06-04 16:00:09 -0700
commitebbbdde70ed9e8c3c5f83b6efdeaad6001d82455 (patch)
tree86c578aebe26e30ed578b6b3a6378d85d2a1c2b8
parent33d3b7951b735dc9aa9877167b9eef4a674178ae (diff)
downloadvyatta-op-ebbbdde70ed9e8c3c5f83b6efdeaad6001d82455.tar.gz
vyatta-op-ebbbdde70ed9e8c3c5f83b6efdeaad6001d82455.zip
Ignore the default vti interface.
-rwxr-xr-xscripts/vyatta-show-interfaces.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-show-interfaces.pl b/scripts/vyatta-show-interfaces.pl
index d66190e..22022f7 100755
--- a/scripts/vyatta-show-interfaces.pl
+++ b/scripts/vyatta-show-interfaces.pl
@@ -265,7 +265,7 @@ sub run_show_intf_brief {
next if ($intf =~ /sit0/);
next if ($intf =~ /tunl0/);
next if ($intf =~ /ip6tnl0/);
- next if ($intf =~ /vti0/);
+ next if ($intf =~ /ip_vti0/);
my @ip_addr = get_ipaddr($intf);
my ($state, $link) = get_state_link($intf);
$state = conv_brief_code($state);