diff options
author | John Southworth <john.southworth@vyatta.com> | 2011-08-09 18:28:48 -0500 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2011-08-09 18:28:48 -0500 |
commit | 2b0b69c4d395efc7368c2fd969cf26f97a0e2df8 (patch) | |
tree | 89ff29e35885c14fef1f05284c31fdb33133d807 /scripts/vyatta-show-interfaces.pl | |
parent | 866c1a768c61a37600e0823ab6835755f6d385a7 (diff) | |
download | vyatta-op-2b0b69c4d395efc7368c2fd969cf26f97a0e2df8.tar.gz vyatta-op-2b0b69c4d395efc7368c2fd969cf26f97a0e2df8.zip |
Ignore ip6tunl0 anchor interface
Diffstat (limited to 'scripts/vyatta-show-interfaces.pl')
-rwxr-xr-x | scripts/vyatta-show-interfaces.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/vyatta-show-interfaces.pl b/scripts/vyatta-show-interfaces.pl index 393af46..e90c19e 100755 --- a/scripts/vyatta-show-interfaces.pl +++ b/scripts/vyatta-show-interfaces.pl @@ -268,6 +268,7 @@ sub run_show_intf_brief { next if ($intf =~ /gre0/); next if ($intf =~ /sit0/); next if ($intf =~ /tunl0/); + next if ($intf =~ /ip6tnl0/); my @ip_addr = get_ipaddr($intf); my ($state, $link) = get_state_link($intf); $state = conv_brief_code($state); |