Ubuntu靜態IP的設定

2021-07-05 01:42:54 字數 704 閱讀 8637

1. 找到檔案並作如下修改:

sudo vim /etc/network/inte***ces

修改如下部分:

auto eth0

iface eth0 inet static

address 192.168.0.117

gateway 192.168.0.1 #這個位址你要確認下 閘道器是不是這個位址

netmask 255.255.255.0

network 192.168.0.0

broadcast 192.168.0.255

2. 修改dns解析

因為以前是dhcp解析,所以會自動分配dns伺服器位址

而一旦設定為靜態ip後就沒有自動獲取到的dns伺服器了

要自己設定乙個

sudo vim /etc/resolv.conf

寫上乙個公網的dns

nameserver 202.96.128.86

(注意:8.8.8.8是谷歌的dns伺服器,但是解析速度慢,還是找到乙個國內的dns來用)

修改dns基本配置

# vim /etc/resolvconf/resolv.conf.d/base

nameserver 192.168.80.2

nameserver 8.8.8.8

3. 重啟網絡卡:

sudo /etc/init.d/network restart

ubuntu設定靜態ip

ubuntu10.04設定靜態ip 2010 12 20 09 39 step1 設定ip vi etc network inte ces 檔案內容修改為 auto eth0 iface eth0 inet static address 192.168.1.2 gateway 192.168.1.1...

ubuntu設定靜態ip

ubuntu設定靜態ip 找到檔案並作如下修改 sudo vi etc network inte ces修改如下部分 auto eth0 iface eth0 inet static address 192.168.0.117 gateway 192.168.0.1 這個位址你要確認下 閘道器是不是...

ubuntu設定靜態ip

當dhcp伺服器出問題的時候,不能自動分配ip,就需要我們手動設定靜態ip 1 vim etc network inte ces 個人不是很習慣用vim,可以換成gedit就和記事本一樣操作啦 2 修改檔案內容如下 我的不叫eth0,是enp2s0,輸入ifconfig看第乙個 auto eth0 ...