summaryrefslogtreecommitdiff
path: root/op-mode-definitions/show-log.xml.in
blob: 3156d822aac4340a1e2e07780f992a497b5c68ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<?xml version="1.0"?>
<interfaceDefinition>
  <node name="show">
    <children>
      <node name="log">
        <properties>
          <help>Show contents of current master log file</help>
        </properties>
        <command>journalctl --boot</command>
        <children>
          <leafNode name="all">
            <properties>
              <help>Show contents of all master log files</help>
            </properties>
            <command>sudo bash -c 'eval $(lesspipe); less $_vyatta_less_options --prompt=".logm, file %i of %m., page %dt of %D" -- `printf "%s\n" /var/log/messages* | sort -nr`'</command>
          </leafNode>
          <leafNode name="authorization">
            <properties>
              <help>Show listing of authorization attempts</help>
            </properties>
            <command>journalctl --boot --quiet SYSLOG_FACILITY=10 SYSLOG_FACILITY=4</command>
          </leafNode>
          <leafNode name="cluster">
            <properties>
              <help>Show log for Cluster</help>
            </properties>
            <command>cat $(printf "%s\n" /var/log/messages* | sort -nr) | grep -e heartbeat -e cl_status -e mach_down -e ha_log</command>
          </leafNode>
          <leafNode name="conntrack-sync">
            <properties>
              <help>Show log for Conntrack-sync</help>
            </properties>
            <command>journalctl --boot --unit conntrackd.service</command>
          </leafNode>
          <node name="dhcp">
            <properties>
              <help>Show log for Dynamic Host Control Protocol (DHCP)</help>
            </properties>
            <children>
              <node name="server">
                <properties>
                  <help>Show log for DHCP server</help>
                </properties>
                <command>journalctl --boot --unit isc-dhcp-server.service</command>
              </node>
              <node name="client">
                <properties>
                  <help>Show DHCP client logs</help>
                </properties>
                <command>journalctl --boot --unit "dhclient@*.service"</command>
                <children>
                  <tagNode name="interface">
                    <properties>
                      <help>Show DHCP client log on specific interface</help>
                      <completionHelp>
                        <script>${vyos_completion_dir}/list_interfaces.py --broadcast</script>
                      </completionHelp>
                    </properties>
                    <command>journalctl --boot --unit "dhclient@$6.service"</command>
                  </tagNode>
                </children>
              </node>
            </children>
          </node>
          <node name="dhcpv6">
            <properties>
              <help>Show log for Dynamic Host Control Protocol IPv6 (DHCPv6)</help>
            </properties>
            <children>
              <node name="server">
                <properties>
                  <help>Show log for DHCPv6 server</help>
                </properties>
                <command>journalctl --boot --unit isc-dhcp-server6.service</command>
              </node>
              <node name="client">
                <properties>
                  <help>Show DHCPv6 client logs</help>
                </properties>
                <command>journalctl --boot --unit "dhcp6c@*.service"</command>
                <children>
                  <tagNode name="interface">
                    <properties>
                      <help>Show DHCPv6 client log on specific interface</help>
                      <completionHelp>
                        <script>${vyos_completion_dir}/list_interfaces.py</script>
                      </completionHelp>
                    </properties>
                    <command>journalctl --boot --unit "dhcp6c@$6.service"</command>
                  </tagNode>
                </children>
              </node>
            </children>
          </node>
          <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>journalctl --boot --unit nginx.service</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>&lt;NUMBER&gt;</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="kernel">
            <properties>
              <help>Show messages in kernel ring buffer</help>
            </properties>
            <command>sudo dmesg</command>
          </leafNode>
          <leafNode name="lldp">
            <properties>
              <help>Show log for LLDP</help>
            </properties>
            <command>journalctl --boot --unit lldpd.service</command>
          </leafNode>
          <leafNode name="nat">
            <properties>
              <help>Show log for Network Address Translation (NAT)</help>
            </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>
          <node name="openvpn">
            <properties>
              <help>Show log for OpenVPN</help>
            </properties>
            <command>journalctl --boot --unit openvpn@*.service</command>
            <children>
              <tagNode name="interface">
                <properties>
                  <help>Show OpenVPN log on specific interface</help>
                  <completionHelp>
                    <path>interfaces openvpn</path>
                  </completionHelp>
                </properties>
                <command>journalctl --boot --unit openvpn@$5.service</command>
              </tagNode>
            </children>
          </node>
          <leafNode name="snmp">
            <properties>
              <help>Show log for Simple Network Monitoring Protocol (SNMP)</help>
            </properties>
            <command>journalctl --boot --unit snmpd.service</command>
          </leafNode>
          <tagNode name="tail">
            <properties>
              <help>Show last n changes to messages</help>
              <completionHelp>
                <list>&lt;NUMBER&gt;</list>
              </completionHelp>
            </properties>
            <command>tail -n "$4" /var/log/messages | ${VYATTA_PAGER:-cat}</command>
          </tagNode>
          <node name="tail">
            <properties>
              <help>Show last 10 lines of /var/log/messages file</help>
            </properties>
            <command>tail -n 10 /var/log/messages</command>
          </node>
          <node name="vpn">
            <properties>
              <help>Show log for Virtual Private Network (VPN)</help>
            </properties>
            <children>
              <leafNode name="all">
                <properties>
                  <help>Show log for ALL</help>
                </properties>
                <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>
                  <help>Show log for IPSec</help>
                </properties>
                <command>cat $(printf "%s\n" /var/log/messages* | sort -nr) | grep -e charon</command>
              </leafNode>
              <leafNode name="l2tp">
                <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 accel-l2tp -e ppp</command>
              </leafNode>
              <leafNode name="pptp">
                <properties>
                  <help>Show log for PPTP</help>
                </properties>
                <command>journalctl --boot --unit accel-ppp@pptp.service</command>
              </leafNode>
              <leafNode name="sstp">
                <properties>
                  <help>Show log for SSTP</help>
                </properties>
                <command>journalctl --boot --unit accel-ppp@sstp.service</command>
              </leafNode>
            </children>
          </node>
          <leafNode name="vrrp">
            <properties>
              <help>Show log for Virtual Router Redundancy Protocol (VRRP)</help>
            </properties>
            <command>journalctl --boot --unit keepalived.service</command>
          </leafNode>
          <leafNode name="webproxy">
            <properties>
              <help>Show log for Webproxy</help>
            </properties>
            <command>journalctl --boot --unit squid.service</command>
          </leafNode>
        </children>
      </node>
    </children>
  </node>
</interfaceDefinition>