现在我正在执行以下操作来为特定的 MAC 分配 IP 地址。
host 1 {hardware ethernet 02:00:00:ef:0d:20;fixed-address 17x.31.xxx.2xx;option subnet-mask 255.255.255.255;option routers 51.xxx.xx.254;}
我该如何修改它以便可以为 MAC 地址使用多个 IP 地址02:00:00:ef:0d:20
?
答案1
只需在每个 IP 后添加 , 似乎就可以了。
host 1 {hardware ethernet 02:00:00:ef:0d:20;fixed-address IP1, IP2, IP3, IP4;option subnet-mask 255.255.255.255;option routers 51.xxx.xx.254;}