给树莓派设置固定IP

如果要查看当前使用IP 可以输入 ifconfig

但这个是 动态获取 的IP ,为了使用方便设置一个固定IP 是必须的。

 

sudo vi /etc/network/interfaces

原文如下:

auto lo

 

iface lo inet loopback

iface eth0 inet dhcp

 

allow-hotplug wlan0

iface wlan0 inet manual

wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf

iface default inet dhcp

 

可以看见 eth0 是动态dhcp获取IP,下面将 iface eth0 inet dhcp 修改如下:

iface eth0 inet static

address 192.168.1.88

netmask 255.255.255.0

gateway 192.168.1.1

这样树莓派的网口固定IP 就改成了:192.168.1.88

 

那无线IP呢?下面接着将 iface default inet dhcp 修改如下:

iface default inet static

address 192.168.1.89

netmask 255.255.255.0

gateway 192.168.1.1

同样的wlan0 改为固定IP 192.168.1.89

记得注释掉 wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf

 

修改后的 interfaces 内容如下:

auto lo

 

iface lo inet loopback

iface eth0 inet static

address 192.168.1.88

netmask 255.255.255.0

gateway 192.168.1.1

 

allow-hotplug wlan0

iface wlan0 inet manual

#wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf

iface default inet static

address 192.168.1.89

netmask 255.255.255.0

gateway 192.168.1.1

版权声明:
作者:hopol
链接:https://hopolcn.com/2016/01/411/
来源:HopoL's Blog
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>