1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 13:26:05 +02:00
tldr/pages/linux/ip-maddress.md

21 lines
450 B
Markdown
Raw Normal View History

2025-01-28 16:07:32 +02:00
# ip maddress
> Manage multicast addresses.
> More information: <https://manned.org/ip-maddress>.
- List multicast addresses and how many programs are subscribed to them:
`ip maddress`
- List device specific addresses:
`ip maddress show dev {{eth0}}`
- Join a multicast group statically:
`sudo ip maddress add {{33:33:00:00:00:02}} dev {{eth0}}`
- Leave a static multicast group:
`sudo ip maddress delete {{33:33:00:00:00:02}} dev {{eth0}}`