mirror of
https://gitlab.com/shorewall/code.git
synced 2025-08-17 04:07:45 +02:00
Merge branch '5.2.3' into 5.2.4
# Conflicts: # docs/Introduction.xml Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
@ -113,7 +113,6 @@
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>tools/files</term>
|
||||
|
||||
@ -122,7 +121,6 @@
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>tools/testing</term>
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
<pubdate><?dbtimestamp format="Y/m/d"?></pubdate>
|
||||
|
||||
<copyright>
|
||||
<year>2003-2015</year>
|
||||
<year>2003-2020</year>
|
||||
|
||||
<year>2019</year>
|
||||
|
||||
@ -173,18 +173,22 @@ dmz ipv4</programlisting>
|
||||
file. In the three-interface sample, the three zones are defined using
|
||||
that file as follows:</para>
|
||||
|
||||
<programlisting>#ZONE INTERFACE OPTIONS
|
||||
net NET_IF dhcp,routefilter
|
||||
loc LOC_IF
|
||||
dmz DMZ_IF</programlisting>
|
||||
<programlisting>#ZONE INTERFACE OPTIONS
|
||||
net NET_IF tcpflags,dhcp,nosmurfs,routefilter,logmartians,sourceroute=0,physical=eth0
|
||||
loc LOC_IF tcpflags,nosmurfs,routefilter,logmartians,physical=eth1
|
||||
dmz DMZ_IF tcpflags,nosmurfs,routefilter,logmartians,physical=eth2</programlisting>
|
||||
|
||||
<para>The above file defines the <emphasis>net</emphasis> zone as all IPv4
|
||||
hosts interfacing to the firewall through NET_IF, the
|
||||
<emphasis>loc</emphasis> zone as all IPv4 hosts interfacing through LOC_IF
|
||||
and the <emphasis>dmz</emphasis> as all IPv4 hosts interfacing through
|
||||
DMZ_IF. It is important to note that the composition of a zone is defined
|
||||
in terms of a combination of addresses <emphasis
|
||||
role="bold">and</emphasis> interfaces. When using the <ulink
|
||||
eth2. The interface names shown in the INTERFACE column are <emphasis>
|
||||
logical</emphasis> names which are used throughout the configuration to
|
||||
refer to the individual interfaces. The actual interface names are
|
||||
specified using the <emphasis role="bold">physical</emphasis> option. It
|
||||
is important to note that the composition of a zone is defined in terms of
|
||||
a combination of addresses <emphasis role="bold">and</emphasis>
|
||||
interfaces. When using the <ulink
|
||||
url="manpages/shorewall-interfaces.html"><filename>/etc/shorewall/interfaces</filename></ulink>
|
||||
file to define a zone, all addresses are included; when you want to define
|
||||
a zone that contains a limited subset of the IPv4 address space, you use
|
||||
@ -193,10 +197,12 @@ dmz DMZ_IF</programlisting>
|
||||
file or you may use the nets= option in
|
||||
<filename>/etc/shorewall/interfaces</filename>:</para>
|
||||
|
||||
<programlisting>#ZONE INTERFACE BROADCAST OPTIONS
|
||||
net NET_IF detect dhcp,routefilter,nets=(!192.168.0.0/23),physical=eth0
|
||||
loc LOC_IF detect nets=(192.168.0.0/24),physical=eth1
|
||||
dmz DMZ_IF detect nets=(192.168.1.0/24),physical=eth2</programlisting>
|
||||
<programlisting>#ZONE INTERFACE OPTIONS
|
||||
net NET_IF tcpflags,dhcp,nosmurfs,routefilter,logmartians,sourceroute=0,physical=eth0
|
||||
loc LOC_IF tcpflags,nosmurfs,routefilter,logmartians,physical=eth1,<emphasis
|
||||
role="bold">nets=172.20.1.0/24</emphasis>
|
||||
dmz DMZ_IF tcpflags,nosmurfs,routefilter,logmartians,physical=eth2
|
||||
</programlisting>
|
||||
|
||||
<para>The above file defines the <emphasis>net</emphasis> zone as all IPv4
|
||||
hosts interfacing to the firewall through eth0 <emphasis>except</emphasis>
|
||||
|
234
docs/html.css
234
docs/html.css
@ -1,48 +1,188 @@
|
||||
div.informalexample { background-color: #d5dee3;
|
||||
border-top-width: 2px;
|
||||
border-top-style: double;
|
||||
border-top-color: #d3d3d3;
|
||||
border-bottom-width: 2px;
|
||||
border-bottom-style: double;
|
||||
border-bottom-color: #d3d3d3;
|
||||
padding: 4px;
|
||||
margin: 0em;
|
||||
margin-left: 2em;
|
||||
}
|
||||
/* global styles */
|
||||
body {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
div {
|
||||
border: 0;
|
||||
padding: 0.5em;
|
||||
}
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
hr {
|
||||
color: #8b8b8b;
|
||||
}
|
||||
h4 {
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
padding: 0.25em 0.5em;
|
||||
margin: 0 0 1px;
|
||||
}
|
||||
.quote {
|
||||
font-style: italic;
|
||||
text-align: center;
|
||||
}
|
||||
.strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
.warning {
|
||||
font-weight: bold;
|
||||
color: #ff0000;
|
||||
}
|
||||
a {
|
||||
display: block;
|
||||
border-width: 0;
|
||||
text-decoration: none;
|
||||
color: #0060b5;
|
||||
background: #ffffff;
|
||||
}
|
||||
a:hover {
|
||||
color: #ffffff;
|
||||
background: #0060b5;
|
||||
}
|
||||
/* header styles */
|
||||
div#header {
|
||||
position: absolute;
|
||||
font-size: small;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100px;
|
||||
width: 95%;
|
||||
margin: 10px;
|
||||
}
|
||||
div#header p {
|
||||
text-align: center;
|
||||
}
|
||||
div#header div#search-form {
|
||||
float: left;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
div#header div#search-form input#search-text {
|
||||
background-color: #ffffff;
|
||||
color: #0060b5;
|
||||
font-size: small;
|
||||
border: 1px solid;
|
||||
vertical-align: middle;
|
||||
}
|
||||
div#header div#search-form input#submit-button {
|
||||
background-color: #ffffff;
|
||||
color: #0060b5;
|
||||
font-size: small;
|
||||
font-weight: bold;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius:6px;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
border: 1px solid;
|
||||
vertical-align: middle;
|
||||
}
|
||||
div#header div#search-form input#submit-button:hover {
|
||||
border: 1px solid;
|
||||
background-color: #0060b5;
|
||||
color: #ffffff;
|
||||
box-shadow: 0px 0px 1px #777;
|
||||
}
|
||||
div#header div#ml-search {
|
||||
float: right;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
div#header div#logo {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
clear: both;
|
||||
}
|
||||
/* sidebar styles */
|
||||
div#sidebar {
|
||||
position: fixed;
|
||||
top: 125px;
|
||||
left: 0;
|
||||
width: 15%;
|
||||
margin: 10px;
|
||||
font-size: small;
|
||||
}
|
||||
div#sidebar:hover {
|
||||
background-position: 0px 0px;
|
||||
}
|
||||
div#sidebar a {
|
||||
text-align: center;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius:6px;
|
||||
}
|
||||
/* menu styles */
|
||||
/* main panel styles */
|
||||
div#main {
|
||||
position: absolute;
|
||||
top: 150px;
|
||||
left: 16%;
|
||||
width: 62%;
|
||||
margin: 10px;
|
||||
}
|
||||
div#main a {
|
||||
display: inline;
|
||||
padding: 0;
|
||||
}
|
||||
div#main a:hover {
|
||||
color: #0060b5;
|
||||
background: #ffffff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
/* content styles */
|
||||
div#content div {
|
||||
padding: 0;
|
||||
}
|
||||
div#content code, pre {
|
||||
font: 100% monospace;
|
||||
}
|
||||
div#content table {
|
||||
width: 100%;
|
||||
}
|
||||
div#content table#changelog {
|
||||
font-size: x-small;
|
||||
}
|
||||
/* footer styles */
|
||||
div#footer p {
|
||||
text-align: center;
|
||||
font-size: small;
|
||||
}
|
||||
div#footer table {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
/* doc panel styles */
|
||||
div#doc {
|
||||
float: right;
|
||||
top: 125px;
|
||||
left: 80%;
|
||||
width: 15%;
|
||||
margin: 125px 10px 10px 10px;
|
||||
font-size: small;
|
||||
}
|
||||
div#doc:hover {
|
||||
background-position: 0px 0px;
|
||||
}
|
||||
div#doc a {
|
||||
padding: 0 5px 0 5px;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius:6px;
|
||||
}
|
||||
div#doc p.go-top, div#doc p.go-top a, div#doc p.go-top a:hover {
|
||||
opacity: 0.75;
|
||||
filter:alpha(opacity=75); /* For IE8 and earlier */
|
||||
position: fixed;
|
||||
bottom: 0.5em;
|
||||
right: 0.5em;
|
||||
text-decoration: none;
|
||||
font-size: small;
|
||||
padding: 0;
|
||||
display: block;
|
||||
}
|
||||
div#doc p.go-top a:hover {
|
||||
opacity: 1.0;
|
||||
filter:alpha(opacity=100); /* For IE8 and earlier */
|
||||
}
|
||||
|
||||
pre.programlisting { whitespace: pre;
|
||||
font-family: monospace;
|
||||
background-color: #BEE1F6;
|
||||
border-top-width: 1px;
|
||||
border-top-style: single;
|
||||
border-top-color: #d3d3d3;
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-style: single;
|
||||
border-bottom-color: #d3d3d3;
|
||||
padding: 4px;
|
||||
margin: 0em;
|
||||
}
|
||||
|
||||
div.sidebar { whitespace: pre;
|
||||
font-family: monospace;
|
||||
background-color: #A6D5EC;
|
||||
border-top-width: 1px;
|
||||
border-top-style: single;
|
||||
border-top-color: #d3d3d3;
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-style: single;
|
||||
border-bottom-color: #d3d3d3;
|
||||
padding: 4px;
|
||||
margin: 0em;
|
||||
}
|
||||
|
||||
div.informalexample pre { whitespace: pre;
|
||||
font-family: monospace;
|
||||
border-top-width: 0px;
|
||||
border-bottom-width: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
div.caution h3 { color:#CC3333; }
|
||||
|
||||
div.note h3 { color:#000066; }
|
Reference in New Issue
Block a user