summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-12-01 11:42:54 +0100
committerChristian Poessinger <christian@poessinger.com>2020-02-23 14:36:56 +0100
commitc88b2442c23bb715334edcb673a3a0f9a2743aa2 (patch)
tree64aa2f995e0befdf1273ae779d2b47131f52e7b2
parent426f9d33d24a163fc1fc169930d7b969abf846b0 (diff)
downloadvyos-1x-c88b2442c23bb715334edcb673a3a0f9a2743aa2.tar.gz
vyos-1x-c88b2442c23bb715334edcb673a3a0f9a2743aa2.zip
pppoe: T1318: add op-mode commands for link information
-rw-r--r--op-mode-definitions/show-interfaces-pppoe.xml36
-rwxr-xr-xsrc/completion/list_pppoe_peers.sh6
2 files changed, 42 insertions, 0 deletions
diff --git a/op-mode-definitions/show-interfaces-pppoe.xml b/op-mode-definitions/show-interfaces-pppoe.xml
new file mode 100644
index 000000000..3acb14486
--- /dev/null
+++ b/op-mode-definitions/show-interfaces-pppoe.xml
@@ -0,0 +1,36 @@
+<?xml version="1.0"?>
+<interfaceDefinition>
+ <node name="show">
+ <children>
+ <node name="interfaces">
+ <children>
+ <tagNode name="pppoe">
+ <properties>
+ <help>Show PPPoE interface information</help>
+ <completionHelp>
+ <script>${vyos_completion_dir}/list_pppoe_peers.sh</script>
+ </completionHelp>
+ </properties>
+ <command>${vyatta_bindir}/vyatta-show-interfaces.pl pppoe --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>
+ </children>
+ </tagNode>
+ </children>
+ </node>
+ </children>
+ </node>
+</interfaceDefinition>
diff --git a/src/completion/list_pppoe_peers.sh b/src/completion/list_pppoe_peers.sh
new file mode 100755
index 000000000..382a29264
--- /dev/null
+++ b/src/completion/list_pppoe_peers.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+if [ -d /etc/ppp/peers ]; then
+ cd /etc/ppp/peers
+ ls pppoe*
+fi