diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-03-28 18:49:45 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-03-28 20:48:32 +0100 |
commit | 2c6b33d3fcb88551d85c740288a916a1be76a8d3 (patch) | |
tree | b1a9b69173b879ee1340d09451e86c217e8666bd /op-mode-definitions/show-interfaces-wirelessmodem.xml | |
parent | 65f0c6bf68f4f903d8011d0083385aa0f3c280ce (diff) | |
download | vyos-1x-2c6b33d3fcb88551d85c740288a916a1be76a8d3.tar.gz vyos-1x-2c6b33d3fcb88551d85c740288a916a1be76a8d3.zip |
wwan: T1988: migrate operational mode commands
Diffstat (limited to 'op-mode-definitions/show-interfaces-wirelessmodem.xml')
-rw-r--r-- | op-mode-definitions/show-interfaces-wirelessmodem.xml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/op-mode-definitions/show-interfaces-wirelessmodem.xml b/op-mode-definitions/show-interfaces-wirelessmodem.xml new file mode 100644 index 000000000..681f54f3d --- /dev/null +++ b/op-mode-definitions/show-interfaces-wirelessmodem.xml @@ -0,0 +1,45 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="interfaces"> + <children> + <tagNode name="wirelessmodem"> + <properties> + <help>Show Wireless Modem (WWAN) interface information</help> + <completionHelp> + <script>${vyos_completion_dir}/list_wlm_peers.sh</script> + </completionHelp> + </properties> + <command>${vyatta_bindir}/vyatta-show-interfaces.pl --intf="$4"</command> + <children> + <node name="log"> + <properties> + <help>Show PPPoE logs</help> + </properties> + <command>cat /var/log/vyatta/ppp_$4.log</command> + <children> + <leafNode name="tail"> + <properties> + <help>Watch PPPoE logs</help> + </properties> + <command>tail --follow=name /var/log/vyatta/ppp_$4.log</command> + </leafNode> + </children> + </node> + <leafNode name="statistics"> + <properties> + <help>Show specified wirelessmodem interface statistics</help> + <completionHelp> + <script>${vyos_completion_dir}/list_wlm_peers.sh</script> + </completionHelp> + </properties> + <command>/usr/sbin/pppstats $4</command> + </leafNode> + </children> + </tagNode> + </children> + </node> + </children> + </node> +</interfaceDefinition> |