Update cheatsheets

This commit is contained in:
ivuorinen
2025-03-08 00:14:59 +00:00
parent a812b3c467
commit f8bee5305f
111 changed files with 540 additions and 310 deletions

View File

@@ -10,16 +10,16 @@ source: https://github.com/tldr-pages/tldr.git
- List multicast addresses and how many programs are subscribed to them:
`ip maddress`
`ip {{[m|maddress]}}`
- List device specific addresses:
`ip maddress show dev {{eth0}}`
`ip {{[m|maddress]}} show dev {{eth0}}`
- Join a multicast group statically:
`sudo ip maddress add {{33:33:00:00:00:02}} dev {{eth0}}`
`sudo ip {{[m|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}}`
`sudo ip {{[m|maddress]}} delete {{33:33:00:00:00:02}} dev {{eth0}}`