netstat in Linux
# netstat -unlt
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:6817 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:6701 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:973 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:8400 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:8402 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:31196 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:54909 0.0.0.0:* LISTEN
tcp 0 0 :::22 :::* LISTEN
udp 0 0 0.0.0.0:1024 0.0.0.0:*
udp 0 0 0.0.0.0:967 0.0.0.0:*
udp 0 0 0.0.0.0:970 0.0.0.0:*
udp 0 0 0.0.0.0:5353 0.0.0.0:*
udp 0 0 0.0.0.0:111 0.0.0.0:*
udp 0 0 0.0.0.0:631 0.0.0.0:*
udp 0 0 :::1025 :::*
udp 0 0 ::1:1045 :::*
udp 0 0 ::1:1046 :::*
udp 0 0 ::1:1047 :::*
udp 0 0 ::1:1176 :::*
udp 0 0 ::1:1178 :::*
udp 0 0 :::5353 :::*
# netstat -ano |grep -v unix
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State Timer
tcp 0 0 0.0.0.0:6817 0.0.0.0:* LISTEN off (0.00/0/0)
tcp 0 0 0.0.0.0:6701 0.0.0.0:* LISTEN off (0.00/0/0)
tcp 0 0 0.0.0.0:973 0.0.0.0:* LISTEN off (0.00/0/0)
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN off (0.00/0/0)
tcp 0 0 0.0.0.0:8400 0.0.0.0:* LISTEN off (0.00/0/0)
tcp 0 0 0.0.0.0:8402 0.0.0.0:* LISTEN off (0.00/0/0)
tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN off (0.00/0/0)
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN off (0.00/0/0)
tcp 0 0 0.0.0.0:31196 0.0.0.0:* LISTEN off (0.00/0/0)
tcp 0 0 127.0.0.1:54909 0.0.0.0:* LISTEN off (0.00/0/0)
tcp 0 0 127.0.0.1:17298 127.0.0.1:61255 ESTABLISHED off (0.00/0/0)
tcp 0 0 127.0.0.1:8402 127.0.0.1:26168 ESTABLISHED off (0.00/0/0)
tcp 0 0 127.0.0.1:43189 127.0.0.1:32463 ESTABLISHED off (0.00/0/0)
tcp 0 0 127.0.0.1:61255 127.0.0.1:17298 ESTABLISHED off (0.00/0/0)
tcp 0 0 127.0.0.1:26168 127.0.0.1:8402 ESTABLISHED off (0.00/0/0)
tcp 0 0 127.0.0.1:32463 127.0.0.1:43189 ESTABLISHED off (0.00/0/0)
tcp 0 0 :::22 :::* LISTEN off (0.00/0/0)
tcp 0 0 ::ffff:172.16.102.179:22 ::ffff:172.16.105.20:64411 ESTABLISHED keepalive (5285.31/0/0)
tcp 0 52 ::ffff:172.16.102.179:22 ::ffff:172.16.105.20:64514 ESTABLISHED on (0.23/0/0)
udp 0 0 0.0.0.0:1024 0.0.0.0:* off (0.00/0/0)
udp 0 0 0.0.0.0:967 0.0.0.0:* off (0.00/0/0)
udp 0 0 0.0.0.0:970 0.0.0.0:* off (0.00/0/0)
udp 0 0 0.0.0.0:5353 0.0.0.0:* off (0.00/0/0)
udp 0 0 0.0.0.0:111 0.0.0.0:* off (0.00/0/0)
udp 0 0 0.0.0.0:631 0.0.0.0:* off (0.00/0/0)
udp 0 0 :::1025 :::* off (0.00/0/0)
udp 0 0 ::1:1045 :::* off (0.00/0/0)
udp 0 0 ::1:1046 :::* off (0.00/0/0)
udp 0 0 ::1:1047 :::* off (0.00/0/0)
udp 0 0 ::1:1176 :::* off (0.00/0/0)
udp 0 0 ::1:1178 :::* off (0.00/0/0)
udp 0 0 :::5353 :::* off (0.00/0/0)
# netstat -nlp |grep -v unix
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:6817 0.0.0.0:* LISTEN 8150/EvMgrC
tcp 0 0 0.0.0.0:6701 0.0.0.0:* LISTEN 5272/ora_d000_orcl
tcp 0 0 0.0.0.0:973 0.0.0.0:* LISTEN 2487/rpc.statd
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 2448/portmap
tcp 0 0 0.0.0.0:8400 0.0.0.0:* LISTEN 8149/cvd
tcp 0 0 0.0.0.0:8402 0.0.0.0:* LISTEN 8150/EvMgrC
tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN 2775/vsftpd
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 2738/cupsd
tcp 0 0 0.0.0.0:31196 0.0.0.0:* LISTEN 8149/cvd
tcp 0 0 127.0.0.1:54909 0.0.0.0:* LISTEN 8149/cvd
tcp 0 0 :::22 :::* LISTEN 2757/sshd
udp 0 0 0.0.0.0:1024 0.0.0.0:* 2912/avahi-daemon:
udp 0 0 0.0.0.0:967 0.0.0.0:* 2487/rpc.statd
udp 0 0 0.0.0.0:970 0.0.0.0:* 2487/rpc.statd
udp 0 0 0.0.0.0:5353 0.0.0.0:* 2912/avahi-daemon:
udp 0 0 0.0.0.0:111 0.0.0.0:* 2448/portmap
udp 0 0 0.0.0.0:631 0.0.0.0:* 2738/cupsd
udp 0 0 :::1025 :::* 2912/avahi-daemon:
udp 0 0 ::1:1045 :::* 5240/ora_pmon_orcl
udp 0 0 ::1:1046 :::* 5272/ora_d000_orcl
udp 0 0 ::1:1047 :::* 5274/ora_s000_orcl
udp 0 0 ::1:1176 :::* 8691/rman
udp 0 0 ::1:1178 :::* 8691/rman
udp 0 0 :::5353 :::* 2912/avahi-daemon:
Active UNIX domain sockets (only servers)
Proto RefCnt Flags Type State I-Node PID/Program name Path
# netstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
172.16.102.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0
0.0.0.0 172.16.102.1 0.0.0.0 UG 0 0 0 eth0
netstat in Linux的更多相关文章
- Prometheus Node_exporter 之 Network Netstat TCP Linux MIPs
Network Netstat TCP Linux MIPs1. TCP Aborts / Tiemouts type: GraphUnit: shortLabel: ConnectionsTCPAb ...
- Mac 下netstat和linux下不一样
Linux's netstat command options and OS X(/BSD)'s have almost nothing to do with each other. Of the o ...
- linux 命令之netstat
转自:http://www.maomao365.com/?p=699 linux 命令之netstat 在linux中netstat命令的作用是查看TCP/IP网络当前所开放端口,所对应的本地和外地端 ...
- netstat 在windows下和Linux下查看网络连接和端口占用
假设忽然起个服务,告诉我8080端口被占用了,OK,我要去看一下是什么服务正在占用着,能不能杀 先假设我是在Windows下: 第一列: Proto 协议 第二列: 本地地址[ip+端口] 第三列:远 ...
- Linux:常用命令
文件压缩.解压 网络.进程 磁盘.文件使用情况 内存使用 1.文件压缩.解压 1)tar.gz文件解压: .bin.tar.gz 解压到指定目录: (指定的目录是存在的) .bin. 2)zip 文件 ...
- php面试题之四——Linux部分(高级部分)
四.Linux部分 1.请解释下列10个shell命令的用途(新浪网技术部) top.ps.mv.find.df.cat.chmod.chgrp.grep.wc top:该命令提供了实时对系统处理器状 ...
- linux全部命令
linux全部命令 一.安装和登陆命令1.进入图形界面startx 2.进入图形界面init 5 3.进入字符界面init 3 4.登陆login 5.关机poweroff-p 关闭机器的时候关闭电源 ...
- Linux查看端口使用状态及启动
LINUX网络性能之管理工具三剑客 本文是介绍管理Linux查看端口这些输出信息,该命令将显示从每个数据包传出的头和来自主机hostname对端口80的编址.Netstat -tln 命令是Linux ...
- linux 操作
正在运行的内核和系统信息 # uname -a # 获取内核版本(和BSD版本) # lsb_release -a # 显示任何 LSB 发行版版本信息 # cat /etc/SuSE-release ...
随机推荐
- 【LeetCode】426. Convert Binary Search Tree to Sorted Doubly Linked List 解题报告 (C++)
作者: 负雪明烛 id: fuxuemingzhu 个人博客:http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 递归 迭代 日期 题目地址:https://leetc ...
- 【LeetCode】412. Fizz Buzz 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目大意 解题方法 方法一:遍历判断 方法二:字符串相加 方法三:字典 日期 [L ...
- 【LeetCode】657. Robot Return to Origin 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 复数求和 counter统计次数 相似题目 参考资料 ...
- 【LeetCode】721. Accounts Merge 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 题目地址: https://leetcode.com/problems/accounts ...
- 【剑指Offer】求1+2+3+...+n 解题报告(C++)
[剑指Offer]求1+2+3+-+n 解题报告(C++) 标签(空格分隔): 剑指Offer 题目地址:https://www.nowcoder.com/ta/coding-interviews 题 ...
- 【LeetCode】819. Most Common Word 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 正则+统计 日期 题目地址:https://leet ...
- python学习第六天:python基础(dict、set)
dict dict的支持,dict全称dictionary,在其他语言中也称为map,使用键-值(key-value)存储,具有极快的查找速度 创建&取值 为什么dict查找速度这么快? 因为 ...
- 家用路由器也能充当Web服务器?路由器插件开发心得
起因 最近刚刚结束考研,开始有时间写文章了.在复习的时候中,经常忍不住折腾各种东西,于是有一天看中了我手上的华为路由器.什么?华为路由器,你可能有这样的疑问,华为路由器不是自研的芯片吗,就像我手上这台 ...
- MySQL数据操作与查询笔记 • 【第6章 聚合函数和分组查询】
全部章节 >>>> 本章目录 6.1 sum.max 和 min 聚合函数 6.1.1 聚合函数介绍 6.1.2 sum 函数 6.1.3 max/min 函数 6.2 a ...
- Ranger-Yarn插件安装
Ranger-Yarn插件ranger-0.6.0-yarn-plugin安装到Yarn的所有ResourceManager节点, 其他的NodeManager节点不需要安装. 登陆hdfs安装的用户 ...