概述
本人惨痛经历:由于当初只添加了无线配置,而没有添加有线配置。而且DHCP给树莓派分配的是动态IP地址。最后用树莓派制作路由器修改hostapd程序的配置文件的时候,SecureCRT远程登录断开,再去找IP链接的时候发现已经找不到了,无奈只好重新开始做。所以今天我要给树莓派配置静态IP地址。
将 /etc/network/interfaces 配置置空,如果没有配置则本来就是空的。
pi@raspberrypi:/etc/wpa_supplicant $ sudo vim /etc/network/interfaces
#interfaces(5) file used by ifup(8) and ifdown(8)
#Please note that this file is written to be used with dhcpcd
#For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'
#Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d
修改有线/无线的配置:
#以太网有线配置
interface eth0
static ip_address=192.168.x.x
static routers=192.168.x.1
static domain_name_servers=114.114.114.114
#无线接口配置
interface wlan0
static ip_address=192.168.x.y
static routers=192.168.x.1
static domain_name_servers=114.114.114.114
执行下面命令:
禁用树莓派网络服务
pi@raspberrypi:/etc/wpa_supplicant $ sudo systemctl disable networking
使用dhcpcd管理树莓派网络服务程序
pi@raspberrypi:/etc/wpa_supplicant $ sudo systemctl enable dhcpcd
重启生效
pi@raspberrypi:/etc/wpa_supplicant $ sudo reboot
最后
以上就是温柔彩虹为你收集整理的树莓派静态配置IP地址的全部内容,希望文章能够帮你解决树莓派静态配置IP地址所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复