<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Sky's blog

    我和我追逐的夢

    常用鏈接

    統(tǒng)計

    其他鏈接

    友情鏈接

    最新評論

    netstat 用法詳細資料--英文版本

        google到的一份詳細的netstat資料,可惜是英文版本,先保存下來慢慢細看,有時間再翻譯出一個中文版本來.
    原文地址: http://ibgwww.colorado.edu/~lessem/psyc5112/usail/man/linux/netstat.8.html
    netstat - Display active network connections
    SYNOPSIS netstat [[-a | [-t | -u | -w]] [-n | -o] | -x] [-c]
    netstat -i [-a] [-c]
    netstat -r [-c] [-n]
    netstat -v
    DESCRIPTION
    Netstat displays the status of network connections on either TCP, UDP, RAW
    or UNIX sockets to the system. By default, netstat only displays status
    on active socketswhich are not in the LISTEN state (i.e. connections to active processes). To obtain information about the kernel routing table,
    netstat may be invoked with the option -r
    Netstat's display includes the following information for each socket:
    Proto The protocol (either TCP or UDP) used by the socket.
    Recv-Q The count of bytes not copied by the user program connected to this socket.
    Send-Q The count of bytes not acknoledged by the remote host.
    Local Address The local address (local hostname) and port number of the
    socket. Unless the -n switch is given, the socket address
    is resolved to its canonical hostname, and the port number is translated into the corresponding service name.
    Foreign Address The remote address (remote hostname) and port number of he socket. As with the local address:port, the -n switch turns off hostname and service name resolution.
    (State)
    The state of the socket. Since there are no states in RAW and usually no states used in UDP, this row may be left

    ESTABLISHED The socket has an established connection.
    SYN_SENT The socket is actively attempting to establish a connection.
    SYN_RECV The connection is being initialized.
    FIN_WAIT1 The socket is closed, and the connection is shutting down.
    FIN_WAIT2 Connection is closed, and the socket is waiting for a shutdown from the remote end.
    TIME_WAIT The socket is waiting after close for remote shutdown retransmission.
    CLOSED
    The socket is not being used.
    CLOSE_WAIT The remote end has shut down, waiting for the socket to close.
    LAST_ACK The remote end shut down, and the socket is closed. Waiting for acknowledgement.
    LISTEN
    The socket is listening for incoming connections.
    CLOSING Both sockets are shut down but we still don't have
    all our data sent.
    UNKNOWN The state of the socket is unknown.
    If netstat is invoked with the option -o , additional information will be displayed behind the state info. These informations are shown like this: "rx-retransmission byte count" "tx-retransmission byte count" "timer state" "(time/backoff)". Timer state may now be either on or off. The time (in seconds) being displayed is how long it will take the timer to expire. All these options are subject to be removed in later releases of the NET software.
    Being invoked with the option -x , netstat displys a list Netstat's display includes the following information for each socket:
    Proto The protocol (usually unix) used by the socket.
    RefCnt The reference count (i.e. attached processes via this socket).
    Flags The only displayed flag is SO_ACCEPTON (displayed as ACC) otherwise left blank. SO_ACCECPTON is used on unconnected sockets if their corresponding processes are waiting for a connect request. The other flags are not of normal inter- est and not displayed.
    Type There are several types of socket access:
    SOCK_DGRAM The socket is used in Datagram (connectionless) mode.
    SOCK_STREAM This is a stream (connection) socket.
    SOCK_RAW The socket is used as a raw socket.
    SOCK_RDM This one serves reliably-delivered messages.
    SOCK_SEQPACKET This is a sequential packet socket.
    SOCK_PACKET RAW interface access socket.
    UNKNOWN Who ever knows, what the future will bring us just fill in here :-)
    State This field will contain one of the following Keywords:
    LISTENING The socket is listening for a connection request.
    UNCONNECTED The socket is not connected to another one.
    CONNECTING The socket is about to establish a connection.
    CONNECTED The socket is connected.
    DISCONNECTING The socket is disconnecting.
    UNKNOWN This state should never happen.
    Path This displays the path name as which the corresponding processes attached to the socket.
    The network routing table (invoked with netstat -r ) shows up the following information:
    Destination net/address The destination adress of a resolved host or hand-entered network is displayed. Unless the option -n is given, the hosts or nets are resolved. An entry named "default" shows up the default route for the kernel.
    Gateway address
    If there is no Asterisk ('*') displayed - any data will be routed to the dedicated gateway.
    Flags
    Possible routeing flags are: U This route is useable G Destination is a gateway H Destination is a Host entry R Route will be reinstated after time-out D This one is created dynamically (by redirection) M This one is modified dynamically (by redirection)
    RefCnt
    Use How many times this route was used yet
    Iface This is the name of the Interface, where this route belongs to The device statistics table (invoked with netstat -i ) displays information about the interfaces:
    Iface The name this interface.
    MTU Maximum size for transmission on this interface. This should be the size of data transferred on this interface without interface specific headers.
    RX-OK error free received packets for this interface.
    RX-ERR buggy received packets.
    RX-DRP dropped received packets (due to memory lack ?).
    RX-OVR packets that we were unable to receive that fast way.
    TX-OK error free transmitted packets for this interface.
    TX-ERR buggy transmitted packets.
    TX-DRP dropped transmitteded packets.
    TX-OVR packets that we were unable to transmit.
    Flags
    The following flags may occur on the given interfaces: A This interface will receive all Multicast adresses. B Broadcasts are ok here. D Debugging is turned on.. M all packets are received (Promisc-Mode). N Trailers are avoided. O No Addres Resolution Protocol on this Interface. P Interface is a Point-to-Point connection. R Interface is running. U Interface is up. Options
    -a Display information about all internet sockets, i.e. TCP, UDP, RAW and UNIX including those sockets that are listening only.
    -i Show network devices statistics. -c Generate a continuous listing of network status: network status is displayed every second until the program is interrupted.
    -n Causes netstat not to resolve hostnames and service names when displaying remote and local address and port information.
    -o Display timer states, expiration times and backoff state. -r Display kernel routing table. -t Display information about TCP sockets only, including those that are listening. -u Display information about UDP sockets only. -v Print version information. -w Display information about raw sockets. -x Display information about UNIX domain sockets.
    FILES
    /etc/services -- The services translation file /proc/net/socket -- devices information /proc/net/raw -- RAW socket information /proc/net/tcp -- TCP socket information /proc/net/udp -- UDP socket information /proc/net/unix -- Unix domain socket information
    BUGS
    Occasionally strange information may appear if a socket changes as it is viewed. This is unlikely to occur.
    AUTHORS
    The netstat user interface was written by Fred Baumgarten <dc6iq@insu1.etec.uni-karlsruhe.de> the man page basically by Matt Welsh <mdw@tc.cornell.edu>. It was updated by Alan Cox <Alan.Cox@linux.org> but could do with a bit more work.

    posted on 2008-02-22 11:22 sky ao 閱讀(1840) 評論(0)  編輯  收藏 所屬分類: linux

    主站蜘蛛池模板: 精品免费国产一区二区| 暖暖日本免费中文字幕| 免费在线观看视频a| 免费女人高潮流视频在线观看| 亚洲AV女人18毛片水真多| 亚洲国产成人综合| 337p欧洲亚洲大胆艺术| 久久久久久久亚洲精品| 亚洲伊人久久综合影院| 久久久精品国产亚洲成人满18免费网站 | 亚洲日韩一页精品发布| 亚洲综合最新无码专区| 国产精品亚洲二区在线观看| 国产成人涩涩涩视频在线观看免费 | 久久久久久AV无码免费网站下载| 牛牛在线精品观看免费正 | 无码视频免费一区二三区| 亚洲免费综合色在线视频| 成人免费视频观看无遮挡| 四色在线精品免费观看| 亚洲精品一级无码中文字幕| 久久国产成人亚洲精品影院| 亚洲精品国产精品乱码在线观看| 亚洲热妇无码AV在线播放| 亚洲性色高清完整版在线观看| 亚洲网址在线观看| 亚洲Aⅴ在线无码播放毛片一线天 亚洲avav天堂av在线网毛片 | 亚洲黄色在线观看视频| 久久国产亚洲精品| a级毛片毛片免费观看永久| 日本一道本不卡免费 | 中文字幕亚洲码在线| 一级毛片免费在线播放| 亚洲免费观看视频| 少妇亚洲免费精品| 久久久无码精品亚洲日韩京东传媒| 亚洲性无码一区二区三区| 国产又黄又爽胸又大免费视频 | 亚洲精品美女久久久久9999| 无遮挡呻吟娇喘视频免费播放| 1000部免费啪啪十八未年禁止观看|