在linux操作系统下修改ip、dns和路由配置
ifconfig eth0 新ip
然后编辑/etc/sysconfig/network-scripts/ifcfg-eth0,修改ip
一、修改ip地址
[aeolus@db1 network-scripts]$ vi ifcfg-eth0
device=eth0
onboot=yes
bootproto=static
ipaddr=219.136.241.211
netmask=255.255.255.128
gateway=219.136.241.254
二、修改网关
vi /etc/sysconfig/network
networking=yes
hostname=aaron
gateway=192.168.1.1
三、修改dns
[aeolus@db1 etc]$ vim /etc/resolv.conf
nameserver 202.96.128.68
nameserver 219.136.241.206
四、重新启动网络配置
/etc/init.d/network restart
修改ip地址
即时生效:
# ifconfig eth0 192.168.0.20 netmask 255.255.255.0
启动生效:
修改/etc/sysconfig/network-scripts/ifcfg-eth0
修改default gateway
即时生效:
# route add default gw 192.168.0.254
启动生效:
修改/etc/sysconfig/network-scripts/ifcfg-eth0
修改dns
修改/etc/resolv.conf
修改后可即时生效,启动同样有效
修改host name
即时生效:
# hostname fc2
启动生效:
修改/etc/sysconfig/network