進入到網絡卡目錄
cd /etc/sysconfig/network-scripts/
檢視網絡卡檔案(你們的檔名可能不一樣,但都是ifcfg-開頭)
ll
我的顯示為
ifcfg-ens160
注:這裡不顯示原網絡卡配置,修改完成如下即可
檢視網絡卡內容
cat ifcfg-ens160
網絡卡顯示如下
type=ethernet
bootproto=none
name=ens160
uuid=63b0b6ee-fbee-4b17-80be-e3b36ff27493
device=ens160
onboot=yes
ipaddr=192.168.159.100
prefix=24
netmask=255.255.255.0
gateway=192.168.159.2
dns1=8.8.8.8
重啟網絡卡
centos,redhat 7或7以上的版本
systemctl restart network
centos,redhat 6版本
service restart network
網絡卡內容詳解
type=ethernet 選用乙太網
bootproto=none ip獲取方式,none和static表示靜態,dhcp動態 name=ens160 網絡卡名稱
uuid=63b0b6ee-fbee-4b17-80be-e3b36ff27493 網絡卡唯一標識
device=ens160 網絡卡名稱
onboot=yes 啟動網絡卡
ipaddr=192.168.159.100 ip位址
prefix=24 子網掩碼的位數長度
netmask=255.255.255.0 子網掩碼
gateway=192.168.159.2 閘道器位址
dns1=8.8.8.8 dns 網域名稱解析伺服器,可設定多個
linux 環境下修改ip位址(設定靜態IP)
vi etc sysconfig network scripts ifcfg eth0 device eth0 1 bootproto static dhcp動態獲取,static靜態的 onboot yes ipaddr 192.168.0.254 netmask 255.255.255.0 ga...
Linux如何修改靜態IP
linux修改靜態ip 在master主機上 1.vmware 編輯 虛擬網路編輯器 還原預設配置 重置網路設定 主要圖省事,為了使windows與虛 擬機同乙個段位 2.vmware 編輯 虛擬網路編輯器 選中vm8 關掉dhcp 不然系統會自動找那個動態的ip 子網 192.168.207.0 ...
linux修改靜態ip位址
cd etc sysconfig network scripts vi ifcfg ens33 按 i 進入編輯狀態,設定為 bootproto static 如設定為none則禁止dhcp,static則啟用靜態ip位址,設定為dhcp則為開啟dhcp服務 並修改其他部分為您的設定,本例中為192...