Linux multicast grouping using command line

I am trying to join / define a multicast group in linux. Is there a way to achieve this using the command line? I know that this can be done programmatically. But I would like to test my idea before programming.

PS: a route to 244.0.0.0 has already been added, and eth0 supports multicast

+4
source share
1 answer

You can use ssmping . Just provide a regular unicast address and it will try to join the fixed multicast address 232.43.211.234 by sending periodic membership reports. This application does not need to work or your multicast membership will be disabled.

+3
source

Source: https://habr.com/ru/post/1494672/


All Articles