Ubuntu 設定固定IP / DNS

前幾個禮拜為了osTube裝了Ubuntu desktop版來玩玩
剛裝的時候沒有設固定IP 裝好之後我在GUI底下設定好IP
結果一重開機 又變成自動取得IP 原本在桌面下設定的都不見了

後來才知道Ubuntu設固定IP要自己去/etc/network//interfaces 設定才有用
桌面設定的都是詐炮

$ sudo -s
輸入密碼
# vi /etc/network/interfaces

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
address 你的IP
netmask 子網路遮罩
gateway 閘道器

另外還要指定一下DNS server
#vi /etc/resolv.conf
domain 你的網域(ex:ntu.edu.tw)
nameserver DNS(ex:168.95.1.1)

===========
BSD轉Linux還真是重來啊

2 thoughts on “Ubuntu 設定固定IP / DNS”

Leave a Comment