Linux 設定靜態IP

2021-09-21 05:04:47 字數 667 閱讀 9389

ubuntu下修改靜態ip

開啟/etc/network/inte***ces檔案,修改為以下內容

auto eth0

iface eth0 inet static

address 172.30.1.***

network 255.255.0.0

gateway 172.30.1.1

新增dns位址,開啟/etc/resolvconf/resolv.conf.d/base檔案,新增dns如下

nameserver 180.76.76.76

nameserver 8.8.8.8

更新dns,使其生效

sudo resolvconf -u

centos下修改靜態ip

開啟/etc/sysconfig/network-scripts/ifcfg-eth0檔案,修改為以下內容

auto eth0

iface eth0 inet static

address 172.30.1.***

network 255.255.0.0

gateway 172.30.1.1

新增dns位址,開啟/etc/resolv.conf檔案,新增dns如下

nameserver 180.76.76.76

nameserver 8.8.8.8

linux設定靜態ip

安裝linux之後,一般都會設定nat聯網模式,此時沒有為centos分配ip位址為系統分配ip有兩種方法。type ethernet hwaddr 00 0c 29 3f 79 46 nm controlled yes bootproto static name ens33 uuid 37566c...

linux靜態ip設定

vim etc sysconfig network scripts ifcfg enp1s0修改為以下內容 type ethernet proxy method none browser only no name enp1s0 uuid 2f66bc1d 3916 46c9 aedd 30cc5dc...

Linux設定靜態IP

步驟一 終端進入ifcfg eth0 vi etc sysconfig network scripts ifcfg eth0 步驟二 device eth0 裝置名稱 預設 hwaddr 00 0b 28 d3 bb e5 mac位址 預設 type ethernet 網路設定 預設 onboot ...