1834608 Members
2693 Online
110069 Solutions
New Discussion

multicast

 
manoj_pu
Regular Advisor

multicast


Hi,

Is it possible to disable multicasting so that I can reduce network trafic.

"ifconfig" command shows MULTICAST with ethernet interface what does it means??

#ifconfig lan0
lan0: flags=843
inet 190.9.200.200 netmask ffff0000 broadcast 190.9.255.255


Any hint on this greatly appreciable

Manoj
Leave with out tense and try best you gets result
7 REPLIES 7
K.Vijayaragavan.
Respected Contributor

Re: multicast

I think we can disable multicast at port level in the switch/router to where your system is connected.

see the link for more info on this.
http://www.cisco.com/univercd/cc/td/doc/product/lan/cat5000/rel_5_2/config/bcastsup.htm#10299

-Vijay
"Let us fine tune our knowledge together"
harry d brown jr
Honored Contributor

Re: multicast

Personally I'd wait for Rick Jones to respond, because there might be some ndd setting, but until then look at mrouted.


live free or die
harry
Live Free or Die
K.Vijayaragavan.
Respected Contributor

Re: multicast

see the commands,

#ndd -h unsupported

or

#ndd -h unsupported | grep ip_respond_to_echo_broadcast

we can disable multicast by issu ing the below mentioned command but man page of ndd says it is not suggested. But if none of the software or os part is using this then you may diable if you decide to do so.

/ndd -set /dev/ip ip_respond_to_echo_broadcast 0

-Vijay
"Let us fine tune our knowledge together"
Ron Kinner
Honored Contributor

Re: multicast

I expect all that the multicast indicates is that the NIC and its driver can handle multicasts. That means you can join a multicast group and receive a multicast broadcast. It does not mean that your PC is multicasting and loading up the LAN with extra packets.

Unless you have specifically joined a multicast group or are running mrouted and are relaying multicasts from one network to another the multicast capability of your PC has no effect on your network.

Default TTL on a multicast is 1 so it won't be routed accidentally.

You can also look at mrinfo or at the igmp stats in netstat -s to see what is going on in multicast.

Look at
lanadmin
lan
display

then compare the number of inbound unicast packets received with the number of inbound non-unicast packets received. Cisco recommends that this ratio should be about 5 to 1 or better. Look at the outbound ratio to see if your PC is contributing to the problem.

If your network is full of trash broadcasts you might need to look for Windows machines running netbeui or netware or Compaq PCs running their stupid diagnostic manager software. Put a sniffer on it and see what sort of stuff you are seeing.

If it is a performance issue then make sure that you are not relying on autonegotiate to set the speed and duplex. This should be set manually on both ends of the circuit on all circuits.

Ron