當前位置:才華齋>計算機>作業系統>

Ubuntu Linux系統下設定Static IP的方法

作業系統 閱讀(1.94W)

Ubuntu的網路引數儲存在檔案 /etc/network/interfaces中,預設設定使用dhcp,內容如下:

Ubuntu Linux系統下設定Static IP的方法

# The primary network interface

auto eth0

iface eth0 inet dhcp

設定靜態ip的'方法如下:

(1)編輯 /etc/network/interfaces

1.1)將dhcp 一行遮蔽

# The primary network interface

auto eth0

#iface eth0 inet dhcp

1.2)新增和靜態ip有關的引數

# The primary network interface

iface eth0 inet static

address

netmask

gateway

(2)編輯 /etc/,設定dns

nameserver

nameserver

(3)執行下面兩個命令,啟用新設定

$sudo ifdown eth0

$sudo ifup eth0