魔百盒CM101S-2刷海纳思后设置静态ip

盒子:魔百盒CM101S-2
系统:海纳思NAS

刷完固件之后,为避免重启后IP自动获取,建议改为静态IP

vi /etc/network/interfaces.d/eth0 # 修改配置文件

 

(就是在这更改静态IP 记得删除原来的,下面的代码)
auto eth0
iface eth0 inet dhcp

全选删除出原有的代码,再粘贴下面的

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

代码的解释

auto eth0 网卡名称
iface eth0 inet static 设置静态IP

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地址 可以换 可以不换

VI使用也提示下

i   进入编辑

esc(退出编辑)

:wq(保存退出)

关电源重启

按照自己设置的IP登录盒子

 

注意事项:

网关与IP根据实际情况进行填写,否则可能出现IP无法访问的情况,需要重新刷机
THE END
分享
二维码
< <上一篇
下一篇>>