forked from extern/shorewall_code
Add 'brctl show' output to the status command
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@1638 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
d8d466530f
commit
59f76c7d49
@ -56,3 +56,5 @@ Changes in 2.0.9
|
|||||||
1) Corrected setup_tc1() handling of the PROTO column.
|
1) Corrected setup_tc1() handling of the PROTO column.
|
||||||
|
|
||||||
2) Added warning about ADD_SNAT_ALIASES in the masq file.
|
2) Added warning about ADD_SNAT_ALIASES in the masq file.
|
||||||
|
|
||||||
|
3) Added "brctl show" to the status command.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Shorewall 2.0.8
|
Shorewall 2.0.9
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
Problems Corrected in version 2.0.4
|
Problems Corrected in version 2.0.4
|
||||||
@ -125,6 +125,12 @@ Problems Corrected in version 2.0.9
|
|||||||
1) Previously, an empty PROTO column or a value of "all" in that column
|
1) Previously, an empty PROTO column or a value of "all" in that column
|
||||||
would cause errors when processing the /etc/shorewall/tcrules file.
|
would cause errors when processing the /etc/shorewall/tcrules file.
|
||||||
|
|
||||||
|
New Fewatures in version 2.0.9
|
||||||
|
|
||||||
|
1) The "shorewall status" command now includes the output of "brctl
|
||||||
|
show" if the bridge tools are installed.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -885,6 +885,14 @@ case "$1" in
|
|||||||
echo "IP Configuration"
|
echo "IP Configuration"
|
||||||
echo
|
echo
|
||||||
ip addr ls
|
ip addr ls
|
||||||
|
|
||||||
|
if qt which brctl; then
|
||||||
|
echo
|
||||||
|
echo "Bridges"
|
||||||
|
echo
|
||||||
|
brctl show
|
||||||
|
fi
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "Routing Rules"
|
echo "Routing Rules"
|
||||||
echo
|
echo
|
||||||
|
Loading…
Reference in New Issue
Block a user