# aptitude install hostapd
[kazu@foerster:4 ~]$ lsmod | grep wifi iwlwifi 166761 0 mac80211 192806 1 iwlwifi cfg80211 137243 2 mac80211,iwlwifi
/etc/hostapd/hostapd.conf
/etc/default/hostapdに、下記を記述する
DAEMON_CONF="/etc/hostapd/hostapd.conf"
root@foerster:/etc/hostapd# /usr/sbin/hostapd /etc/hostapd/hostapd.conf Configuration file: /etc/hostapd/hostapd.conf Using interface wlan0 with hwaddr 64:80:99:7a:1e:7c and ssid 'test'取り敢えず、動いているらしい...
$ vi /etc/hostapd/hostapd.conf [RETURN] # SSID to be used in IEEE 802.11 management frames ssid=hogehoge ←適切な SSID に書き換える
$ wpa_passphrase <SSIS> [passphrase]
# The loopback network interface auto lo iface lo inet loopback # The primary network interface allow-hotplug eth0 iface eth0 inet dhcp # Wired network interface ahto rht0 iface eth0 inet static address 0.0.0.0 # Wireless network interface auto wlan0 iface wlan0 inet static address 0.0.0.0 # Bridge network interface auto br0 iface br0 inet static address 192.168.1.253 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.1.255 gateway 192.168.1.1 dns-nameservers 192.168.1.1 bridge_ports eth0 wlan0 bridge_stp off
# aptitude install isc-dhcp-server