diff options
| author | Christian Breunig <christian@breunig.cc> | 2023-01-23 06:33:53 +0100 | 
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2023-01-23 06:54:24 +0100 | 
| commit | 1bd69a81dc32fdaa62be27e4f5ae3cfe333f2a26 (patch) | |
| tree | bf4a1ce80dc973244d781e21514193eaff78924d | |
| parent | 68a8cd2612cb1b00d381059747de8107f38e8c96 (diff) | |
| download | vyos-1x-1bd69a81dc32fdaa62be27e4f5ae3cfe333f2a26.tar.gz vyos-1x-1bd69a81dc32fdaa62be27e4f5ae3cfe333f2a26.zip | |
op-mode: add "show|monitor log pppoe-server" command
| -rw-r--r-- | op-mode-definitions/monitor-log.xml.in | 8 | ||||
| -rw-r--r-- | op-mode-definitions/show-log.xml.in | 8 | 
2 files changed, 14 insertions, 2 deletions
| diff --git a/op-mode-definitions/monitor-log.xml.in b/op-mode-definitions/monitor-log.xml.in index 7feedaf7f..ec428a676 100644 --- a/op-mode-definitions/monitor-log.xml.in +++ b/op-mode-definitions/monitor-log.xml.in @@ -119,7 +119,7 @@            </leafNode>            <node name="pppoe">              <properties> -              <help>Monitor last lines of PPPoE log</help> +              <help>Monitor last lines of PPPoE interface log</help>              </properties>              <command>journalctl --no-hostname --boot --follow --unit "ppp@pppoe*.service"</command>              <children> @@ -134,6 +134,12 @@                </tagNode>              </children>            </node> +          <leafNode name="pppoe-server"> +            <properties> +              <help>Monitor last lines of PPPoE server log</help> +            </properties> +            <command>journalctl --no-hostname --boot --follow --unit accel-ppp@pppoe.service</command> +          </leafNode>            <node name="protocol">              <properties>                <help>Monitor log for Routing Protocol</help> diff --git a/op-mode-definitions/show-log.xml.in b/op-mode-definitions/show-log.xml.in index 69e2b880e..f5e5b1493 100644 --- a/op-mode-definitions/show-log.xml.in +++ b/op-mode-definitions/show-log.xml.in @@ -268,7 +268,7 @@            </node>            <node name="pppoe">              <properties> -              <help>Show log for PPPoE</help> +              <help>Show log for PPPoE interface</help>              </properties>              <command>journalctl --no-hostname --boot --unit "ppp@pppoe*.service"</command>              <children> @@ -283,6 +283,12 @@                </tagNode>              </children>            </node> +          <leafNode name="pppoe-server"> +            <properties> +              <help>Show log for PPPoE server</help> +            </properties> +            <command>journalctl --no-hostname --boot --unit accel-ppp@pppoe.service</command> +          </leafNode>            <node name="protocol">              <properties>                <help>Show log for Routing Protocol</help> | 
