树莓派4-wifi连接和固定ip地址

树莓派4-固定ip地址

  1. 编辑文件/etc/dhcpcd.conf

sudo vi /etc/dhcpcd.conf

  1. 修改以下参数配置,如果没有就在文件底部添加
  • 有线配置:
interface eth0
static ip_address=192.168.1.106/24
static routers=192.168.1.1
static domian_name_servers=114.114.114.114 114.114.114.115
  • 无线配置:
interface wlan0
static ip_address=192.168.1.106/24
static routers=192.168.1.1
static domian_name_servers=114.114.114.114 114.114.114.115
  1. 重启系统
    reboot

  2. 查看ip地址
    ifconfig

你可能感兴趣的:(树莓派,raspberry,pi)