EdTheLad wrote: » This should work in theory: Use the "ip-helper" command in global config mode to specify the remote destination ip addresses you want to forward broadcasts to.Create an extended access-list on the 3750 to only allow traffic to certain ports. The access-list will look something like this, allow udp ports 6112 in both directions, block any ip traffic with a broadcast destination address, allow all other ip traffic. ip access-list extended AllowPort6112 permit udp any any eq 6112 permit udp any eq 6112 any deny ip any x.x.x.255 0.0.0.0 permit ip any any
kristianbrown wrote: » Hmm, thinking one thing here.. interface vlan 10 ip helper-address 255.255.255.255 ip directed-broadcast If i use this on all vlan interfaces, will this work? Instead of typing in the GW ip on every single vlan interface..
In this setup we have about 800 computers, on about 30 different vlans
kryolla wrote: » That is a lot of helper addresses
robertl wrote: » Can any one explain the difference between "ip helper-address" and "ip helper-address global"?