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】145. Binary Tree Postorder Traversal 解题报告 (C++&Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客:http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 递归 迭代 日期 题目地址:https://leetc ...
- 【LeetCode】Swap Nodes in Pairs 解题报告
Swap Nodes in Pairs [LeetCode] https://leetcode.com/problems/swap-nodes-in-pairs/ Total Accepted: 95 ...
- 【LeetCode】950. Reveal Cards In Increasing Order 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 模拟 日期 题目地址:https://leetcod ...
- 【LeetCode】661. Image Smoother 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 方法一:暴力解决 日期 题目地址:https://l ...
- 【LeetCode】808. Soup Servings 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 题目地址:https://leetcode.com/problems/soup-serv ...
- 【LeetCode】705. Design HashSet 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 位图法 数组法 日期 题目地址:https://le ...
- Pebbles(hdu2167)
Pebbles Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Sub ...
- 分析一个简单的goroutine资源池
分析一个简单的goroutine资源池 tunny. 从资源池中获取goroutine并进行处理的逻辑如下: tunny将goroutine处理单元封装为workWrapper,由此可以对gorout ...
- 使用.NET 6开发TodoList应用(12)——实现ActionFilter
系列导航及源代码 使用.NET 6开发TodoList应用文章索引 需求 Filter在.NET Web API项目开发中也是很重要的一个概念,它运行在执行MVC响应的Pipeline中执行,允许我们 ...
- [数据结构]常见数据结构的typedef类型定义总结
目录 数据结构类型定义: 1.线性表 线性表(顺序存储类型描述): 线性表(动态存储类型描述) 2.线性表的链式表示 双链表的结点类型描述: 静态链表结点类型的描述: 3.栈的数据结构 顺序栈的数据结 ...