diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-06-03 17:35:06 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-06-03 17:35:10 +0200 |
commit | 738f6181faff68bafc2ad13af3372e0fba3d5e10 (patch) | |
tree | 094dc6ae5997e1a9ceed290be7c3a61e28a585e7 | |
parent | e974c36637d6851a2af2125d36c657055f64090b (diff) | |
download | vyos-1x-738f6181faff68bafc2ad13af3372e0fba3d5e10.tar.gz vyos-1x-738f6181faff68bafc2ad13af3372e0fba3d5e10.zip |
T2546: add "show log vpn sstp"
-rw-r--r-- | op-mode-definitions/show-log.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/op-mode-definitions/show-log.xml b/op-mode-definitions/show-log.xml index 228884697..87d78cc49 100644 --- a/op-mode-definitions/show-log.xml +++ b/op-mode-definitions/show-log.xml @@ -112,6 +112,12 @@ </properties> <command>cat $(printf "%s\n" /var/log/messages* | sort -nr) | grep -e accel-pptp -e ppp</command> </leafNode> + <leafNode name="sstp"> + <properties> + <help>Show log for SSTP</help> + </properties> + <command>cat $(printf "%s\n" /var/log/messages* | sort -nr) | grep -e accel-sstp -e ppp</command> + </leafNode> </children> </node> <leafNode name="vrrp"> |