0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ラズパイにローカルAPを立ててみた

Last updated at Posted at 2019-06-22

#はじめに
未来電子テクノロジーでインターンをしています。
今回はラズパイにローカルAPを立ててみたので、その方法をご紹介します。
プログラミング初心者であるため、内容に誤りがあるかもしれません。
もし、誤りがあれば修正するのでどんどん指摘してください!

#ローカルAPを立ててみよう

  • hostapdモジュールを使えばAPにできる
  • hostapdをインストール
  • 有線、無線で同じネットワークセグメントにしたかったのでeth0とwlan0をブリッジしてbr0にIPを設定
  • /etc/network/interfaces
auto br0
iface br0 inet dhcp
	bridge_ports eth0 wlan0
  • /etc/dhcpcd.conf
denyinterfaces eth0
interface br0
static ip_address=192.168.0.1/24
static routers=192.168.0.1
static domain_name_servers=192.168.0.1
  • /etc/hostapd/hostapd.confでAPの設定
interface=wlan0
bridge=br0
ssid=xxxxxx
hw_mode=g
channel=3
wpa=2
wpa_passphrase=xxxxxxx
wpa_key_mgmt=WPA-PSK
rsn_pairwise=CCMP
  • /etc/default/hostapdの以下の部分をコメントアウト
  • 自動的にconfファイルを読み込んでくれる
DAEMON_CONF="/etc/hostapd/hostapd.conf"

#まとめ
これからもラズパイで遊んでいきまーす!!!

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?