Raspberry Pi 接入点:为客户端分配固定 IP

Rasperry Pi Access point: Assign a fixed IP to a client

我根据官方文档在 raspberry pi 上配置了一个带有自定义 DNS 的接入点:https://www.raspberrypi.org/documentation/configuration/wireless/access-point-routed.md

现在我想通过安装的 dhcp/dnsmasq 服务(在我的接入点上)为我的一个客户端分配一个 固定 IP 地址 。我必须将什么内容添加到哪个文件

我认为 /etc/dhcpcd.conf 用于将树莓派网络接口的 dhcp roules 设置为客户端而不是 AP。 有关详细信息,请参阅 this question

请尝试将此行添加到 /etc/dnsmasq.conf:

dhcp-host=[MAC ADDRESS],[NAME],[STATIC IP ADDRESS]

EDIT1:在我的 RPi3B+ 上测试并且工作正常。