作者:杜伟丿2552 | 来源:互联网 | 2017-11-06 16:02
1,ifconfig 用于显示当前主机状态为激活的网络接口信息。ifconfig -a 显示所有.
2,route 显示路由信息
3,netstat -r显示路由信息.
4,nslookup 查询域名服务器和交互。
5,配置动态IP
/etc/network/interfaces
auto eth0
iface eth0 inet dhcp 用于设置网络接口eth0通过DHCP协议自动获取Ip;
如果重新配置网络需要重启动网络服务。如/etc/init.d/networking restart
6,配置静态IP 地址
iface eth0 inet static
address 192.
netmask 255.255.255.0
gateway
如果要是配置生效 :ifdown eth0
ifup eth0 主要是重启网络接口
ifconfig eth0 192.168.0.1 netmask 255.255.255.0
ifconfig eth0
临时配置IP
手动设置默认网关
ruote -del default gw 192.168.1.1
route -add default gw 192.168.1.1
设置DNS服务器地址
/etc/resolv.conv
最多指定3个DNS 服务地址