vi /etc/network/interfaces.d/eth0 # 修改配置文件
(就是在这更改静态IP 记得删除原来的
auto eth0
iface eth0 inet dhcp代码)
替换为下面的内容 (网关和IP必须按实际情况自行修改)
否则你将可能不得不重新刷机,承担修复 IP 无法访问的风险。
无脑全选删除出原有的代码,再粘贴下面的
auto eth0
iface eth0 inet static
address 192.168.1.10
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 00:11:22:33:44:66
解释:
比如我的路由器IP段 192.168.1.1 有的人可能192.168.5.1 192.168.124.12等等 其他的自己看着改
auto eth0 网卡名称
iface eth0 inet static 设置静态IP(原来是dhcp获取 记得删除原来的
auto eth0
iface eth0 inet dhcp代码 )
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 你的路由器IP
dns-nameservers 192.168.1.1 你的路由器IP(也可以换成其他dns服务器地址)
pre-up ifconfig eth0 hw ether 00:11:22:33:44:66 这是盒子mac地址 可以换 可以不换
然后 esc(推出编辑) → :wq(保存推出)→ 关电源重启 → 按照自己设置的IP登录盒子