diff options
author | Christian Breunig <christian@breunig.cc> | 2023-12-21 16:06:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-21 16:06:51 +0100 |
commit | 11b3750c4a01a120dc386e72a6781b1c16ed1120 (patch) | |
tree | 107d0af94e581601cc9c8032909178f5e593a421 /op-mode-definitions | |
parent | 273c65311e70414ab6267e62d1abcc2eb0f00a3c (diff) | |
parent | 4d721a58020971d00ab854c37b68e88359999f9c (diff) | |
download | vyos-1x-11b3750c4a01a120dc386e72a6781b1c16ed1120.tar.gz vyos-1x-11b3750c4a01a120dc386e72a6781b1c16ed1120.zip |
Merge pull request #2665 from c-po/ndp-proxy
T2898: add ndp-proxy service
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/monitor-log.xml.in | 6 | ||||
-rw-r--r-- | op-mode-definitions/show-log.xml.in | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/op-mode-definitions/monitor-log.xml.in b/op-mode-definitions/monitor-log.xml.in index 3a8118dcb..c03ec4cce 100644 --- a/op-mode-definitions/monitor-log.xml.in +++ b/op-mode-definitions/monitor-log.xml.in @@ -120,6 +120,12 @@ </properties> <command>journalctl --no-hostname --boot --follow --dmesg</command> </leafNode> + <leafNode name="ndp-proxy"> + <properties> + <help>Monitor last lines of Neighbor Discovery Protocol (NDP) Proxy</help> + </properties> + <command>journalctl --no-hostname --boot --follow --unit ndppd.service</command> + </leafNode> <leafNode name="nhrp"> <properties> <help>Monitor last lines of Next Hop Resolution Protocol log</help> diff --git a/op-mode-definitions/show-log.xml.in b/op-mode-definitions/show-log.xml.in index 399c6acf8..b013bdfe4 100644 --- a/op-mode-definitions/show-log.xml.in +++ b/op-mode-definitions/show-log.xml.in @@ -464,6 +464,12 @@ </properties> <command>egrep -i "kernel:.*\[NAT-[A-Z]{3,}-[0-9]+(-MASQ)?\]" $(find /var/log -maxdepth 1 -type f -name messages\* | sort -t. -k2nr)</command> </leafNode> + <leafNode name="ndp-proxy"> + <properties> + <help>Show log for Neighbor Discovery Protocol (NDP) Proxy</help> + </properties> + <command>journalctl --no-hostname --boot --unit ndppd.service</command> + </leafNode> <leafNode name="nhrp"> <properties> <help>Show log for Next Hop Resolution Protocol (NHRP)</help> |