Linux查看ip的方法有很多,ifconfig是其中一种。
root@localhost ~# ifconfig ens33|grep "inet "\ > |awk '{print $2}' #awk默认分割符号为空格
ping都懂用,可是linux下,ping命令会一直ping,不会自动停止怎么办
root@localhost ~# ping www.baidu.com -c 4 #-c 次数
root@localhost ~# netstat -an|grep -v unix #显示网络连接信息,-a所有,-n实际地址 |grep -v 晓得吧,就是反向显示(不显示符合条件)
root@localhost ~# netstat -an|grep tcp
root@localhost ~# netstat -an|grep tcp|awk '{++S$NF} END {for (a in S) print a,Sa}'
root@localhost ~# netstat -an|awk '/^tcp/{++S$NF} END {for (a in S) print a,Sa}' #写法有很多种
root@localhost ~# netstat -rn
root@localhost ~# netstat -r
root@localhost ~# traceroute www.12306.com
root@localhost ~# nslookup www.baidu.com
#可以使用dig命令,查看NS(域名服务器)记。 linux上面更加详细的dig使用方法可以参考。
root@localhost ~# dig www.taobao.com
a、lsof -i:端口号 用于查看某一端口的占用情况,比如查看8000端口使用情况,lsof -i:8000
b、netstat -tunlp |grep 端口号,用于查看指定的端口号的进程情况,如查看8000端口的情况,netstat -tunlp |grep 8000
c. 查看网络端口信息:ifconfig eth0 ,
本文系外文翻译,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文系外文翻译,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。