この設定を行うことで、PCやタブレットをRasPi2に直接繋ぐことができるようになる。
$ sudo apt-get install hostapd~
$ sudo vi /etc/hostapd/hostapd.conf interface=wlan0 driver=nl80211 ssid=RasPi2 hw_mode=g channel=6 macaddr_acl=0 auth_algs=1 ignore_broadcast_ssid=0 wpa=2 wpa_passphrase=raspi2password wpa_key_mgmt=WPA-PSK wpa_pairwise=TKIP rsn_pairwise=CCMP
$ sudo vi /etc/default/hostapd DAEMON_CONF="/etc/hostapd/hostapd.conf"この1行だけでOK
$ sudo update-rc.d hostapd enable
WiFi APにしただけではIPアドレスが発行されないため使いにくいです。
RasPi2のWiFiに繋いだクライアントにIPアドレスを自動的に払い出します。
$ sudo apt-get install isc-dhcp-server
vi /etc/dhcp/dhcp.conf ... # option definitions common to all supported networks... #option domain-name "example.org"; #option domain-name-servers ns1.example.org, ns2.example.org; ... # If this DHCP server is the official DHCP server for the local # network, the authoritative directive should be uncommented. authoritative; ... subnet 192.168.100.0 netmask 255.255.255.0 { range 192.168.100.10 192.168.100.200; option broadcast-address 192.168.100.255; default-lease-time 600; max-lease-time 7200; }
$ sudo vi /etc/default/isc-dhcp-server # On what interfaces should the DHCP server (dhcpd) serve DHCP requests? # Separate multiple interfaces with spaces, e.g. "eth0 eth1". INTERFACES="wlan0"
$ sudo update-rc.d isc-dhcp-server enable
$ cat /etc/network/interfaces auto lo iface lo inet loopback iface eth0 inet static address 192.168.1.50 netmask 255.255.255.0 gateway 192.168.1.1 allow-hotplug wlan0 iface wlan0 inet static address 192.168.100.1 netmask 255.255.255.0 #iface default inet dhcp
$ cat /etc/network/interfaces auto lo iface lo inet loopback iface eth0 inet dhcp #address 192.168.1.50 #netmask 255.255.255.0 #gateway 192.168.1.1 allow-hotplug wlan0 iface wlan0 inet static address 192.168.100.1 netmask 255.255.255.0 iface default inet dhcp
allow-hotplug wlan0~ iface wlan0 inet static~ wireless-mode ad-hoc~ wireless-essid RasPi2~ address 192.168.1.1~ netmask 255.255.255.0~
wlan0を固定IPアドレスにしているのに、IPアドレスがセットされない
IPアドレスがセットされないからDHCPサーバが起動に失敗する
これはタイミングの問題のようです。
WiFiドングルが初期化されて、APモードとしてセットアップするのが早すぎるのかも。
以下のスクリプトをrc.localに入れてほぼ解決しています。
ifdown wlan0
sleep 30
ifup wlan0
sleep 10
/etc/init.d/isc-dhcp-server restart
wlan0を落としてしばらく待つ。
wlan0を起動して少し待つ。
dhcpサーバを再起動する。
これでも駄目なときがあります。
一度起動して、rebotすると大丈夫なときが多いです。
根本的な解決策を求む!