Raspberry修改静态地址
修改配置文件
sudo vim /etc/dhcpcd.conf
在配置文件底下加上如下几行:
interface eth0 static ip_address=192.168.0.10/24 static routers=192.168.0.1 static domain_name_servers=192.168.0.1 interface wlan0 static ip_address=192.168.0.200/24 static routers=192.168.0.1 static domain_name_servers=192.168.0.1
其中,eth0
是有线的配置,wlan0
是无线配置ip_address
就是静态IP
,后面要接/24routers
是网关static domain_name_servers
是DNS
修改好后重启树莓派生效