【linux】——ubuntu server 12.04重啟不能上網的問題

來源:互聯網
上載者:User

轉自:http://blog.csdn.net/njchenyi/article/details/8715417

1、配置靜態IP地址:

# vim /etc/network/interfaces

原內容有如下4行:


auto lo

iface lo inet loopback

auto eth0

iface eth0 inet dhcp

以上表示預設使用DHCP分配IP,修改為如下:



auto lo

iface lo inet loopback

# The primary network interface

auto eth0

#iface eth0 inet dhcp

iface eth0 inet static

address 192.168.80.129

netmask 255.255.255.0

gateway 192.168.80.2


儲存退出。
注意:只需要設定address(IP地址)、netmask(子網路遮罩)、gateway(網關)這三項就OK,network和broadcast這兩項參數是可以不寫的。

2、手動設定DNS伺服器:

# vim /etc/resolv.conf

添加如下內容(這點所有Linux發行版都通用):

nameserver 192.168.80.2

nameserver 8.8.8.8

儲存退出。

注意:重啟Ubuntu後發現又不能上網了,問題出在/etc/resolv.conf。重啟後,此檔案配置的dns又被自動修改為預設值。所以需要永久性修改DNS。方法如下:

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

nameserver 192.168.80.2

nameserver 8.8.8.8

3、重啟networking服務使其生效:

# /etc/init.d/networking restart

這樣網路設定就永久生效。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.