| manpages.info - online man pages | ![]() |
|||
|
netstat (1) Table of Contents
Namenetstat - show network status
Synopsis
netstat [-AaLlnW] [-f address_family | -p protocol] [-M core] [-N system]
netstat [-gilns] [-f address_family] [-M core] [-N system]
netstat -i | -I interface [-w wait] [-abdgt] [-M core] [-N system]
netstat -s [-s] [-f address_family | -p protocol] [-M core] [-N system]
netstat -i | -I interface -s [-f address_family | -p protocol] [-M core]
[-N system]
DescriptionThe netstat command symbolically displays the contents of various network-related data structures. There are a number of output formats, depending on the options for the information presented. The first form of the command displays a list of active sockets for each protocol. The second form presents the contents of one of the other network data structures according to the option selected. Using the third form, with a wait interval specified, netstat will continuously display the information regarding packet traffic on the configured network interfaces. The fourth form displays statistics for the specified protocol or address family. The fifth form displays per-interface statistics for the specified protocol or address family. The sixth form displays mbuf(9) statistics. The seventh form displays routing table for the specified address family. The eighth form displays routing statistics.
The options have the following meaning:
OutputThe default display, for active sockets, shows the local and remote addresses, send and receive queue sizes (in bytes), protocol, and the internal state of the protocol. Address formats are of the form ``host.port'' or ``network.port'' if a socket's address specifies a network but no specific host address. If known, the host and network addresses are displayed symbolically according to the databases /etc/hosts and /etc/networks, respectively. If a symbolic name for an address is unknown, or if the -n option is specified, the address is printed numerically, according to the address family. For more information regarding the Internet ``dot format'', refer to inet(3) ). Unspecified, or ``wildcard'', addresses and ports appear as ``*''.
Internet domain socket states:
CLOSED: The socket is not in use.
LISTEN: The socket is listening for incoming connections. Unconnected listening sockets like these are only displayed when using the -a option.
SYN_SENT: The socket is actively trying to establish a connection to a remote peer.
SYN_RCVD: The socket has passively received a connection request from a remote peer.
ESTABLISHED: The socket has an established connection between a local application and a remote peer.
CLOSE_WAIT: The socket connection has been closed by the remote peer, and the system is waiting for the local application to close its half of the connection.
LAST_ACK: The socket connection has been closed by the remote peer, the local application has closed its half of the connection, and the system is waiting for the remote peer to acknowledge the close.
FIN_WAIT_1: The socket connection has been closed by the local application, the remote peer has not yet acknowledged the close, and the system is waiting for it to close its half of the connection.
FIN_WAIT_2: The socket connection has been closed by the local application, the remote peer has acknowledged the close, and the system is waiting for it to close its half of the connection.
CLOSING: The socket connection has been closed by the local application and the remote peer simultaneously, and the remote peer has not yet acknowledged the close attempt of the local application.
TIME_WAIT: The socket connection has been closed by the local application, the remote peer has closed its half of the connection, and the system is waiting to be sure that the remote peer received the last acknowledgement.
The interface display provides a table of cumulative statistics regarding packets transferred, errors, and collisions. The network addresses of the interface and the maximum transmission unit (``mtu'') are also displayed.
The routing table display indicates the available routes and their status. Each route consists of a destination host or network and a gateway to use in forwarding packets. The flags field shows a collection of information about the route stored as binary choices. The individual flags are discussed in more detail in the route(8) and route(4) manual pages. The mapping between letters and flags is:
Direct routes are created for each interface attached to the local host; the gateway field for such entries shows the address of the outgoing interface. The refcnt field gives the current number of active uses of the route. Connection oriented protocols normally hold on to a single route for the duration of a connection while connectionless protocols obtain a route while sending to the same destination. The use field provides a count of the number of packets sent using that route. The interface entry indicates the network interface utilized for the route.
When netstat is invoked with the -w option and a wait interval argument, it displays a running count of statistics related to network interfaces. An obsolete version of this option used a numeric parameter with no option, and is currently supported for backward compatibility. By default, this display summarizes information for all interfaces. Information for a specific interface may be displayed with the -I option.
See Alsofstat(1) , nfsstat(1) , ps(1) , sockstat(1) , inet(4) , unix(4) , hosts(5) , networks(5) , protocols(5) , services(5) , iostat(8) , trpt(8) , vmstat(8)
HistoryThe netstat command appeared in 4.2BSD.
IPv6 support was added by WIDE/KAME project.
Files
BugsThe notion of errors is ill-defined.
|