在Debian Linux中網路卡的設定(轉)

ba發表於2007-08-12
在Debian Linux中網路卡的設定(轉)[@more@]  在Debian中網路卡的設定可以透過/etc/network/interfaces檔案來進行,具體可分為三種不同的配置方式:DHCP自動獲取、靜態分配IP地址和PPPoE寬頻撥號。具體設定如下: 在進行配置之前,首先進入/etc/network目錄中,編輯interfaces檔案:

網路卡透過DHCP自動獲取IP地址

# 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(配置環回口)

# 開機自動激lo介面
auto lo
# 配置lo介面為環回口
iface lo inet loopback

#
# The primary network interface (配置主網路介面)

#開機自動啟用eth0介面
auto eth0
#配置eth0介面為DHCP自動獲取
iface eth0 inet dhcp

網路卡靜態分配IP地址

# 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(配置環回口)

# 開機自動激lo介面
auto lo
# 配置lo介面為環回口
iface lo inet loopback

#
# The primary network interface (配置主網路介面)

#開機自動啟用eth0介面
auto eth0
#配置eth0介面為靜態設定IP地址
iface eth0 inet static
address 10.16.3.99
netmask 255.255.255.0
network 10.16.3.0
broadcast 10.16.3.255
gateway 10.16.3.1

# dns-* options are implemented by the resolvconf package, if installed(DNS設定)
dns-nameservers 61.153.177.196 61.153.177.197
dns-search fireteam.org

網路卡進行PPPoE寬頻撥號配置

# 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(配置環回口)

# 開機自動激lo介面
auto lo
# 配置lo介面為環回口
iface lo inet loopback

#
# The primary network interface (配置主網路介面)

#開機自動啟用eth0介面
auto eth0
#配置eth0介面為靜態設定IP地址
iface eth0 inet static
address 10.16.3.99
netmask 255.255.255.0
network 10.16.3.0
broadcast 10.16.3.255

配置完畢後,重啟計算機或網路服務即可將網路卡配好。如進行PPPoE寬頻撥號,可執行pppoeconf命令進行配置。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617731/viewspace-950352/,如需轉載,請註明出處,否則將追究法律責任。

相關文章