mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-14 17:55:52 +02:00
ip-maddress: add page (#15595)
This commit is contained in:
parent
2dcf4b06e1
commit
aca9f7da31
1 changed files with 20 additions and 0 deletions
20
pages/linux/ip-maddress.md
Normal file
20
pages/linux/ip-maddress.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# 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}}`
|
Loading…
Add table
Reference in a new issue