要设置 Linux 上的两个网络接口,您可以按照以下步骤进行操作:
auto eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8 8.8.4.4
auto eth1
iface eth1 inet static
address 10.0.0.100
netmask 255.255.255.0
sudo ifup eth0
sudo ifup eth1
请注意,上述步骤仅适用于使用传统网络接口配置文件的 Linux 发行版。某些发行版可能使用不同的网络配置工具,如 NetworkManager。在这种情况下,您需要使用该工具来配置网络接口。