netstat Flashcards

1
Q

netstat

-a

A

Displays all active TCP connections and the TCP and UDP ports on which the computer is listening.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

netstat

-b

A

Displays the executable involved in creating each connection or listening port.

In some cases well-known executables host multiple independent components, and in these cases the sequence of components involved in creating the connection or listening port is displayed. In this case the executable name is in [] at the bottom, on top is the component it called, and so forth until TCP/IP was reached. Note that this option can be time-consuming and will fail unless you have sufficient permissions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

-e

A

Displays Ethernet statistics, such as the number of bytes and packets sent and received. This parameter can be combined with -s.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

-n

A

Displays active TCP connections, however, addresses and port numbers are expressed numerically and no attempt is made to determine names.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

-o

A

Displays active TCP connections and includes the process ID (PID) for each connection. You can find the application based on the PID on the Processes tab in Windows Task Manager. This parameter can be combined with -a, -n, and -p.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

-p <Protocol></Protocol>

A

Shows connections for the protocol specified by Protocol. In this case, the Protocol can be tcp, udp, tcpv6, or udpv6. If this parameter is used with -s to display statistics by protocol, Protocol can be tcp, udp, icmp, ip, tcpv6, udpv6, icmpv6, or ipv6.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

-s

A

Displays statistics by protocol. By default, statistics are shown for the TCP, UDP, ICMP, and IP protocols. If the IPv6 protocol is installed, statistics are shown for the TCP over IPv6, UDP over IPv6, ICMPv6, and IPv6 protocols. The -p parameter can be used to specify a set of protocols.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

-r

A

Displays the contents of the IP routing table. This is equivalent to the route print command.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

netstat -e -s

A

To display both the Ethernet statistics and the statistics for all protocols

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

netstat -s -p tcp udp

A

To display the statistics for only the TCP and UDP protocols

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

netstat -o 5

A

To display active TCP connections and the process IDs every 5 seconds

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

netstat -n -o

A

To display active TCP connections and the process IDs using numerical form

How well did you know this?
1
Not at all
2
3
4
5
Perfectly