VOOZH about

URL: https://qiita.com/naokih1210/items/9e15ae09f552ca7e067b

⇱ RaspberryPiにおけるIEEE802.1X認証の設定法 #raspbian - Qiita


👁 Image
12

Go to list of users who liked

11

Share on X(Twitter)

Share on Facebook

Add to Hatena Bookmark

More than 5 years have passed since last update.

@naokih1210

RaspberryPiにおけるIEEE802.1X認証の設定法

12
Last updated at Posted at 2018-05-10

目的

職場や学校のネットワークにIEEE802.1X認証システムが導入されている環境下、GUIで認証設定ができないRaspberry Pi(OS: Raspbian)でネットワークに接続したい

環境

認証方法
EAP-MSCHAP v2

機器
Raspberry Pi3 modelB (Raspbian)

手順1

802.1Xを使用する際に必要なクライアントのサプリカント機能をサポートするツールの設定ファイルを書き換える

sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=0

network={
 key_mgmt=IEEE8021X
 eap=PEAP
 identity="******"
 password="******" 
 phase1="peaplabel=1"
 phase2="auth=MSCHAPV2"
}

identityにIDを、passwordにパスワードを入力する

手順2

ネットワークの設定ファイルの一部を書き換える

~~~~~

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

~~~~~

手順3

ターミナルで下記を実行

sudo wpa_supplicant -i eth0 -c /etc/wpa_supplicant/wpa_supplicant.conf -D wired &

処理が終了しない場合、Ctrl+Cで強制終了させる必要があります

手順4

ターミナルで下記を実行

以上で終了です

12

Go to list of users who liked

11
0

Go to list of comments

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
12

Go to list of users who liked

11