Update cheatsheets

This commit is contained in:
ivuorinen
2025-01-29 00:16:57 +00:00
parent a9cac6aeac
commit 33856d1350
3 changed files with 74 additions and 8 deletions

25
tldr/linux/ip-maddress Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# 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}}`