centos7設定固定ip位址

2021-10-11 21:42:42 字數 556 閱讀 4308

cd /etc/sysconfig/network-scripts

vim ifcfg-ens33

bootproto=static        #開機協議,有dhcp及static;

onboot=yes #設定為開機啟動;

dns1=114.114.114.114 #這個是國內的dns位址,是固定的;

dns2=223.5.5.5 #這個aliyun

ipaddr=192.168.200.100 #你想要設定的固定ip,理論上192.168.2.2-255之間都可以,請自行驗證;

netmask=255.255.255.0 #子網掩碼,不需要修改;

gateway=192.168.200.2 #閘道器,這裡是你在「2.配置虛擬機器的nat模式具體位址引數」中的(2)選擇vmnet8--取消勾選使用本地dhcp--設定子網ip--閘道器ip設定

service network restart

centos7固定ip位址

說下我的環境 1 oracle vm virtualbox 2 centos7 注 這裡說一下本地安裝完用xshell連線的時候一定要把防火牆關掉喲,不然是連線不上的,centos7的防火牆命令可以看我之前的文章 安裝完成之後,首先檢視當前ip位址 然後進入 etc sysconfig networ...

centos7設定固定IP

centos7設定固定ip 新增修改部分為以下帶 注釋的項 虛擬機器選擇橋接模式 bootproto static 改為static defroute yes ipv4 failure fatal no ipv6init yes ipv6 autoconf yes ipv6 defroute yes...

centos7 設定ip位址

vi etc sysconfig network scripts ifcfg enpos3 在檔案中,把 bootproto修改為static,同時增加 ipaddr 192.168.1.150 netmask 255.255.255.0 gateway 192.168.1.1 如果onboot n...