1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 09:15:22 +02:00
tldr/pages/linux/conntrack.md
Managor ae436c1b00
linux/*: add option placeholders (#16192)
* batch1

* batch2

* batch3

* batch4

* Update matchpathcon.md

* Update pages/linux/arecord.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* Update pages/linux/arecord.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* Update pages/linux/arecord.md

Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
2025-04-19 21:21:53 +00:00

25 lines
750 B
Markdown

# conntrack
> Interact with the Netfilter connection tracking system.
> Search, list, inspect, modify, and delete connection flows.
> More information: <https://manned.org/conntrack>.
- List all currently tracked connections:
`conntrack {{[-L|--dump]}}`
- Display a real-time event log of connection changes:
`conntrack {{[-E|--event]}}`
- Display a real-time event log of connection changes and associated timestamps:
`conntrack {{[-E|--event]}} {{[-o|--output]}} timestamp`
- Display a real-time event log of connection changes for a specific IP address:
`conntrack {{[-E|--event]}} {{[-s|--orig-src]}} {{ip_address}}`
- Delete all flows for a specific source IP address:
`conntrack {{[-D|--delete]}} {{[-s|--orig-src]}} {{ip_address}}`