mirror of
https://gitlab.com/shorewall/code.git
synced 2024-12-15 19:01:19 +01:00
Allow bridge devices in /etc/shorewall/maclist
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@704 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
6f715d015f
commit
552d738579
@ -41,3 +41,5 @@ Changes since 1.4.6
|
|||||||
|
|
||||||
19) Interface-specific dynamic blacklisting chains are now displayed by
|
19) Interface-specific dynamic blacklisting chains are now displayed by
|
||||||
"shorewall monitor".
|
"shorewall monitor".
|
||||||
|
|
||||||
|
20) Bridge interfaces (br[0-9]) can now be used in /etc/shorewall/maclist.
|
||||||
|
@ -1377,7 +1377,7 @@ setup_mac_lists() {
|
|||||||
#
|
#
|
||||||
for interface in $maclist_interfaces; do
|
for interface in $maclist_interfaces; do
|
||||||
case $interface in
|
case $interface in
|
||||||
eth*|wlan*)
|
eth*|wlan*|br[0-9])
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
fatal_error "MAC verification is only supported on ethernet and 802.11b devices: $interface"
|
fatal_error "MAC verification is only supported on ethernet and 802.11b devices: $interface"
|
||||||
|
@ -139,7 +139,9 @@ New Features:
|
|||||||
|
|
||||||
The first section of the file is optional and allows aggregation of
|
The first section of the file is optional and allows aggregation of
|
||||||
counter chains into other counter chains. It does this by allowing
|
counter chains into other counter chains. It does this by allowing
|
||||||
you to create an accounting chain hierarchy.
|
you to create an accounting chain hierarchy. See
|
||||||
|
http://shorewall.net/Accounting.html for a description of this
|
||||||
|
section.
|
||||||
|
|
||||||
The second section of the file has the following columns:
|
The second section of the file has the following columns:
|
||||||
|
|
||||||
@ -223,7 +225,8 @@ New Features:
|
|||||||
|
|
||||||
# This example shows how you can aggretate two counters. The
|
# This example shows how you can aggretate two counters. The
|
||||||
# counters being aggregated are input and output counters on
|
# counters being aggregated are input and output counters on
|
||||||
# the device 'ppp0'
|
# the device 'ppp0'. The CHAIN declarations go in the first
|
||||||
|
# section of the /etc/shorewall/accounting file.
|
||||||
|
|
||||||
CHAIN tunnel # Create a chain called 'tunnel'
|
CHAIN tunnel # Create a chain called 'tunnel'
|
||||||
CHAIN tunnelin tunnel # Create a chain called
|
CHAIN tunnelin tunnel # Create a chain called
|
||||||
@ -245,4 +248,4 @@ New Features:
|
|||||||
# 'tunnelout'
|
# 'tunnelout'
|
||||||
|
|
||||||
|
|
||||||
|
8) Bridge interfaces (br[0-9]) may now be used in /etc/shorewall/maclist.
|
||||||
|
Loading…
Reference in New Issue
Block a user