Ubuntu下配置IP位址及DNS

2021-10-25 07:26:51 字數 1085 閱讀 9750

方法一: 通過/etc/network/inte***ces,在它的最後增加一句(多個dns之間用空格分隔):

#inte***ces(5) file used by ifup(8) and ifdown(8)

#include files from /etc/network/inte***ces.d:

source-directory /etc/network/inte***ces.d

auto lo

iface lo inet loopback

#the primary network inte***ce

auto eth0

iface eth0 inet static

address 192.168.201.100

netmask 255.255.255.0

gateway 192.168.201.254

dns-nameservers 202.97.224.68 202.97.224.69

202.97.224.68是聯通的dns服務。

重啟後dns就生效了,這時候/etc/resolv.conf檔案最下面會多出一行:

#dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)

#do not edit this file by hand – your changes will be overwritten

nameserver 202.97.224.68

nameserver 202.97.224.69

方法二 :通過修改 /etc/resolvconf/resolv.conf.d/base(這個檔案預設是空的)

sudo vi /etc/resolvconf/resolv.conf.d/base

在裡面插入:

nameserver 202.97.224.68

nameserver 202.97.224.69

如果有多個dns就一行乙個

修改好儲存,然後執行:

resolvconf -u

再看/etc/resolv.conf,最下面就多了2行:

ubuntu下固定IP位址配置方法

靜態設定ipubuntu網路配置資訊儲存在 etc network inte ces 檔案中,預設內容如下 auto eth0 iface eth0 inet dhcpauto lo iface lo inet loopback 設定靜態ip的方法如下 使用root使用者編輯 etc network...

Ubuntu下靜態IP位址的配置

linux下靜態ip位址的配置 設定ip sudo vi etc network inte ces auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.1.221 netmask 255.25...

ubuntu下配置靜態IP位址,設定DNS和主機名

新裝了ubuntu,雖然使用圖形介面明明已經設定好了ip,閘道器等等,但是不能上網。乙個朋友提醒說,也許是設定的問題,試試命令列的設定。於是搜尋了一下怎麼設定,結果還真的成功了。具體如下 1.檢驗是否可以連通,就使用ping命令ping 閘道器 開始的時候總是現實unreachable 2.設定ip...