Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

netstat -g where is group IP defined

Hello when I run netstat -g I see the following table. However, I just don't know what IP all-system.mcast.net is mapped to? Where is this being defined? Is there a file in linux to set it up? Thanking you in advance

IPv6/IPv4 Group Memberships

Interface       RefCnt Group
--------------- ------ ---------------------
lo              1      all-systems.mcast.net
eth2            1      all-systems.mcast.net
eth3            1      239.1.1.6
eth3            1      239.1.1.3
eth3            1      239.1.1.10
eth3            1      239.1.1.14
eth3            1      all-systems.mcast.net
like image 806
theuniverseisflat Avatar asked Sep 07 '25 19:09

theuniverseisflat


2 Answers

The "all-systems.mcast.net" and similar addresses are reserved for IP multicasting and are registered with IANA. They cannot be changed.

In your case all-systems.mcast.net is 224.0.0.1.

You can find these assignments http://www.iana.org/assignments/multicast-addresses/multicast-addresses.xhtml

like image 64
imps Avatar answered Sep 12 '25 20:09

imps


If you want to see only the IP addresses in this output, not the names, run netstat -ng.

like image 30
dbush Avatar answered Sep 12 '25 18:09

dbush