1、 查看网络接口主要使用 ifconfig 命令,通常使用这 3 种查看方式:ifconfig、ifconfig -a、ifconfig 网络接口名查看及测试路由纪录Kernel IP routing tableDestination Gateway Genmask Flags Metric Ref Use Iface192.168.4.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth00.0.0.0 192.168.4.1 0.0.0.0 UG 0 0 0 eth0 路由表时输出结果中
2、关键字段的含义Destination(目标地址) 、Gateway(网关址) 、Genmask(目标地址的掩码) 、Iface(接口名称)查看及设置主机的 ARP 缓存表rootlocalhost # arp -nAddress HWtype HWaddress Flags Mask Iface192.168.4.1 ether 00:0C:29:99:32:C5 C eth0192.168.4.8 ether 00:0C:29:99:46:E8 C eth0 设置网络接口的 ip 地址、子网掩码格式:ifconfig 接口名 ip 地址 netmask 子网掩码ifconfig 网络接口 i
3、p 地址/掩码长度 禁用或者重新激活网卡格式:ifconfig 网络接口 upifconfig 网络接口 down 设置虚拟网络接口格式:ifconfig 接口名:序号 IP 地址删除路由表中的默认网关记录格式:route del default gw IP 地址向路由表中添加默认网关记录格式:route add default gw IP 地址添加到指定网段的路由记录格式:route add -net 网段地址 gw IP 地址删除到指定网段的路由记录格式:route del -net 网段地址修改 eth1MAC 地址Ifconfig eth1 downIfconfig eth1 hw e
4、the 00:0c:14:27:47:45更改配置文件vi/etc/sysconfig/network-scripts/ifcfg-eth0DEVICE=eth0ONBOOT=yesBOOTPROTO=staticIPADDR=192.168.4.1NETMASK=255.255.255.0GATEWAY=192.168.4.254rootlocalhost # ifdown eth0 ; ifup eth0让他生效/etc/init.d/network 脚本文件用途:重新加载网络服务,设置相关网络参数格式:/etc/init.d/network 控制参数service network 控制参
5、数常用控制参数start:启动服务stop:终止服务restart:重新启动服务程序reload:仅重新加载配置status:查看服务状态主机名称配置文件rootlocalhost # vi /etc/sysconfig/networkNETWORKING=yesNETWORKING_IPV6=noHOSTNAME=LinServerrootlocalhost # reboot域名服务器配置文件rootlocalhost # vi /etc/resolv.confsearch localdomainnameserver 192.168.4.1nameserver 202.106.0.20nameserver 202.106.148.1