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】242. Valid Anagram 解题报告(Java & Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 字典统计词频 排序 日期 [LeetCode] 题目地址:ht ...
- 【LeetCode】225. Implement Stack using Queues 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 日期 题目地址:https://leetcode.c ...
- 【LeetCode】117. Populating Next Right Pointers in Each Node II 解题报告(Python)
[LeetCode]117. Populating Next Right Pointers in Each Node II 解题报告(Python) 标签: LeetCode 题目地址:https:/ ...
- 深入理解Java虚拟机一:运行时数据区域
根据<Java虚拟机规范(第2版)>的规定,Java虚拟机管理的内存包括下图几个运行时数据区域: 1.程序计数器 程序计数器(Program Counter Register ...
- Kernel Methods for Deep Learning
目录 引 主要内容 与深度学习的联系 实验 Cho Y, Saul L K. Kernel Methods for Deep Learning[C]. neural information proce ...
- Java练习习题,百钱买百鸡问题,用100文钱买鸡,公鸡5文钱一只,母鸡3文钱一只,小鸡3只1文钱
需求说明: 用100文钱买鸡,公鸡5文钱一只,母鸡3文钱一只,小鸡3只1文钱,要求公鸡.母鸡.小鸡都必须要有,刚好用完100文钱,公鸡.母鸡.小鸡的数量之和也是100. public class te ...
- 论文翻译:2020_Acoustic Echo Cancellation Based on Recurrent Neural Network
论文地址:https://ieeexplore.ieee.org/abstract/document/9306224 基于RNN的回声消除 摘要 本文提出了一种基于深度学习的语音分离技术的回声消除方法 ...
- TortoiseGit使用ssh-keygen生成的私钥
1.说明 使用TortoiseGit自带的PuTTY Key Generator工具, 把ssh-keygen生成的私钥转换为Putty使用的.ppk文件, 然后在拉取Git代码时, 加载对应的.pp ...
- 树形DP总结基础
概念 应用 例题 最大独立子集 没有上司的晚会 题目描述 分析 树的重心 题目描述 分析 树的直径 概念 题目描述 分析 概念 给定一棵有N个节点的树(通常是无根树,也就是有N-1条无向边),我们可以 ...
- Linux登录时,下游回显非常慢
问题现象 登录linux时,远程连接正常,[root@...]回显非常慢,在执行脚本时,很容易导致命令下发错乱 原因分析 家目录下的.bash_history文件太大,导致每次登陆时读取这个文件耗时太 ...