diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-01-29 14:35:43 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-01-29 14:35:43 -0800 |
commit | 362df27e72119c0a6ea0c989c053b0dc0a68fb67 (patch) | |
tree | 86845f29d804d4c9d2995a11278d0d225996409d /templates/show/system | |
parent | 53a2e008425841bf8ac0088bb149cf328ccb220d (diff) | |
parent | 4c4a35e055b880ca722b09fd60e5072a83998801 (diff) | |
download | vyatta-op-362df27e72119c0a6ea0c989c053b0dc0a68fb67.tar.gz vyatta-op-362df27e72119c0a6ea0c989c053b0dc0a68fb67.zip |
Merge branch 'jenner' of suva.vyatta.com:/git/vyatta-op into jenner
Diffstat (limited to 'templates/show/system')
5 files changed, 10 insertions, 0 deletions
diff --git a/templates/show/system/connections/tcp/all/node.def b/templates/show/system/connections/tcp/all/node.def new file mode 100644 index 0000000..6aa1cae --- /dev/null +++ b/templates/show/system/connections/tcp/all/node.def @@ -0,0 +1,2 @@ +help: show all TCP connections +run: /sbin/ss -t -a diff --git a/templates/show/system/connections/tcp/node.def b/templates/show/system/connections/tcp/node.def new file mode 100644 index 0000000..8b6c99b --- /dev/null +++ b/templates/show/system/connections/tcp/node.def @@ -0,0 +1,2 @@ +help: show TCP connection information +run: /sbin/ss -t -r diff --git a/templates/show/system/connections/tcp/numeric/node.def b/templates/show/system/connections/tcp/numeric/node.def new file mode 100644 index 0000000..7df9efe --- /dev/null +++ b/templates/show/system/connections/tcp/numeric/node.def @@ -0,0 +1,2 @@ +help: show TCP connection without resolving names +run: /sbin/ss -t -n diff --git a/templates/show/system/connections/udp/node.def b/templates/show/system/connections/udp/node.def new file mode 100644 index 0000000..ef9e55f --- /dev/null +++ b/templates/show/system/connections/udp/node.def @@ -0,0 +1,2 @@ +help: show UDP socket information +run: /sbin/ss -u -a -r diff --git a/templates/show/system/connections/udp/numeric/node.def b/templates/show/system/connections/udp/numeric/node.def new file mode 100644 index 0000000..cb43a91 --- /dev/null +++ b/templates/show/system/connections/udp/numeric/node.def @@ -0,0 +1,2 @@ +help: show UDP socket information without resolving names +run: /sbin/ss -u -a -n |