1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-28 15:15:27 +02:00
tldr/pages/linux/ip-maddress.md

25 lines
559 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 {{[m|maddress]}}`
2025-01-28 16:07:32 +02:00
- List device specific addresses:
`ip {{[m|maddress]}} {{[s|show]}} dev {{ethX}}`
2025-01-28 16:07:32 +02:00
- Join a multicast group statically:
`sudo ip {{[m|maddress]}} {{[a|add]}} {{33:33:00:00:00:02}} dev {{ethX}}`
2025-01-28 16:07:32 +02:00
- Leave a static multicast group:
`sudo ip {{[m|maddress]}} {{[d|delete]}} {{33:33:00:00:00:02}} dev {{ethX}}`
2025-03-26 00:36:41 +02:00
- Display help:
`ip {{[m|maddress]}} {{[h|help]}}`