diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-06-03 17:34:44 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-06-03 17:34:46 +0200 |
commit | e974c36637d6851a2af2125d36c657055f64090b (patch) | |
tree | f9a99f33f54440b2655d2bd9981e2d5dae948041 /op-mode-definitions | |
parent | fd5b81f66e44a75e0df0f0774d4d23c400d29a21 (diff) | |
download | vyos-1x-e974c36637d6851a2af2125d36c657055f64090b.tar.gz vyos-1x-e974c36637d6851a2af2125d36c657055f64090b.zip |
T2546: fix "show log vpn" after migrating to Accel-PPP
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/show-log.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/op-mode-definitions/show-log.xml b/op-mode-definitions/show-log.xml index 35e89aed2..228884697 100644 --- a/op-mode-definitions/show-log.xml +++ b/op-mode-definitions/show-log.xml @@ -92,7 +92,7 @@ <properties> <help>Show log for ALL</help> </properties> - <command>cat $(printf "%s\n" /var/log/messages* | sort -nr) | grep -e charon -e xl2tpd -e pptpd -e ppp</command> + <command>cat $(printf "%s\n" /var/log/messages* | sort -nr) | grep -e charon -e accel -e pptpd -e ppp</command> </leafNode> <leafNode name="ipsec"> <properties> @@ -104,13 +104,13 @@ <properties> <help>Show log for L2TP</help> </properties> - <command>cat $(printf "%s\n" /var/log/messages* | sort -nr) | grep -e remote-access-aaa-win -e remote-access-zzz-mac -e xl2tpd -e ppp</command> + <command>cat $(printf "%s\n" /var/log/messages* | sort -nr) | grep -e remote-access-aaa-win -e remote-access-zzz-mac -e accel-l2tp -e ppp</command> </leafNode> <leafNode name="pptp"> <properties> <help>Show log for PPTP</help> </properties> - <command>cat $(printf "%s\n" /var/log/messages* | sort -nr) | grep -e pptpd -e ppp</command> + <command>cat $(printf "%s\n" /var/log/messages* | sort -nr) | grep -e accel-pptp -e ppp</command> </leafNode> </children> </node> |