中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Raspberry pi wifi熱點續

發布時間:2020-07-16 19:20:17 來源:網絡 閱讀:1131 作者:fanglinxun 欄目:開發技術

上一篇介紹了用raspbery pi做wifi熱點。但是如果我把raspberry pi做成wifi熱點的話無法讓raspberry pi無線連接到家里的wifi連接internet了。所以為了讓raspberry pi既可以作為wifi熱點,也可以在平時連接家里的wifi連接internet,我這里介紹一個我認為比較好用的辦法。


思路是用shell腳本,更改一下raspberry pi的網絡設定,執行腳本可以更換wifi AP模式和wifi client模式。


首先需要配置/etc/networks/interface文件,

第一個是為普通wifi client模式使用的。

pi@raspberrypi ~ $ cat /etc/network/interfaces.net 

auto lo

iface lo inet loopback


auto eth0

allow-hotplug eth0

iface eth0 inet manual


auto wlan0

allow-hotplug wlan0

iface wlan0 inet manual

wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf


pi@raspberrypi ~ $ sudo cat /etc/wpa_supplicant/wpa_supplicant.conf 

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev

update_config=1


network={

ssid="SSID"

psk="PASSWORD"

key_mgmt=WPA-PSK

}


再保存一份作為wifi AP模式的配置文件使用

pi@raspberrypi ~ $ cat /etc/network/interfaces.ap

auto lo

iface lo inet loopback


auto eth0

allow-hotplug eth0

iface eth0 inet manual


#auto wlan0

#allow-hotplug wlan0

#iface wlan0 inet manual

#wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf


#auto wlan1

#allow-hotplug wlan1

#iface wlan1 inet manual

#wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf


allow-hotplug wlan0

iface wlan0 inet static

    address 192.168.20.1

    netmask 255.255.255.0



#up iptables-restore < /etc/network/iptables

分別做成兩個腳本文件,可以執行腳本更換模式:

轉換成wifi client模式

pi@raspberrypi ~ $ cat ./net.sh 

#!/bin/sh

#net.sh

sudo cp /etc/network/interfaces.net /etc/network/interfaces

sudo /etc/init.d/networking restart

echo "network mode set"


轉換成wifi AP模式

pi@raspberrypi ~ $ cat ./ap.sh 

#!/bin/bash

#ap.sh

sudo cp /etc/network/interfaces.ap /etc/network/interfaces

sudo /etc/init.d/networking restart

echo "set to ap mode"

在/etc/rc.local文件最后一行exit 0之前加上一行,使之默認啟動為AP模式,這樣在外面沒有顯示器的地方也可以通過手機或者電腦登陸raspberry pi實時更換模式了。


#!/bin/sh -e

#

# rc.local

#

# This script is executed at the end of each multiuser runlevel.

# Make sure that the script will "exit 0" on success or any other

# value on error.

#

# In order to enable or disable this script just change the execution

# bits.

#

# By default this script does nothing.


# Print the IP address

_IP=$(hostname -I) || true

if [ "$_IP" ]; then

  printf "My IP address is %s\n" "$_IP"

fi

sudo service hostapd start

sudo cp /etc/network/interfaces.ap /etc/network/interfaces

sh /home/pi/nat.sh

exit 0



這樣,raspberry pi啟動的時候就是AP模式,在家里可以用腳本轉換為普通wifi client模式。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

景宁| 泰宁县| 瑞昌市| 仙桃市| 阿瓦提县| 嘉鱼县| 建湖县| 沁水县| 紫阳县| 筠连县| 桐庐县| 张家口市| 陆良县| 木兰县| 巍山| 新乡市| 彭州市| 阿克苏市| 泸溪县| 河间市| 绍兴县| 临沭县| 赤水市| 乐山市| 长寿区| 临澧县| 江西省| 辽宁省| 白城市| 措勤县| 新兴县| 嘉荫县| 枣庄市| 固阳县| 上思县| 岳阳市| 班玛县| 衢州市| 鹰潭市| 永兴县| 阳城县|