[root@linux ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0device=eth0
bootproto=static
broadcast=192.168.99.255
ipaddr=192.168.99.99
netmask=255.255.255.0
network=192.168.99.0
onboot=yes
修改dns
[root@linux ~]# vi /etc/
resolv.conf
將其中的ip改為要用的dns的ip,dns不選快的只選對的.
device=eth0
<== 網路卡代號,必須要 ifcfg-eth0相對應
bootproto=static
<== 開機協定,有 dhcp 及 static 這裡是 static
broadcast=192.168.1.255
<== 就是廣播位址囉
hwaddr=00:40:d0:13:c3:46
<== 就是網路卡位址
ipaddr=192.168.1.13
<== 就是 ip 啊
netmask=255.255.255.0
<== 就是子遮罩網路
network=192.168.1.0
<== 就是網域啊!該網段的第乙個 ip
gateway=192.168.1.2
<== 就是預設路由!
onboot=yes
<== 是否開機啟動的意思
mtu=1500
<== 就是最大傳輸單元的設定值。
#gatewaydev=eth0
<== 主要路由的裝置為那個,通常不用設定
linux 固定內網ip
編輯網絡卡配置檔案 vi etc sysconfig network script ifcfg eth0 修改device eth0 物理裝置名 ipaddr 192.168.1.10 ip位址 netmask 255.255.255.0 掩碼值 network 192.168.1.0 網路位址 可...
Linux 固定ip設定
先參考 linux 網路配置的檔案在 etc sysconfig network scripts 目錄下 ifconfig檢視自己的網絡卡資訊 ens33 對應檔案為 ifcfg ens33 開啟 根據他的設定完成後 看是否能ping通主機 ping 192.168.如果不行應該是虛擬機器那邊設定的...
linux固定ip設定
在終端中輸入 vi etc sysconfig network scripts ifcfg eth0 編輯完後,儲存退出。重啟網路服務。service network restart或 etc init.d network restart 重啟網路服務。service network restart...