linux修改ip和dns
以red hat enterprise linux 5.2為例
1、最常用的給網絡卡配置ip的命令為
#ifconfig eth0 192.168.0.1 netmask 255.255.255.0 up
說明:
eth0是第乙個網絡卡,其他依次為eth1,eth*
192.168.0.1是給網絡卡配置的第乙個網絡卡配置的ip位址
netmask 255.255.255.0 配置的是子網掩碼
up是表示立即啟用
2、手動改/etc/sysconfig/network-scripts/ifcfg-eth0檔案
vi開啟ifcfg-eth0檔案
原內容:
device=eth0
bootproto=dhcp
hwaddr=00:03:47:2c:d5:40
onboot=yes
type=ethernet
改為:
device=eth0
bootproto=static
ipaddr=192.168.1.223
netmask=255.255.255.0
gateway=192.168.1.1
hwaddr=00:03:47:2c:d5:40
onboot=yes
type=ethernet
分別執行命令
/sbin/ifdown eth0
/sbin/ifup eth0
/etc/init.d/network restart //使設定的閘道器馬上生效
ifup - 代表撥號的連線命令,該命令只要在命令列或終端中可以成功執行就可以了
ifdown - 代表斷開連線的命令,同樣該命令只要在命令列或終端中可以成功執行就可以了
3、設定dns
/etc/resolv.conf
nameserver 202.102.24.35 指定了dns伺服器的位址
linux下修改ip位址
os fc2 nic eth0 host name fc2 ip 192.168.0.20 24 default gateway 192.168.0.254 直接執行 setup 然後會彈出選項視窗,設定一下就可以了 或者修改配置檔案 etc sysconfig network scripts 下有...
linux下修改ip位址
linux修改ip和dns 以red hat enterprise linux 5.2為例 1 最常用的給網絡卡配置ip的命令為 ifconfig eth0 192.168.0.1 netmask 255.255.255.0 up 說明 eth0是第乙個網絡卡,其他依次為eth1,eth 192.1...
Linux下如何修改IP位址
a 修改ip位址 即時生效 ifconfig eth0 192.168.0.20 netmask 255.255.255.0 啟動生效 修改 etc sysconfig network s ifcfg eth0 b 修改default gateway 即時生效 route add default g...