检查网路配置:
# ifconfig eth0
配置DHCP客户端:
# vim /etc/network/interfaces
加入 iface eth0 inet dhcp
强制重新获取IP
# dhclient eth0
配置静态IP地址:
# vim /etc/network/interfaces
eth0配置如下:
auto eth0
iface eth0 inet static
address 192.168.10.13
netmask 255.255.255.0
gateway 192.168.10.1
让配置生效:
保存退出后,使用重启network命令让新配置生效:
# ./network restart
也可以重启网卡让配置生效,这样不影响其他网络接口:
# ifdown eth0 或者 ifconfig eth0 down
# ifup eth0 或者 ifconfig eth0 up
临时改变IP地址:
# ifconfig eth0 192.168.10.13 netmask 255.255.255.0 up
系统重启后,会恢复interfaces中的配置
设置默认网关的方法:
1、在interfaces文件中设置
2、命令行设置
删除当前缺省网关
# route del defalt gw
手工配置缺省网关
# route add default gw 192.168.10.1
查看路由信息
# route
使用此方法,修改当即生效,重启后,则以interfaces中的配置为准。
查看主机名:
# hostname
临时修改主机名:
# hostname jerrydebianserver
永久修改主机名:
# vim /etc/hostname
写入新的主机名即可,重启后以此为准
配置DNS服务器的地址,最多可以使用3个DNS服务器
# vim /etc/resolv.conf
nameserver 192.168.10.1
nameserver 202.xxx.xxx.xxx
对“resolv.conf”的修改是即时生效的,可使用nslookup命令进行DNS服务器查询,已验证配置信息
阅读(15643) | 评论(0) | 转发(1) |