配置网络接口并永久更改 mac 地址

配置网络接口并永久更改 mac 地址

AA:BB:CC:DD:x:y我需要永久配置网络接口 eth1,并在接口启动之前 使用指定的格式更改 MAC 地址:A=1;B=2;C=2;D=2;x=6;y=8

我写道/etc/network/interfaces

auto eth1  
iface eth1 inet static  
address 10.6.8.200  
netmask 255.255.255.128  
gateway 10.6.8.129  
pre-up ifconfig eth1 hw ether 1A:2B:2C:2D:6:8  

我不知道我做错什么了。

答案1

auto eth1

这告诉 Ubuntu 对 eth1 使用 DHCP。如果删除此行会发生什么?

此链接也可能有帮助: http://www.cyberciti.biz/tips/howto-ubuntu-linux-convert-dhcp-network-configuration-to-static-ip-configuration.html

相关内容