Enable snooping on home and set querier interval to 120 seconds, fix typo
This commit is contained in:
parent
0cb4c29392
commit
cc62fe6dad
10
router.sh
10
router.sh
|
@ -21,6 +21,11 @@ new_if_phys "vnet5"
|
|||
# Bridges
|
||||
new_if_bridge "home"
|
||||
bridge_property 'stp_state' "home"
|
||||
bridge_property 'mcast_snooping' "home"
|
||||
bridge_property 'mcast_querier' "home"
|
||||
bridge_property 'mcast_querier_interval' "home" '120' ''
|
||||
bridge_property 'mcast_stats_enabled' "home"
|
||||
bridge_property 'mcast_mld_version' "home" '2' ''
|
||||
new_forward "home"
|
||||
new_if_slave "home" "vnet1"
|
||||
new_if_slave "home" "phys3"
|
||||
|
@ -33,6 +38,7 @@ new_if_bridge "f33d"
|
|||
bridge_property 'stp_state' "f33d"
|
||||
bridge_property 'mcast_snooping' "f33d"
|
||||
bridge_property 'mcast_querier' "f33d"
|
||||
bridge_property 'mcast_querier_interval' "f33d" '120' ''
|
||||
bridge_property 'mcast_stats_enabled' "f33d"
|
||||
bridge_property 'mcast_mld_version' "f33d" '2' ''
|
||||
if_lladdress "f33d" '02:00:00:00:f3:3d'
|
||||
|
@ -43,7 +49,8 @@ new_if_bridge "b00b"
|
|||
bridge_property 'stp_state' "b00b"
|
||||
bridge_property 'mcast_snooping' "b00b"
|
||||
bridge_property 'mcast_querier' "b00b"
|
||||
bridge_property 'mcast_stats_enabled' "d00d"
|
||||
bridge_property 'mcast_querier_interval' "b00b" '120' ''
|
||||
bridge_property 'mcast_stats_enabled' "b00b"
|
||||
bridge_property 'mcast_mld_version' "b00b" '2' ''
|
||||
if_lladdress "b00b" '02:00:00:00:b0:0b'
|
||||
addr_v6_static_if "b00b" "2a04:5b81:2060:b00b::1/64"
|
||||
|
@ -55,6 +62,7 @@ new_if_bridge "d00d"
|
|||
bridge_property 'stp_state' "d00d"
|
||||
bridge_property 'mcast_snooping' "d00d"
|
||||
bridge_property 'mcast_querier' "d00d"
|
||||
bridge_property 'mcast_querier_interval' "d00d" '120' ''
|
||||
bridge_property 'mcast_stats_enabled' "d00d"
|
||||
bridge_property 'mcast_mld_version' "d00d" '2' ''
|
||||
if_lladdress "d00d" '02:00:00:00:d0:0d'
|
||||
|
|
Loading…
Reference in New Issue