残念ながら、私のDlink DWA-110にはAPはありませんが、SoftAPはあります。 構成します。
動作するには、カーネル2.6.30以降が必要です。
端末を起動し、sudo suコマンドでスーパーユーザーモードに切り替える必要があります。
必要なパッケージをインストールします。
sudo apt-get install binutils hostapd libnl1 wireless-tools libiw29
標準構成のバックアップを作成しましょう
sudo mv /etc/hostapd/hostapd.conf /etc/hostapd/hostapd-bak.conf
Wifiインターフェースをご覧ください
ifconfig
のようなもの
eth0 Link encap:Ethernet
inet addr:192.168.1.2 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:77068 errors:0 dropped:0 overruns:0 frame:0
TX packets:55746 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:90178476 (90.1 MB) TX bytes:7529014 (7.5 MB)
Interrupt:31 Base address:0xc000
lo Link encap: (Loopback)
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:107457 errors:0 dropped:0 overruns:0 frame:0
TX packets:107457 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:32888450 (32.8 MB) TX bytes:32888450 (32.8 MB)
wlan0 Link encap:Ethernet
inet addr:10.42.43.1 Bcast:10.42.43.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:6611 errors:0 dropped:0 overruns:0 frame:0
TX packets:11693 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:755281 (755.2 KB) TX bytes:13857215 (13.8 MB)
Wlanも必要です。
設定を書きましょう
sudo gedit /etc/hostapd/hostapd.conf
Geditウィンドウが開きます
interface=wlan0
driver=nl80211
ssid=APnet
country_code=RU
hw_mode=g
channel=11
macaddr_acl=0
wpa=3
wpa_key_mgmt=WPA-PSK
wpa_passphrase=password
wpa_pairwise=TKIP CCMP
インターフェイス、SSID、およびパスワードを自分のものに置き換えることを忘れないでください。
私は通常、自宅で暗号化をオフにしました。
sudo gedit /etc/default/hostapd
コメント解除行
RUN_DAEMON="yes"
DAEMON_CONF="/etc/hostapd/hostapd.conf"
デーモンを実行する
sudo service hostapd start
すべてのセットアップが完了しました。 これで、独自のホームアクセスポイントができました。