树莓派设置静态固定IP
Posted xiaozao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了树莓派设置静态固定IP相关的知识,希望对你有一定的参考价值。
1.输入命令
sudo nano /etc/network/interfaces
2.打开后是这样:
auto lo
iface lo inet loopback
iface eth0 inet dhcp.
auto wlan0
iface wlan0 inet dhcp
配置静态ip改为
auto lo iface lo inet loopback iface eth0 inet static address 192.168.1.114 netmask 255.255.255.0 gateway 192.168.1.1 auto wlan0 iface wlan0 inet static address 192.168.1.114 netmask 255.255.255.0 gateway 192.168.1.1 wpa-ssid 你的wifi名称 wpa-passphrase 你的wifi密码 wireless-channel 11
3.重启网络
sudo /etc/init.d/networking restart
以上是关于树莓派设置静态固定IP的主要内容,如果未能解决你的问题,请参考以下文章