I have multiple eoip interfaces, and would like to add them to a bridge and add them to an interface list.
This is what I have now:
Code: Select all
/interface eoip
add allow-fast-path=no mac-address=02:81:zz:zz:zz:zz name=eoip-tunnel-to-212 remote-address=\
xxxxx.sn.mynetname.net tunnel-id=355
add allow-fast-path=no mac-address=02:46:dd:dd:dd:dd name=eoip-tunnel-to-371 remote-address=\
ggggggggg.sn.mynetname.net tunnel-id=37135
/interface list member
add interface=eoip-tunnel-to-371 list=DHCPdisabled
add interface=eoip-tunnel-to-212 list=DHCPdisabled
/interface bridge port
add bridge=bridge interface=eoip-tunnel-to-212 unknown-unicast-flood=no
add bridge=bridge interface=eoip-tunnel-to-371
/interface bridge filter
add action=drop chain=forward comment="DHCP Drop " dst-port=67-68 in-interface-list=DHCPdisabled ip-protocol=udp log=yes mac-protocol=ip
This is what I would like:
Code: Select all
/interface eoip
add allow-fast-path=no mac-address=02:81:zz:zz:zz:zz name=eoip-tunnel-to-212 remote-address=\
xxxxx.sn.mynetname.net tunnel-id=355
add allow-fast-path=no mac-address=02:46:dd:dd:dd:dd name=eoip-tunnel-to-371 remote-address=\
ggggggggg.sn.mynetname.net tunnel-id=37135
/interface list member
add <ALL-EOIP-INTERFACES> [or ALL-INTERFACES-IN-'EOIP-IFACE-LIST'] list=DHCPdisabled
/interface bridge port
add bridge=bridge [ALL-EOIP-INTERFACES] or [ALL-INTERFACES-IN-'EOIP-IFACE-LIST'] or [interface-list=DHCPdisabled]
/interface bridge filter
add action=drop chain=forward comment="DHCP Drop " dst-port=67-68 in-interface-list=DHCPdisabled ip-protocol=udp log=yes mac-protocol=ip