#はじめに
未来電子テクノロジーでインターンをしています。
今回はラズパイにローカル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"
#まとめ
これからもラズパイで遊んでいきまーす!!!