Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Ubuntu設置靜態IP的方法

Ubuntu設置靜態IP的方法

日期:2017/2/7 16:55:30      編輯:Linux教程

系統裝好後,源也設置好了(把以前默認的源注釋掉了,改成了幾個教育網的源,北交的源相對比較快),下來的任務就是更新系統和安裝所需的軟件,但是前提是必須可以上網,因為實驗室用的都是固定IP,所以需要將Ubuntu設置為靜態IP。方法如下:

1、修改網絡配置文件

網絡配置信息存儲在/etc/network/interfaces 文件中

sudo vi /etc/network/interfaces

我用vi打開,我的文件顯示如下內容:

# This file describes the network interfaces available on your system

# and how to activate them. For more information, see interfaces(5).

# The loopback network interface

auto lo

iface lo inet loopback

我的網絡配置文件中只有一個環回地址,即127.0.0.1。在下面添加:

auto eth0 #指明網卡eth0在系統啟動時自動加載

iface eth0 inet static #指明eth0采用ipv4地址,inet表示ipv4地址,inet6表示ipv6地址; static表示靜態,dhcp表示動態

address 172.22.112.13 #靜態ip

netmask 255.255.255.128 #子網掩碼

gateway 172.22.112.1 #網關地址

:wq #保存退出

2、設置DNS服務器

在靜態ip下還要配置DNS服務器(Windows也是這麼做的),DNS信息存儲在/etc/resolv.conf 中,如果沒有此文件則直接新建:

sudo vi /etc/resolv.conf #用vi打開文件

進入編輯模式,輸入a,然後依次輸入下面內容:

nameserver 202.202.32.33 #首選DNS服務器

nameserver 61.128.128.68 #備用DNS服務器

:wq #保存退出

3、全部修改後,需要將網卡重啟,讓修改生效,方法如下,輸入以下命令:

sudo ifdown eth0 #禁用網卡

sudo ifup eth0 #啟動網卡

Copyright © Windows教程網 All Rights Reserved