summaryrefslogtreecommitdiff
path: root/templates/show/queueing
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2008-08-29 15:36:22 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2008-08-29 15:36:22 -0700
commit28ebda1c7577e2ef02ddc05a993c08997f3bd371 (patch)
treeb8204afc01c23ee327a3e899a4e2fc6a3f86710c /templates/show/queueing
parent672310d6cc024fe234abc7bf7968c47b2ed43f84 (diff)
downloadvyatta-op-qos-28ebda1c7577e2ef02ddc05a993c08997f3bd371.tar.gz
vyatta-op-qos-28ebda1c7577e2ef02ddc05a993c08997f3bd371.zip
Rename queuing to queueing
Both spellings are valid but 'queueing' is the more common spelling in networking (and IOS).
Diffstat (limited to 'templates/show/queueing')
-rw-r--r--templates/show/queueing/adsl/node.def2
-rw-r--r--templates/show/queueing/adsl/node.tag/node.def6
-rw-r--r--templates/show/queueing/ethernet/node.def2
-rw-r--r--templates/show/queueing/ethernet/node.tag/node.def9
-rw-r--r--templates/show/queueing/ethernet/vif/node.def4
-rw-r--r--templates/show/queueing/ethernet/vif/node.tag/node.def5
-rw-r--r--templates/show/queueing/node.def2
-rw-r--r--templates/show/queueing/serial/node.def2
-rw-r--r--templates/show/queueing/serial/node.tag/node.def6
9 files changed, 38 insertions, 0 deletions
diff --git a/templates/show/queueing/adsl/node.def b/templates/show/queueing/adsl/node.def
new file mode 100644
index 0000000..46321a9
--- /dev/null
+++ b/templates/show/queueing/adsl/node.def
@@ -0,0 +1,2 @@
+help: Show adsl queueing information
+run: ${vyatta_bindir}/vyatta-show-queueing.pl --type=adsl
diff --git a/templates/show/queueing/adsl/node.tag/node.def b/templates/show/queueing/adsl/node.tag/node.def
new file mode 100644
index 0000000..9253a98
--- /dev/null
+++ b/templates/show/queueing/adsl/node.tag/node.def
@@ -0,0 +1,6 @@
+help: Show specified adsl interface information
+allowed:
+ local -a array ;
+ array=( /sys/class/net/adsl* ) ;
+ echo -n ${array[@]##*/}
+run: ${vyatta_bindir}/vyatta-show-queueing.pl "$4"
diff --git a/templates/show/queueing/ethernet/node.def b/templates/show/queueing/ethernet/node.def
new file mode 100644
index 0000000..fee7370
--- /dev/null
+++ b/templates/show/queueing/ethernet/node.def
@@ -0,0 +1,2 @@
+help: Show ethernet queueing information
+run: ${vyatta_bindir}/vyatta-show-queueing.pl --type=ethernet
diff --git a/templates/show/queueing/ethernet/node.tag/node.def b/templates/show/queueing/ethernet/node.tag/node.def
new file mode 100644
index 0000000..3643a94
--- /dev/null
+++ b/templates/show/queueing/ethernet/node.tag/node.def
@@ -0,0 +1,9 @@
+help: Show specified ethernet interface information
+allowed: for dev in /sys/class/net/*;
+ do if [[ -L $dev/device ]]
+ then if [[ $(cat $dev/type) -eq 1 ]]
+ then echo -n ${dev##*/} " "
+ fi
+ fi
+ done
+run: ${vyatta_bindir}/vyatta-show-queueing.pl "$4"
diff --git a/templates/show/queueing/ethernet/vif/node.def b/templates/show/queueing/ethernet/vif/node.def
new file mode 100644
index 0000000..2b74427
--- /dev/null
+++ b/templates/show/queueing/ethernet/vif/node.def
@@ -0,0 +1,4 @@
+help: Show specified virtual network interface (vif) information
+run: tput setaf ${COLOR_RED:-1} ;
+ echo error: need to supply vif # ;
+ tput op
diff --git a/templates/show/queueing/ethernet/vif/node.tag/node.def b/templates/show/queueing/ethernet/vif/node.tag/node.def
new file mode 100644
index 0000000..ee1bbb2
--- /dev/null
+++ b/templates/show/queueing/ethernet/vif/node.tag/node.def
@@ -0,0 +1,5 @@
+help: Show specified virtual network interface (vif) queueing
+allowed: local -a array ;
+ array=( /sys/class/net/${COMP_WORDS[3]}.* ) ;
+ echo -n ${array[@]##*.}
+run: ${vyatta_bindir}/vyatta-show-queueing.pl "$4.$6"
diff --git a/templates/show/queueing/node.def b/templates/show/queueing/node.def
new file mode 100644
index 0000000..c9a9fdf
--- /dev/null
+++ b/templates/show/queueing/node.def
@@ -0,0 +1,2 @@
+help: Show ethernet queueing information
+run: ${vyatta_bindir}/vyatta-show-queueing.pl --brief
diff --git a/templates/show/queueing/serial/node.def b/templates/show/queueing/serial/node.def
new file mode 100644
index 0000000..754834d
--- /dev/null
+++ b/templates/show/queueing/serial/node.def
@@ -0,0 +1,2 @@
+help: Show serial queueing information
+run: ${vyatta_bindir}/vyatta-show-queueing.pl --type=serial
diff --git a/templates/show/queueing/serial/node.tag/node.def b/templates/show/queueing/serial/node.tag/node.def
new file mode 100644
index 0000000..089891d
--- /dev/null
+++ b/templates/show/queueing/serial/node.tag/node.def
@@ -0,0 +1,6 @@
+help: Show specified adsl interface information
+allowed:
+ local -a array ;
+ array=( /sys/class/net/wan* ) ;
+ echo -n ${array[@]##*/}
+run: ${vyatta_bindir}/vyatta-show-queueing.pl "$4"