diff options
author | Stig Thormodsrud <stig@vyatta.com> | 2008-02-08 15:04:40 -0800 |
---|---|---|
committer | Stig Thormodsrud <stig@vyatta.com> | 2008-02-08 15:04:40 -0800 |
commit | 779df7e2f84b2750f33c073b2f310398d9f8a0fa (patch) | |
tree | 5978292710565815ff0e8308947732f61cc71650 /templates/show/interfaces/tunnel | |
parent | 4647ef1a3a84880cc7a52d2bf74163d7e470b150 (diff) | |
download | vyatta-op-779df7e2f84b2750f33c073b2f310398d9f8a0fa.tar.gz vyatta-op-779df7e2f84b2750f33c073b2f310398d9f8a0fa.zip |
- Fix bug 776: need "clear interface" command to clear counters
- Fix bug 1095: Enhancement Request: "Show interface brief" command
- Change default to "brief" if multiple interfaces can be shown
- Add "detail" for nodes defaulting to brief
- Add "brief" for nodes defaulting to detail
- Fix vif completions that wasn't working
- Remove ethtool can on vlans since it doesn't work
Diffstat (limited to 'templates/show/interfaces/tunnel')
4 files changed, 6 insertions, 3 deletions
diff --git a/templates/show/interfaces/tunnel/detail/node.def b/templates/show/interfaces/tunnel/detail/node.def new file mode 100644 index 0000000..d3c8d95 --- /dev/null +++ b/templates/show/interfaces/tunnel/detail/node.def @@ -0,0 +1,2 @@ +help: Show tunnel interface information +run: ${vyatta_bindir}/vyatta-show-interfaces.pl --intf-type=tunnel --action=show
\ No newline at end of file diff --git a/templates/show/interfaces/tunnel/node.def b/templates/show/interfaces/tunnel/node.def index bfc03ba..568578b 100644 --- a/templates/show/interfaces/tunnel/node.def +++ b/templates/show/interfaces/tunnel/node.def @@ -1,3 +1,2 @@ help: Show tunnel interface information -run: ${vyatta_bindir}/vyatta-show-interfaces tunnel - +run: ${vyatta_bindir}/vyatta-show-interfaces.pl --intf-type=tunnel --action=show-brief diff --git a/templates/show/interfaces/tunnel/node.tag/brief/node.def b/templates/show/interfaces/tunnel/node.tag/brief/node.def new file mode 100644 index 0000000..cf2b8da --- /dev/null +++ b/templates/show/interfaces/tunnel/node.tag/brief/node.def @@ -0,0 +1,2 @@ +help: Show given tunnel interface information +run: ${vyatta_bindir}/vyatta-show-interfaces.pl --intf=$4 --action=show-brief diff --git a/templates/show/interfaces/tunnel/node.tag/node.def b/templates/show/interfaces/tunnel/node.tag/node.def index c119ab0..12630bd 100644 --- a/templates/show/interfaces/tunnel/node.tag/node.def +++ b/templates/show/interfaces/tunnel/node.tag/node.def @@ -2,4 +2,4 @@ help: Show given tunnel interface information allowed: local -a array ; array=( /sys/class/net/tun* ) ; echo -n ${array[@]##*/} -run: ${vyatta_bindir}/vyatta-show-interfaces tunnel $4 +run: ${vyatta_bindir}/vyatta-show-interfaces.pl --intf=$4 |