树莓派系统(Debian)中设置固定静态IP地址
树莓派系统(Debian)中设置固定静态IP地址
一、方法:
1、使用ssh登陆,使用以下命令设置静态ip。
sudo nano /etc/dhcpcd.conf
2、在dhcpcd.conf后添加以下内容(网上的方法):
interface eth0
static ip_address=10.12.8.124/24
static routers=10.12.8.1
static domain_name_servers=202.102.152.3 114.114.114.114
3、保存后重启树莓派。
sudo reboot
我设置时,直接使用的static ip_address=192.168.1.110保存,重启。OK。
树莓派系统(Debian)中设置固定静态IP地址
https://www.dearcloud.cn/2017/05/24/20200310-cnblogs-old-posts/20170524-树莓派系统(Debain)中设置固定静态IP地址/