vi /etc/network/interfaces.d/eth0 # 修改配置文件
增加下面的内容 (实际内容可按需修改)
#auto eth0 # 注释
#iface eth0 inet dhcp # 网卡自动获取IP 注释
auto eth0
iface eth0 inet static
address 192.168.1.10 # IP 地址, 下面部分地址需要填写为同网段的地址
network 192.168.1.0
netmask 255.255.255.0 # 一般保持不变
broadcast 192.168.1.255
gateway 192.168.1.1 # 网关路由器地址
dns-nameservers 192.168.1.1 # 一般也填网关路由器地址
pre-up ifconfig eth0 hw ether 02:41:28:EF:6A:8C #设置MAC
我测试了有效