在Debian Linux中網路卡的設定(轉)
在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命令進行配置。
網路卡透過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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 在Debian中網路卡的設定(轉)
- 在Linux中設定磁碟限額(轉)Linux
- 在Linux中,如何設定網路路由?Linux路由
- Linux下多網路卡多網段訪問 --- 網路卡及Gateway, 路由設定(Linux OS)LinuxGateway路由
- Linux下設定網路卡繫結 (final)Linux
- 如何在 Debian Linux 上設定和配置網橋Linux
- Linux中的字型設定 (轉)Linux
- 雙網路卡共享上網設定
- Linux網路基礎 (Debian)(轉)Linux
- 在linux下設定WWWServer(轉)LinuxServer
- Linux下檢視網路卡設定 ethtool eth0Linux
- Linux下一塊網路卡設定多個IP地址Linux
- 在FreeBSD中安裝雙網路卡例項(轉)
- Linux下檢視網路卡資訊及確定網路卡位置Linux
- 在Linux(Debian)下安裝mono(轉)LinuxMono
- 在debian Linux上玩 dos 遊戲(轉)Linux遊戲
- 安裝配置Linux網路卡(轉)Linux
- linux下網路卡bonding[轉]Linux
- 在Linux上安裝ORiNOCO無線網路卡辦法(轉)Linux
- Debian 12 設定
- 在debian中安裝Java環境(轉)Java
- 在Linux下調整網路卡的工作模式 提高效率(轉)Linux模式
- 在AIX中設定中文環境(轉)AI
- win10待機網路卡不休怎麼設定 win10待機網路卡不斷網設定方法Win10
- 網路安全系列之十四在Linux中設定UMASK值Linux
- 在Debian系統中編譯Linux核心需要安裝的軟體包(轉)編譯Linux
- Debian/Linux安裝 Realtek 8811cu無線網路卡驅動Linux
- RAC-虛擬機器linux安裝RAC時的雙網路卡設定虛擬機Linux
- 合理設定作業系統網路卡的MTU值作業系統
- 教你設定Vista無線網路卡
- Linux網路設定2——虛擬機器中的Linux和Windows網路互通設定薦Linux虛擬機Windows
- 在Debian上設定USB網路印表機和掃描器伺服器伺服器
- 【Linux】Linux網路配置基礎3 編輯配置檔案設定網路卡子介面ipLinux
- Debian、kali類虛擬機器網路設定虛擬機
- 在Linux中,如何設定防火牆規則?Linux防火牆
- 多塊網路卡繫結IP在linux下Linux
- Linux中設定hugepages 在記憶體中 lock SGALinux記憶體
- 在 Ubuntu 15.10 上為單個網路卡設定多個 IP 地址Ubuntu