常用的网络命令

常用的网络命令

一、ping命令

ping www.woniuxy.com:测试是否也wounmiuxy.com的服务器连通,同时可以查看响应时间,及响应时间的分布情况
ping -i 3 www.wouniuxy.com:每3秒访问一次 
ping -f www.wouniuxy.com:快速发送ICMP数据包,进行压力测试、
ping -f -c 200 www.wouniuxy.com:设定具体的发包数量,用于快速检测响应时间等数据 、
ping -s 1024 www.wouniuxy.com:设定每个ICMP数据包的大小

二、IP命令

ip addr:查看网卡及IP信息
ifconfig:同上

ip neigh:ARP协议,查看相邻计算机
arp -an:同上

ip link:查看网卡MAC地址等

ip -s link:查看网卡的收发数据包大小,RX:收,TX:发
ifconfig -s:同上

ip addr add 192.112.225/24 dev  ens33:临时为ens33网卡添加一个地址,systemctl restart network后消失
ifconfig ens33 192.168.112.225:修改临时地址

ip addr del 192.168.112.225/24 dev ens33:删除一个Ip地址

#查看路由IP地址
ip rout
route
netstat -r 
route -n

ip rout add default via 192.168.112.1: 为当前网络添加路由(网关)
rout add default gw 192.168.112.1:同上

ip rout del ddefault via 192.168.112.1:删除路由地址
rout del default gw 192.168.112.1:同上

ip rout flush cache:刷新路由表

ip link set ens33 up:启动网卡
ifconfig ens33 up: 同上,down表示关闭

ss -anl:查看当前系统中的端口占用情况
netstat -anlop:同上

image-20220917133638739

要使用老版本命令,必须安装net-tools: yum install net-tools

三、traceroute 命令

Linux:
traceroute www.woniuxy.com:跟踪到达woniuxy的所有路由节点和路径,默认支持30个跃点

Windows:
tracert www.wouniuxy.com:同上

四、curl命令

curl http://www.wouniucy.com/
curl -o woniuxy.html http://www.woumniuxy.com/
curl -O http://www.wouniuxy.com/train/index.html

五、wget命令

  • 部分参数:

    -c:断点续传

    -b:后台下载

上一篇
下一篇