博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
netstat详解
阅读量:6396 次
发布时间:2019-06-23

本文共 1749 字,大约阅读时间需要 5 分钟。

  • 前言:

  大家好,我是handsomecui:欢迎大家访问我的博客,欢迎留言拍砖,转载请注明地址:

  • 概念

   Netstat是在内核中访问网络连接状态及其相关信息的程序,它能提供TCP连接,TCP和UDP监听,进程内存管理的相关报告。      -----来自RFC(维基百科)标准解释

  • 参数定义
  -a 显示所有socket,包括已建立的连接(ESTABLISHED),也包括监听连接请求(LISTENING)的那些连接。
  -c 每隔1秒就重新显示一遍,直到用户中断它。
  -i 显示所有网络接口的信息,格式“netstat -i”。
  -l 仅列出有在 Listen (监听) 的服務状态
  -n 以网络IP地址代替名称,显示所有已建立的有效连接。
  -r显示核心路由表,格式同“route -e”。
  -t 显示TCP协议的连接情况
  -u 显示UDP协议的连接情况。
  -v 显示正在进行的工作。
  -p +name显示协议名查看某协议使用情况
  -b 显示在创建每个连接或侦听端口时涉及的可执行程序。
  -e 显示以太网统计。此选项可以与 -s 选项结合使用。
  -f 显示外部地址的完全限定域名(FQDN)。
  -o显示与每个连接相关的所属进程 ID。
  -s 显示每个协议的统计。
  -x 显示 NetworkDirect 连接、侦听器和共享端点。
  -y 显示所有连接的 TCP 连接模板。无法与其他选项结合使用。
  • 状态描述
  ESTABLISHED          The socket has an established connection.   SYN_SENT          The socket is actively attempting to establish a connection.   SYN_RECV          A connection request has been received from the network.   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 to handle packets still in the          network.   CLOSE  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 has shut down, and the socket is closed.  Waiting          for acknowledgement.   LISTEN The  socket is listening for incoming connections.  Such sockets          are  not  included  in  the  output  unless  you   specify   the          --listening (-l) or --all (-a) option.   CLOSING          Both  sockets are shut down but we still don't have all our data          sent.   UNKNOWN          The state of the socket is unknown.
 
你可能感兴趣的文章
mysql模糊查询的优化方法--亲自实践
查看>>
Exchange Server 2013 规划系列之日志容量规划、数据库容量规划
查看>>
职场必读的经典励志故事
查看>>
九爷带你了解 nginx 日志配置指令详解
查看>>
Jenkins 自动化部署上线
查看>>
unittest框架执行用例
查看>>
广州限购后首场车展明日开幕
查看>>
简述ssl协议及利用openssl创建私有CA
查看>>
React Native——react-navigation的使用
查看>>
“二子乘舟”的故事很难讲
查看>>
Luhn(卢恩)算法,检测信用卡号的合法性
查看>>
邮件服务的基本理论
查看>>
第九章 性能监控诊断
查看>>
RESTful再理解
查看>>
大数据量下的集合过滤—Bloom Filter
查看>>
Wannafly挑战赛9
查看>>
《企业云桌面实施》-小技巧-02-使用ISO光驱安装esxi6.5
查看>>
Python从菜鸟到高手(4):导入Python模块
查看>>
实战:Windows 2008 WDS使用参考计算机创建安装映像
查看>>
利用缓存来提高网站的性能(Caching to Improve the Performance of Your Website )
查看>>