diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-02-02 10:22:05 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-02-02 10:23:59 -0800 |
commit | a305ff90c296df58a1de27a02f77c08871ecf40c (patch) | |
tree | 10b4157ee6200e4709970664acacf2778146dcd3 /templates | |
parent | 925e4562da09aeaf80c41f2fb085fd4295526368 (diff) | |
download | vyatta-op-a305ff90c296df58a1de27a02f77c08871ecf40c.tar.gz vyatta-op-a305ff90c296df58a1de27a02f77c08871ecf40c.zip |
Merge branch 'kenwood' of 192.168.100.1:git/vyatta-op into kenwood
Diffstat (limited to 'templates')
-rw-r--r-- | templates/ping/node.tag/node.def | 3 | ||||
-rw-r--r-- | templates/ping6/node.tag/node.def | 3 | ||||
-rw-r--r-- | templates/set/date/ntp/node.tag/node.def | 2 | ||||
-rw-r--r-- | templates/show/host/lookup/node.tag/node.def | 9 | ||||
-rw-r--r-- | templates/show/ntp/node.tag/node.def | 3 | ||||
-rw-r--r-- | templates/telnet/node.tag/node.def | 9 | ||||
-rw-r--r-- | templates/traceroute/node.tag/node.def | 3 | ||||
-rw-r--r-- | templates/traceroute6/node.tag/node.def | 3 |
8 files changed, 20 insertions, 15 deletions
diff --git a/templates/ping/node.tag/node.def b/templates/ping/node.tag/node.def index 9f58702..6a05e3b 100644 --- a/templates/ping/node.tag/node.def +++ b/templates/ping/node.tag/node.def @@ -3,7 +3,6 @@ # help: Send ICMP echo request to specified <hostname|IPv4 address> -allowed: - vyatta-allowed-hosts +allowed: echo "<hostname> <x.x.x.x>" run: /bin/ping $2 diff --git a/templates/ping6/node.tag/node.def b/templates/ping6/node.tag/node.def index 7dc822c..f6bade7 100644 --- a/templates/ping6/node.tag/node.def +++ b/templates/ping6/node.tag/node.def @@ -3,7 +3,6 @@ # help: Send IPv6 ICMP echo request to specified <hostname|IPv6 address> -allowed: - vyatta-allowed-hosts +allowed: echo "<hostname> <x:x:x:x:x>" run: /bin/ping6 $2 diff --git a/templates/set/date/ntp/node.tag/node.def b/templates/set/date/ntp/node.tag/node.def index 2bb348c..71f2697 100644 --- a/templates/set/date/ntp/node.tag/node.def +++ b/templates/set/date/ntp/node.tag/node.def @@ -1,3 +1,3 @@ help: Set system date and time with given NTP server -allowed: vyatta-allowed-hosts ntp.vyatta.com +allowed: echo "<hostname> <x.x.x.x> ntp.vyatta.com" run: sudo ntpdate ${4:-ntp.vyatta.com} diff --git a/templates/show/host/lookup/node.tag/node.def b/templates/show/host/lookup/node.tag/node.def index 29bf5a7..ba5a4ad 100644 --- a/templates/show/host/lookup/node.tag/node.def +++ b/templates/show/host/lookup/node.tag/node.def @@ -1,3 +1,8 @@ -help: Lookup host information for specified <hostname|IPv4 address> -allowed: vyatta-allowed-hosts +help: Lookup host information for specified name or address +allowed: echo "<hostname> <x.x.x.x> <y:y:y:y:y>" +comp_help: Possible completions + <hostname> host name (static or DNS) + <x.x.x.x> IPv4 address + <y:y:y:y:y:y> IPv6 address + run: /usr/bin/host $4 diff --git a/templates/show/ntp/node.tag/node.def b/templates/show/ntp/node.tag/node.def index d1f00d7..2710671 100644 --- a/templates/show/ntp/node.tag/node.def +++ b/templates/show/ntp/node.tag/node.def @@ -1,4 +1,3 @@ help: Show date and time of specified NTP server -allowed: vyatta-allowed-hosts ntp.vyatta.com ; - awk '/^server/ { print $2 }' /etc/ntp.conf +allowed: echo ntp.vyatta.com; awk '/^server/ { print $2 }' /etc/ntp.conf run: /usr/sbin/ntpdate -q ${3:-ntp.vyatta.com} diff --git a/templates/telnet/node.tag/node.def b/templates/telnet/node.tag/node.def index 643b7cb..590c587 100644 --- a/templates/telnet/node.tag/node.def +++ b/templates/telnet/node.tag/node.def @@ -1,5 +1,10 @@ -help: Telnet to <hostname|IPv4 address> -allowed: vyatta-allowed-hosts +help: Telnet to host +allowed: echo "<hostname> <x.x.x.x> <y:y:y:y:y>" +comp_help: Possible completions + <hostname> host name (static or DNS) + <x.x.x.x> IPv4 address + <y:y:y:y:y:y> IPv6 address + run: if [ -x /usr/bin/telnet ] ; then /usr/bin/$* elif [ -x /bin/busybox ] ; then diff --git a/templates/traceroute/node.tag/node.def b/templates/traceroute/node.tag/node.def index cf60ec4..b079582 100644 --- a/templates/traceroute/node.tag/node.def +++ b/templates/traceroute/node.tag/node.def @@ -3,8 +3,7 @@ # help: Track network path to specified <hostname|IPv4 address> -allowed: - vyatta-allowed-hosts +allowed: echo "<hostname> <x.x.x.x>" run: if /opt/vyatta/sbin/vyatta-validate-type.pl -q ipv4 $2 diff --git a/templates/traceroute6/node.tag/node.def b/templates/traceroute6/node.tag/node.def index 5148e6d..7d91a39 100644 --- a/templates/traceroute6/node.tag/node.def +++ b/templates/traceroute6/node.tag/node.def @@ -3,8 +3,7 @@ # help: Track network path to specified <hostname|IPv6 address> -allowed: - vyatta-allowed-hosts +allowed: echo "<hostname> <x:x:x:x:x>" run: if /opt/vyatta/sbin/vyatta-validate-type.pl -q ipv6 $2 |