diff options
| -rw-r--r-- | op-mode-definitions/monitor-log.xml.in | 17 | ||||
| -rw-r--r-- | op-mode-definitions/show-log.xml.in | 17 | 
2 files changed, 34 insertions, 0 deletions
| diff --git a/op-mode-definitions/monitor-log.xml.in b/op-mode-definitions/monitor-log.xml.in index 8a051d49a..aa8f13769 100644 --- a/op-mode-definitions/monitor-log.xml.in +++ b/op-mode-definitions/monitor-log.xml.in @@ -20,6 +20,23 @@              </properties>              <command>journalctl --no-hostname --boot --follow --dmesg</command>            </leafNode> +          <node name="pppoe"> +            <properties> +              <help>Monitor last lines of PPPoE log</help> +            </properties> +            <command>journalctl --no-hostname --boot --follow --unit "ppp@pppoe*.service"</command> +            <children> +              <tagNode name="interface"> +                <properties> +                  <help>Monitor last lines of PPPoE log for specific interface</help> +                  <completionHelp> +                    <script>${vyos_completion_dir}/list_interfaces.py -t pppoe</script> +                  </completionHelp> +                </properties> +                <command>journalctl --no-hostname --boot --follow --unit "ppp@$6.service"</command> +              </tagNode> +            </children> +          </node>            <node name="protocol">              <properties>                <help>Monitor log for Routing Protocols</help> diff --git a/op-mode-definitions/show-log.xml.in b/op-mode-definitions/show-log.xml.in index c3b8af985..954369712 100644 --- a/op-mode-definitions/show-log.xml.in +++ b/op-mode-definitions/show-log.xml.in @@ -212,6 +212,23 @@                </tagNode>              </children>            </node> +          <node name="pppoe"> +            <properties> +              <help>Show log for PPPoE</help> +            </properties> +            <command>journalctl --no-hostname --boot --unit "ppp@pppoe*.service"</command> +            <children> +              <tagNode name="interface"> +                <properties> +                  <help>Show PPPoE log on specific interface</help> +                  <completionHelp> +                    <script>${vyos_completion_dir}/list_interfaces.py -t pppoe</script> +                  </completionHelp> +                </properties> +                <command>journalctl --no-hostname --boot --unit "ppp@$6.service"</command> +              </tagNode> +            </children> +          </node>            <node name="protocol">              <properties>                <help>Show log for Routing Protocols</help> | 
