ubuntu/arm开发板下设置静态IP:
不同的系统版本会有所差异。ubuntu14.04设置静态ip1. 找到文件并作如下修改:sudo vim /etc/network/interfaces在文件中加入如下部分:auto eth0iface eth0 inet staticaddress 192.168.1.19 #虚拟机上的ipgateway 192.168.1.10
不同的系统版本会有所差异。
ubuntu14.04设置静态ip
1. 找到文件并作如下修改:
sudo vim /etc/network/interfaces
在文件中加入如下部分:
auto eth0
iface eth0 inet static
address 192.168.1.19 #虚拟机上的ip
gateway 192.168.1.10 #这个地址你要确认下 网关是不是这个地址
netmask 255.255.255.0 #设置子网掩码
network 192.168.1.11 # 设置网络号
broadcast 192.168.1.255 # 广播地址
2. 修改dns解析
因为以前是dhcp解析,所以会自动分配dns服务器地址
而一旦设置为静态ip后就没有自动获取到的dns服务器了
要自己设置一个
sudo vim /etc/resolv.conf
写上一个公网的DNS
nameserver 192.168.1.120(这个ip是我们电脑的ip地址)
(注意:8.8.8.8是谷歌的DNS服务器,但是解析速度慢,还是找到一个国内的dns来用)
3. 重启网卡:
sudo /etc/init.d/network restart
或者重启虚拟机后ifconfig后就能显示自己设置的静态ip。
在开发板设置静态ip:
vi /ect/netword/interface 打开interface 文件。
在 # Wired or wireless interfaces 文件下一行注释掉iface eth0 inet dhcp,变成#iface eth0 inet dhcp
再添加以下内容:
iface eth0 inet static
address 192.168.1.15 # 开发板的ip
netmask 255.255.255.0 #设置子网掩码
network 192.168.1.1 # 设置网络号
gateway 192.168.1.12 #设置网关
关闭保存 :wq
重启网卡:sudo /etc/init.d/network restart
或者重启开发板 ifconfig 后就能显示自己设置的静态ip。
更多推荐
所有评论(0)