在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地址和其他网络信息。