aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig
diff options
context:
space:
mode:
authorLukas Nykryn <lnykryn@redhat.com>2014-09-16 13:23:53 +0200
committerLukas Nykryn <lnykryn@redhat.com>2014-10-24 11:54:23 +0200
commit26ba04be55d38d4bc1351078b3a028d129531f6f (patch)
tree65b49596a923e84329a1605ecef80df238ebdc34 /sysconfig
parent864e1cd0e9c64d65ceb42d98f84e34b1fc44951e (diff)
downloadinitscripts-26ba04be55d38d4bc1351078b3a028d129531f6f.tar
initscripts-26ba04be55d38d4bc1351078b3a028d129531f6f.tar.gz
initscripts-26ba04be55d38d4bc1351078b3a028d129531f6f.tar.bz2
initscripts-26ba04be55d38d4bc1351078b3a028d129531f6f.tar.xz
initscripts-26ba04be55d38d4bc1351078b3a028d129531f6f.zip
ifup: also set multicast_snooping after the bridge is up
Diffstat (limited to 'sysconfig')
-rwxr-xr-xsysconfig/network-scripts/ifup-eth2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifup-eth b/sysconfig/network-scripts/ifup-eth
index ed1a47a2..14ada9fb 100755
--- a/sysconfig/network-scripts/ifup-eth
+++ b/sysconfig/network-scripts/ifup-eth
@@ -292,7 +292,7 @@ if [ "${TYPE}" = "Bridge" ]; then
for arg in $BRIDGING_OPTS ; do
key=${arg%%=*};
value=${arg##*=};
- if [ "${key}" = "multicast_router" -o "${key}" = "hash_max" ]; then
+ if [ "${key}" = "multicast_router" -o "${key}" = "hash_max" -o "${key}" = "multicast_snooping" ]; then
echo $value > /sys/class/net/${DEVICE}/bridge/$key
fi
done