标签:数字 组合 统计 host sock 进程 网关 color 默认
ifcfg家庭
ifconfig命令
ifconfig [interface]
# ifconfig -a
# ifconfig IFACE [up|down]
ifconfig interface [aftype] options | address ...
# ifconfig IFACE IP/mask [up]
# ifconfig IFACE IP netmask MASK
ifconfig命令立即生效
启用混杂模式:[-]promisc
route路由管理命令
查看:route -n
添加:route add
route add [-net|-host] target [netmask Nm] [gw GW] [[dev] If ]
目标:192.168.1.3 网关:192.168.0.1
route add -host 192.168.1.3/24 gw 192.168.0.1 dev eth0
目标:192.168.0.0 网关:192.168.0.1
route add -net 192.168.0.0 netmask 255.255.255.0 gw 192.168.0.1 dev eth0
route add -net 192.168.0.0/24 gw 192.168.0.1 dev eth0
默认路由,网关:192.168.0.1
route add -net 0.0.0.0 netmask 0.0.0.0 gw 192.168.0.1
route add default gw 192.168.0.1
删除:route del
route del [-net|-host] target [gw GW] [netmask Nm] [[dev] If]
目标:192.168.1.3 网关:192.168.0.1
route del -host 192.168.1.3
目标:192.168.0.0 网关:192.168.0.1
route del -net 192.168.0.0 netmask 255.255.255.0
netstat显示网络连接命令
netstat [--tcp|-t] [--udp|-u] [--raw|-w] [--listening|-l] [--all|-a]
[--numeric|-n] [--extend|-e[--extend|-e]] [--program|-p]
-t tcp相关协议
-u udp相关协议
-w socker相关
-l 显示Listen状态
-a 显示状态
-n 以数字显示IP和端口
-e 扩展格式
-p 显示相关进程及PID
常用组合:-tan,-uan,-tnl,unl
显示路由表:
netstat [--route|-r] [--numeric|-n]
-r: 显示内核路由表
-n: 数字格式
显示接口统计数据:
netstat {--interfaces|-I|-i} [iface] [--all|-a] [--extend|-e] [--program|-p] [--numeric|-n]
# netstat -i
# netstat -I IFACE
标签:数字 组合 统计 host sock 进程 网关 color 默认
原文地址:https://www.cnblogs.com/xiaohanhan/p/9277846.html