diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-06-04 16:09:58 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-06-04 16:10:44 +0200 |
commit | 10d7e3d236a59de490947cdf772f9c23cf59200b (patch) | |
tree | c19eddd9e9e25f902a9dc82a15cacc89666288c8 /op-mode-definitions/show-log.xml | |
parent | 3fdbde8ca0342f8cc2f744f25a7e9491577abedb (diff) | |
download | vyos-1x-10d7e3d236a59de490947cdf772f9c23cf59200b.tar.gz vyos-1x-10d7e3d236a59de490947cdf772f9c23cf59200b.zip |
op-mode: T2546: add "show log firewall|image" commands
Diffstat (limited to 'op-mode-definitions/show-log.xml')
-rw-r--r-- | op-mode-definitions/show-log.xml | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/op-mode-definitions/show-log.xml b/op-mode-definitions/show-log.xml index 87d78cc49..0c4da647b 100644 --- a/op-mode-definitions/show-log.xml +++ b/op-mode-definitions/show-log.xml @@ -38,12 +38,91 @@ </properties> <command>cat $(printf "%s\n" /var/log/messages* | sort -nr) | grep dhcpd</command> </leafNode> + <node name="firewall"> + <properties> + <help>Show log for Firewall</help> + </properties> + <children> + <tagNode name="ipv6-name"> + <properties> + <help>Show log for a specified firewall (IPv6)</help> + <completionHelp> + <path>firewall ipv6-name</path> + </completionHelp> + </properties> + <command>cat $(printf "%s\n" /var/log/messages* | sort -nr ) | egrep "\[$5-([0-9]+|default)-[ADR]\]"</command> + <children> + <tagNode name="rule"> + <properties> + <help>Show log for a rule in the specified firewall</help> + <completionHelp> + <path>firewall ipv6-name ${COMP_WORDS[4]} rule</path> + </completionHelp> + </properties> + <command>cat $(printf "%s\n" /var/log/messages* | sort -nr) | grep -e "\[$5-$7-[ADR]\]"</command> + </tagNode> + </children> + </tagNode> + <tagNode name="name"> + <properties> + <help>Show log for a specified firewall (IPv4)</help> + <completionHelp> + <path>firewall name</path> + </completionHelp> + </properties> + <command>cat $(printf "%s\n" /var/log/messages* | sort -nr ) | egrep "\[$5-([0-9]+|default)-[ADR]\]"</command> + <children> + <tagNode name="rule"> + <properties> + <help>Show log for a rule in the specified firewall</help> + <completionHelp> + <path>firewall name ${COMP_WORDS[4]} rule</path> + </completionHelp> + </properties> + <command>cat $(printf "%s\n" /var/log/messages* | sort -nr) | egrep "\[$5-$7-[ADR]\]"</command> + </tagNode> + </children> + </tagNode> + </children> + </node> <leafNode name="https"> <properties> <help>Show log for HTTPs</help> </properties> <command>cat $(printf "%s\n" /var/log/messages* | sort -nr) | grep -e nginx</command> </leafNode> + <tagNode name="image"> + <properties> + <help>Show contents of master log file for image</help> + <completionHelp> + <script>compgen -f /lib/live/mount/persistence/boot/ | grep -v grub | sed -e s@/lib/live/mount/persistence/boot/@@</script> + </completionHelp> + </properties> + <command>less $_vyatta_less_options --prompt=".log, page %dt of %D" -- /lib/live/mount/persistence/boot/$4/rw/var/log/messages</command> + <children> + <leafNode name="all"> + <properties> + <help>Show contents of all master log files for image</help> + </properties> + <command>eval $(lesspipe); less $_vyatta_less_options --prompt=".log?m, file %i of %m., page %dt of %D" -- `printf "%s\n" /lib/live/mount/persistence/boot/$4/rw/var/log/messages* | sort -nr`</command> + </leafNode> + <leafNode name="authorization"> + <properties> + <help>Show listing of authorization attempts for image</help> + </properties> + <command>less $_vyatta_less_options --prompt=".log, page %dt of %D" -- /lib/live/mount/persistence/boot/$4/rw/var/log/auth.log</command> + </leafNode> + <tagNode name="tail"> + <properties> + <help>Show last changes to messages</help> + <completionHelp> + <list><NUMBER></list> + </completionHelp> + </properties> + <command>tail -n "$6" /lib/live/mount/persistence/boot/$4/rw/var/log/messages | ${VYATTA_PAGER:-cat}</command> + </tagNode> + </children> + </tagNode> <leafNode name="lldp"> <properties> <help>Show log for LLDP</help> |