如何配置 eth1

如何配置 eth1

我需要eth1使用这些进行设置:

ip 10.5.15.200
netmast 255.255.255.128
mac address AA:6F:78:UI:34:34

并且必须设置 eth1启动并且默认网关必须是网络中第一个可用地址

答案1

打开文件/etc/network/interfaces并添加以下内容:

auto eth1
iface eth1 inet static 
  address 10.5.15.200
  netmask 255.255.255.128
  pre-up ifconfig eth1 hw ether AA:6F:78:UI:34:34

这将设置特定值。但是目前尚不清楚您对默认网关的评论是什么意思。您能详细说明一下吗?

答案2

网关地址可以是此处 25 位子网内的任何可用地址。它通常是第一个可用的 IPv4 地址,有时也是最后一个可用的 IPv4 地址。

auto eth1
iface eth1 inet static 
  address 10.5.15.200
  netmask 255.255.255.128
  gateway 10.5.15.129
  hwaddress ether AA:6F:78:UI:34:34

相关内容