netstat 显示当前网络连接的统计信息

C:\Users\Administrator\Desktop\hsqldb-2.3.2\data>netstat -h

Displays protocol statistics and current TCP/IP network connections.

NETSTAT [-a] [-b] [-e] [-f] [-n] [-o] [-p proto] [-r] [-s] [-t] [interval]

-a   Displays all connections and listening ports.显示所有的连接和监听的端口

-b   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.

-e   Displays Ethernet statistics. This may be combined with the -s option.

-f   Displays Fully Qualified Domain Names (FQDN) for foreign addresses.

-n   Displays addresses and port numbers in numerical form.

-o   Displays the owning process ID associated with each connection. 显示每个连接关联的进程ID

-p proto   Shows connections for the protocol specified by proto; proto may be any of: TCP, UDP, TCPv6, or UDPv6.

       显示指定协议的连接

If used with the -s option to display per-protocol statistics,

       proto may be any of:IP, IPv6, ICMP, ICMPv6, TCP, TCPv6, UDP, or UDPv6.

-r   Displays the routing table. 显示路由表

-s   Displays per-protocol statistics. 显示每个协议的统计数据

     By default, statistics are shown for IP, IPv6, ICMP, ICMPv6, TCP, TCPv6, UDP, and UDPv6;

     the -p option may be used to specify a subset of the default.

-t   Displays the current connection offload state.显示当前连接的卸载状态

interval     Redisplays selected statistics, pausing interval seconds between each display.

指定间隔多少秒,重新显示统计数据,不指定仅显示一次

        Press CTRL+C to stop redisplaying statistics.

        If omitted, netstat will print the current configuration information once.

时间: 2024-12-23 01:22:47

netstat 显示当前网络连接的统计信息的相关文章

Windows 10无法显示无线网络连接

最近刚刚升级了一下操作系统,升级到了1903版本.正好又有一个HP的打印机安装了一下.结果,发现居然无法管理无线网络了.如果看不到图,请点我. 右击选择连接,也无法显示SSID. 驱动是从这个官网下载的. https://support.hp.com/cn-zh/drivers/selfservice/hp-color-laserjet-pro-mfp-m177-series/5303438/model/5303443 检查系统日志发现,有很多错误,从时间上来看就是从安装了打印机驱动之后发生问题

netstat 输出的网络连接状态信息

netstat -n |awk '/^tcp/ {++dengyong[$NF]} END {for(a in dengyong) print a, dengyong[a]}'

统计网络连接及统计网站日志top20的IP

netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}' awk '{print $1}' timedebug_log.3 |sort|uniq -c |sort -nr |head -20 sed -i s 's#SELINUX=enforcing#SELINUX=disabled#g'  /etc/selinux/conf losf -i tcp:80

【记录】java 阿里oss频繁上传文件报错:网络连接错误,详细信息:Connection pool shut down

问题解析:由于在创建连接的时候@Bean默认是单例的,所以当我们每次上传完后,连接关闭,导致再次上传出现连接错误 解决方式:将bean设置成多例模式 @Scope(value = ConfigurableBeanFactory.SCOPE_PROTOTYPE ) 参考资料:https://www.cnblogs.com/IT-study/p/11358832.html 参考资料:https://www.jianshu.com/p/90063e263971 希望能帮助到大家! 原文地址:https

【我的Linux,我做主!】实战--使用netstat监控网络连接信息

目录:(一)netstat简介(二)netstat语法指南(三)实战演练(四)netstat小结 (一)netstat简介(1.1)在Internet的RFC标准中,netstat的定义是:netstat是在内核中访问网络连接状态及相关信息的程序,它能提供TCP连接.在TCP和UDP监听.进程内存管理的相关报告.netstat是控制台命令,是一个监控TCP/IP网络的非常有用的工具,它可以显示路由表.实际的网络连接以及每一个网络接口设备的状态信息.netstat用于显示IP.TCP.UDP和IC

负载均衡服务TCP端口健康检查成功,为什么在后端业务日志中出现网络连接异常信息?

负载均衡服务TCP端口健康检查成功,为什么在后端业务日志中出现网络连接异常信息? 原文: https://help.aliyun.com/document_detail/127193.html?spm=a2c4g.11186623.6.606.5b7a7ee5RD6Xai 问题现象: 负载均衡后端配置TCP服务端口后,后端业务日志中频繁出现类似如下网络连接异常错误信息.经进抓包分析,发现相关请求来自负载均衡服务器,同时负载均衡主动向服务器发送了RST数据包. 问题原因: 该问题和负载均衡的健康检

linux管理网络连接指令

ethtool eth0  查看 eth0对应网卡的设置 ethtool -i eth0 查看 eth0网卡的驱动信息 ethtool -S eth0 查看网卡的统计信息 ethtool -s eth0 speed 100 duplex full autoneg off 关闭自动协商功能,将网卡设置为100Mbps全双工模式 ethtool -s eth0 speed 10 duplex half autoneg off 上述修改只在当前会话有效,系统重启后恢复原有设置.要让修改后的设置在系统重

android中NetWorkReceive以及获取当前的网络连接状态详解

我们现在APP是断然很难离开网络存活下去,会有很多很频繁的网络操作,请求数据,传递数据等等,所以,我们需要对网络状态有多一点的了解. 首先,假如我们的APP在运行的时候,假如这时候用户掉线了,没有网络了,我们就应该给用户提示,然后用户连上网络了,我们这时候应该也给用户提示,这样他就可以继续玩我们的APP,我们应该怎么做了,没错,就是通过Receiver来实现,因为断网和联网系统都会发送广播,然后,我们可以收到,通过广播去判断当前的网络是否可用,具体代码如下:其中,接受广播需要的action是"a

Linux 命令 - ss: 查看套接字统计信息

命令格式 ss [options] [ FILTER ] 命令参数 -h, --help 显示帮助信息. -V, --version 显示版本信息. -n, --numeric 不解析服务名称. -r, --resolve 试着解析数字形式的地址和端口. -a, --all 显示所有的套接字. -l, --listening 显示所有监听状态的套接字. -o, --options 显示计时器信息. -e, --extended 显示详细的套接字信息. -m, --memory 显示套接字的内存使