linux 固定內網ip

2021-06-20 06:01:23 字數 861 閱讀 1788

編輯網絡卡配置檔案

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                #網路位址(可不要)

broadcast=192.168.1.255       #廣播位址(可不要)

gateway=192.168.1.1                 #閘道器位址

onboot=yes                                  # [yes|no](引導時是否啟用裝置)

userctl=no                                  #[yes|no](非root使用者是否可以控制該裝置)

bootproto=static     #[none|static|bootp|dhcp](引導時不使用協議|靜態分配|bootp協議|dhcp協議)

然後修改dns配置檔案

vi /etc/resolv.conf

修改nameserver 202.109.14.5             #主dns

nameserver 219.141.136.10         #次dns

search localdomain

所以網路配置完成後,都需要重啟網路服務:service network restart     或/etc/init.d/network restart

手動Linux固定IP

root linux vi etc sysconfig network scripts ifcfg eth0 device eth0 bootproto static broadcast 192.168.99.255 ipaddr 192.168.99.99 netmask 255.255.255....

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...