vim /etc/sysconfig/network-scripts/ifcfg-eth0
將檔案中內容修改為以下格式,下面的項在檔案中不存在的,自己手動補上。
device=eth0 #網絡卡名
hwaddr=00:0c:29:d3:bb:e5 #mac位址
type=ethernet
uuid=486cb8fd-7e13-4fce-80c3-ccffc76d00a2
onboot=yes #網路服務是否開機自啟動
nm_controlled=yes
bootproto=static #dhcp設定動態ip,static設定靜態ip
ipv6init=no
userctl=no
#以下內容只在設定靜態ip時新增
ipaddr=192.168.1.155
netmask=255.255.255.0
gateway=192.168.1.1
dns1=8.8.8.8
dns2=8.8.4.4
service network restart
或
/etc/init.d/network restart
ping閘道器
ping 192.168.1.1
ping外網
二 Linux 靜態IP,動態IP配置
第一步 啟用網絡卡 系統裝好後預設的網絡卡是eth0,用下面的命令將這塊網絡卡啟用。ifconfig eth0 up 第二步 設定網絡卡進入系統時啟動 想要每次開機就可以自動獲取ip位址上網,就要設定網路服務在系統啟動時也啟動。linux有一點與windows不同的是很多服務預設是停止的,而且你在某...
centos配置靜態或動態的IP位址呢?
前面已經介紹過centos虛擬機器系統的安裝 當系統安裝後怎麼配置靜態或動態的ip位址呢?下面就由小河給大家介紹 在centos系統中如何配置靜態ip和動態ip,以centos6.4系統為例。1 進入centos系統,檢視網路配置。輸入命令 ifconfig a 2進入ifcfg eth0檔案。輸入...
linux配置靜態IP
vi etc sysconfig network scripts ifcfg eth0針對特定的網絡卡進行設定 type ethernet bootproto static 啟動型別 靜態 預設dhcp defroute yes ipv4 failure fatal yes ipv6init no ...