我正在尝试编写一个设置本地 IP 地址的脚本。这是我目前所拥有的:
#!/bin/sh
echo -n \
"# interfaces(5) file used by ifup(8) and ifdown(8)\n"\
"auto lo\n"\
"iface lo inet loopback\n"\
"auto eth0\n"\
"iface eth0 inet static\n"\
" address 192.168.2.130\n"\
" netmask 255.255.255.0\n"\
" gateway 192.168.2.1\n"\
" dns-nameservers 8.8.8.8\n"\
> /etc/network/interfaces
/sbin/ifup eth0
该文件/etc/network/interfaces
看起来格式合理,但ifup
命令导致以下错误:
RTNETLINK answers: File exists
Failed to bring up eth0.
我怎样才能解决这个问题?
答案1
我认为这是由于 eth0 已连接造成的。
你可能想先跑/sbin/ifdown eth0
一跑。