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
|
<?xml version="1.0"?>
<!DOCTYPE stylesheet [
<!ENTITY newln " ">
]>
<!-- /*
* Copyright 2006, Vyatta, Inc.
*
* GNU General Public License
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
* Module: show_firewall_statistics_brief.xsl
*
* Author: Mike Horn
* Date: 2006
*
*/ -->
<!--XSL Template for formatting "show firewall <name> statistics brief"-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="pad6" select="' '"/>
<xsl:variable name="pad6_len" select="string-length($pad6)"/>
<xsl:variable name="pad7" select="' '"/>
<xsl:variable name="pad7_len" select="string-length($pad7)"/>
<xsl:variable name="pad8" select="' '"/>
<xsl:variable name="pad8_len" select="string-length($pad8)"/>
<xsl:variable name="pad10" select="' '"/>
<xsl:variable name="pad10_len" select="string-length($pad10)"/>
<xsl:variable name="pad20" select="' '"/>
<xsl:variable name="pad20_len" select="string-length($pad20)"/>
<xsl:comment> FORMAT HEADER LINES </xsl:comment>
<xsl:template match="opcommand">
<xsl:text>&newln;</xsl:text>
<xsl:text>&newln;</xsl:text>
<xsl:text>State Codes: E - Established, I - Invalid, N - New, R - Related&newln;</xsl:text>
<xsl:text>&newln;</xsl:text>
<xsl:text>rule packets bytes action source destination</xsl:text>
<xsl:text>&newln;</xsl:text>
<xsl:text>---- ------- ----- ------ ------ -----------</xsl:text>
<xsl:text>&newln;</xsl:text>
<xsl:for-each select="format/row">
<xsl:value-of select="rule_number"/>
<xsl:value-of select="substring($pad6,1,$pad6_len - string-length(rule_number))"/>
<xsl:value-of select="pkts"/>
<xsl:value-of select="substring($pad10,1,$pad10_len - string-length(pkts))"/>
<xsl:value-of select="bytes"/>
<xsl:value-of select="substring($pad10,1,$pad10_len - string-length(pkts))"/>
<xsl:value-of select="action"/>
<xsl:value-of select="substring($pad8,1,$pad8_len - string-length(action))"/>
<xsl:choose>
<xsl:when test="src_addr!='0.0.0.0'">
<xsl:value-of select="src_addr"/>
<xsl:value-of select="substring($pad20,1,$pad20_len - string-length(src_addr))"/>
</xsl:when>
<xsl:when test="src_addr_start!='0.0.0.0'">
<xsl:text>Range (use detail) </xsl:text>
</xsl:when>
<xsl:when test="src_addr='0.0.0.0'">
<xsl:value-of select="src_net"/>
<xsl:value-of select="substring($pad20,1,$pad20_len - string-length(src_net))"/>
</xsl:when>
</xsl:choose>
<xsl:choose>
<xsl:when test="dst_addr!='0.0.0.0'">
<xsl:value-of select="dst_addr"/>
<xsl:value-of select="substring($pad20,1,$pad20_len - string-length(dst_addr))"/>
</xsl:when>
<xsl:when test="dst_addr_start!='0.0.0.0'">
<xsl:text>Range (use detail) </xsl:text>
</xsl:when>
<xsl:when test="dst_addr='0.0.0.0'">
<xsl:value-of select="dst_net"/>
<xsl:value-of select="substring($pad20,1,$pad20_len - string-length(dst_net))"/>
</xsl:when>
</xsl:choose>
<xsl:text>&newln;</xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
|