LoginSignup
0
1

More than 3 years have passed since last update.

Raspberry Pi WiFi設定(WPA-PSKの暗号化方式でさらにステルス)

Last updated at Posted at 2021-01-02

WiFIアクセスポイントをステルスAP設定している人向け。
MACアドレスフィルタリングしている人向け。

1.ルーターにMACアドレスを登録する。
2.ラズパイにステルスAPの設定をする。

以下のものが表示されるはず。
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=JP

これの下に打つのは

network={
ssid="自分のWiFiのSSIDを入力"
scan_ssid=1
psk= 暗号化されたpassphraseを入力
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP
group=CCMP
}

参照したもの
1. RaspberryPiでWPA-PSKのWiFiに接続する方法: https://qiita.com/teao26/items/970a721b5351e4c9918c
2. ラズパイをWPA2とAESに接続: http://lime-piko.blog.jp/archives/11502644.html
3. Setting up a wireless LAN via the command line: https://www.raspberrypi.org/documentation/configuration/wireless/wireless-cli.md
4. Raspberry Pi ステルスSSIDへの接続方法: https://qiita.com/minatomirai21/items/6397ba560626f09fe42b
5. WiFi data encryption AES and WAP2: https://www.raspberrypi.org/forums/viewtopic.php?t=50312

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1