mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 15:13:52 +02:00
netstat: add route print example (#2566)
This commit is contained in:
parent
0c6cca1d98
commit
5eb448ebf6
2 changed files with 10 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
# netstat
|
||||
|
||||
> Displays various networks related information such as open connections, open socket ports etc.
|
||||
> Displays network-related information such as open connections, open socket ports, etc.
|
||||
|
||||
- List all ports:
|
||||
|
||||
|
@ -29,3 +29,7 @@
|
|||
- List listening TCP and UDP ports (+ user and process if you're root):
|
||||
|
||||
`netstat -lepunt`
|
||||
|
||||
- Print the routing table:
|
||||
|
||||
`netstat -nr`
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# netstat
|
||||
|
||||
> Displays various networks related information such as open connections, open socket ports etc.
|
||||
> Displays network-related information such as open connections, open socket ports, etc.
|
||||
|
||||
- List all ports:
|
||||
|
||||
|
@ -21,3 +21,7 @@
|
|||
- List information continuously:
|
||||
|
||||
`netstat -c`
|
||||
|
||||
- Print the routing table:
|
||||
|
||||
`netstat -nr`
|
||||
|
|
Loading…
Add table
Reference in a new issue