要設置 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。在這種情況下,您需要使用該工具來配置網絡接口。