mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 01:55:24 +02:00

* 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>
750 B
750 B
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}}