博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
netstat 查看本机开放端口
阅读量:5805 次
发布时间:2019-06-18

本文共 1421 字,大约阅读时间需要 4 分钟。

 

root@kali:~# netstat -luntp

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:22              0.0.0.0:*               LISTEN      1773/sshd       

tcp6       0      0 :::22                   :::*                    LISTEN      1773/sshd       

udp        0      0 0.0.0.0:57767           0.0.0.0:*                           1300/avahi-daemon: 

udp        0      0 0.0.0.0:68              0.0.0.0:*                           2144/dhclient   

udp        0      0 0.0.0.0:69              0.0.0.0:*                           869/inetd       

udp        0      0 0.0.0.0:50255           0.0.0.0:*                           2144/dhclient   

udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1300/avahi-daemon: 

udp6       0      0 :::16794                :::*                                2144/dhclient   

udp6       0      0 :::60098                :::*                                1300/avahi-daemon: 

udp6       0      0 :::5353                 :::*                                1300/avahi-daemon: 

 

-l, --listening

       Show only listening sockets.  (These are omitted by default.)

--tcp, -t

--udp, -u

--numeric , -n

       Show numerical addresses instead of trying to determine symbolic host,  port or user names

-p, --program

       Show the PID and name of the program to which each socket belongs

 

不加 -l 显示当前活跃的网络连接

root@kali:~# netstat -untp

Active Internet connections (w/o servers)

Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name

tcp        0      0 192.168.1.107:22        192.168.1.103:58318     ESTABLISHED 2243/0 

 

 

OSX 下查看端口占用情况

netstat -ant | grep $port

// 查看80端口被谁占用

sudo lsof -i :80

netstat -anp tcp | grep 80

如下命令可以直接结束占用端口的所有进程:

lsof
-P |
grep
':80'
|
awk
'{print $2}'
|
xargs
kill
-9

http://www.qinbin.me/mac%E4%B8%8B%E6%9F%A5%E7%9C%8B%E7%AB%AF%E5%8F%A3%E6%98%AF%E5%90%A6%E8%A2%AB%E5%8D%A0%E7%94%A8/

转载于:https://www.cnblogs.com/hangj/p/4993145.html

你可能感兴趣的文章
图解Ajax工作原理
查看>>
oracle导入导出小记
查看>>
聊一聊log4j2配置文件log4j2.xml
查看>>
NeHe OpenGL教程 第七课:光照和键盘
查看>>
修改上一篇文章的node.js代码,支持默认页及支持中文
查看>>
Php实现版本比较接口
查看>>
删除设备和驱动器中软件图标
查看>>
第四章 TCP粘包/拆包问题的解决之道---4.1---
查看>>
html语言
查看>>
从源码看集合ArrayList
查看>>
spring-boot支持websocket
查看>>
菜鸟笔记(一) - Java常见的乱码问题
查看>>
我理想中的前端工作流
查看>>
记一次Git异常操作:将多个repository合并到同一repository的同一分支
查看>>
CodeIgniter 3.0 新手捣鼓源码(一) base_url()
查看>>
Chrome 广告屏蔽功能不影响浏览器性能
查看>>
vSphere 6将于2月2日全球同步发表
查看>>
Android状态栏实现沉浸式模式
查看>>
让你的APP实现即时聊天功能
查看>>
iOS 绝对路径和相对路径
查看>>