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】530. Minimum Absolute Difference in BST 解题报告(Java & Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 Java解法 Python解法 日期 题目地址:ht ...
- 【LeetCode】334. Increasing Triplet Subsequence 解题报告(Python)
[LeetCode]334. Increasing Triplet Subsequence 解题报告(Python) 标签(空格分隔): LeetCode 题目地址:https://leetcode. ...
- 1108 - Instant View of Big Bang
1108 - Instant View of Big Bang PDF (English) Statistics Forum Time Limit: 2 second(s) Memory Limi ...
- Nginx 常用配置清单
侦听端口: server {# Standard HTTP Protocollisten 80;# Standard HTTPS Protocollisten 443 ssl;# For http2l ...
- vue安装使用v-chart时报错解决方案
npm i v-charts echarts -S 1.在main.js中使用报以下错 liquidFill echarts/lib/visual/dataColor 找不到 出现此原因是因为版本问题 ...
- uniCloud爬虫获取网页数据
'use strict'; let request = require('request') let cheerio = require('cheerio'); //爬虫 let iconv = re ...
- Java初学者作业——编写Java程序,简单判断“王者荣耀”英雄收到攻击后是否死亡
返回本章节 返回作业目录 需求说明: 判断"王者荣耀"中英雄受到攻击后是否死亡? 计算"王者荣耀"中怪物攻击英雄的伤害,做出英雄死亡的判断. 如果英雄受到过量伤 ...
- k8s污点
https://www.iyunw.cn/archives/k8s-wu-dian-shi-yong-fang-fa-shi-li/ kubectl taint nodes node1 key=val ...
- 开源社区合入patch的步骤
以Ranger项目为例,说明开源社区合入patch的详细步骤. 1.reviews页面下载patch 进入到review页面:https://reviews.apache.org/r/67919/ 点 ...
- sqlserver - 某字段数据为json串, 获取该json串里的值 的详细方法
1.前言 某字段的数据为json 但是我想只获取里面的某一个值,该怎么操作? 2.笔记 (1)用 JSON_VALUE(参数1,参数2)函数 ,有两个参数, (2)参数1 为 列名 ,参数2 为 js ...