在Linux系統中配置雙網卡,可以按照以下步驟進行:
ifconfig -a
找到要配置的兩個網卡的名稱,通常以eth0
、eth1
等命名。
使用以下命令編輯網絡配置文件(以Ubuntu系統為例):
sudo nano /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.0.100
netmask 255.255.255.0
gateway 192.168.0.1
其中,address為網卡的IP地址,netmask為子網掩碼,gateway為默認網關。
auto eth1
iface eth1 inet static
address 192.168.1.100
netmask 255.255.255.0
保存并關閉文件。
重啟網絡服務,使用以下命令:
sudo systemctl restart networking
ifconfig
現在,你的Linux系統上的雙網卡應該已經成功配置完成。你可以使用ifconfig
命令來查看每個網卡的IP地址和其他網絡信息。