Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-20 00:20:58 +00:00
parent 846fc1563d
commit a360d4dc45
153 changed files with 493 additions and 434 deletions

View File

@@ -11,20 +11,20 @@ source: https://github.com/tldr-pages/tldr.git
- List all currently tracked connections:
`conntrack --dump`
`conntrack {{[-L|--dump]}}`
- Display a real-time event log of connection changes:
`conntrack --event`
`conntrack {{[-E|--event]}}`
- Display a real-time event log of connection changes and associated timestamps:
`conntrack --event -o timestamp`
`conntrack {{[-E|--event]}} {{[-o|--output]}} timestamp`
- Display a real-time event log of connection changes for a specific IP address:
`conntrack --event --orig-src {{ip_address}}`
`conntrack {{[-E|--event]}} {{[-s|--orig-src]}} {{ip_address}}`
- Delete all flows for a specific source IP address:
`conntrack --delete --orig-src {{ip_address}}`
`conntrack {{[-D|--delete]}} {{[-s|--orig-src]}} {{ip_address}}`