如何为通过WIFI连接的Raspberry Pi Model 3+分配静态IP地址?


0

我最近用Raspbian Stretch lite设置了我的PI并成功配置了wifi,现在我试图为它分配一个静态IP地址,但我找到的只是局域网的教程而不是通过WIFI连接,我希望采取简单的路径并通过我的路由器分配IP,但它没有该选项。

Answers:


0

它与您的以太网接口基本相同,只需使用无线接口的名称(大概) wlan0。 在Raspbian stretch(lite)中,如果你将这个部分添加到你的 /etc/dhcpcd.conf 你应该没事:

interface wlan0
static ip_address=192.168.1.99/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1

当然,您需要根据具体设置调整IP地址。


嘿谢谢你的回答,最后我决定通过以太网将pi直接连接到我的路由器,但现在当我尝试ssh进入它时,我在输入密码时获得权限被拒绝...任何想法如何解决这个问题而不使用一台显示器?
Lebowski

你有没有在你的Raspberry Pi上激活ssh?默认情况下,它被禁用。
oh.dae.su

是的,我做了......现在一切顺利。
Lebowski
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.