网络 - (以太网和WIFI无线) 


1、设置IP地址

/etc/sysconfig/network-scripts/

ifconfig eth0 显示一个以太网卡的配置 


IP add

cat ifcfg-bond0  查看绑定网卡0的信息

vi ifcfg-bond0 编辑网卡ip信息

i 回车

esc

 如果保存退出文件 就是 :wq  不保存退出 :q   不保存强制退出 :q!

ifup eth0 启用一个 'eth0' 网络设备 

ifdown eth0 禁用一个 'eth0' 网络设备 

service network restart


2、路由常用

traceroute 192.168.11.131 测试路由

/sbin  目录下执行

route -n 查看本机路由信息

ifconfig eth0 192.168.1.1 netmask 255.255.255.0 控制IP地址 

ifconfig eth0 promisc 设置 'eth0' 成混杂模式以嗅探数据包 (sniffing) 

dhclient eth0 以dhcp模式启用 'eth0' 

route -n show routing table 

route add -net 0/0 gw IP_Gateway configura default gateway 

route add -net 192.168.0.0 netmask 255.255.0.0 gw 192.168.1.1 configure static route to reach network '192.168.0.0/16' 

route del 0/0 gw IP_gateway remove static route