赞
踩
背景:树莓派上直插网线访问网络摄像头,使用WiFi进行上网服务
问题:网络不进行配置的话会出现上不了网的情况,即默认是走网线上网
解决方案:
修改网络配置文件 /etc/dhcpcd.conf, 在最后增加静态ip配置信息
- # fallback to static profile on eth0
- interface eth0
- static ip_address=192.168.1.168/24
- static routers=192.168.1.1
- static domain_nameservers=192.168.1.1
- #fallback static_eth0
配置的是192.168.1.x 网段下,需要和网络摄像头IP在同一个网段下。
修改完成后重新设备或使用命令
sudo service networking restart
在插入网线,使用命令 【ifoncfig】 查看当前网络的IP地址,
以上则表明静态ip配置成功,此时能够访问网络摄像头,但是出现无法上网的问题,继续解决...
ip route show
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。