ワイヤレスカバレッジを拡張しようとしています VersaLink 327WをワイヤレスレンジエクステンダーおよびAPとして使用 。
私は指示に従いました:
192.168.7.2
に設定します(これがイーサネット経由で接続されるメインルーターは192.168.7.1
であるため)。残念ながら、LinuxボックスからWiFi経由でデバイスに接続できません。
kernel: [run timestamp] wlan0: authenticated0
kernel: [run timestamp] iwlwifi 0000:03:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
kernel: [run timestamp] iwlwifi 0000:03:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
kernel: [run timestamp] iwlwifi 0000:03:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
kernel: [run timestamp] wlan0: associate with <<6*hex>> (try 1/3)
NetworkManager[pid]: <info> [wall timestamp] device (wlan0): supplicant interface state: scanning -> authenticating
NetworkManager[pid]: <info> [wall timestamp] device (wlan0): supplicant interface state: authenticating -> associating
kernel: [run timestamp] wlan0: associate with <<6*hex>> (try 2/3)
kernel: [run timestamp] wlan0: associate with <<6*hex>> (try 3/3)
kernel: [run timestamp] wlan0: association with <<6*hex>> timed out
つまり、authenticationは機能しますが、association(それが何であれ)は機能しません。
MacとAndroid電話のどちらからも接続できないため、これがLinuxで問題になる可能性はほとんどありません。
だから、私は今何ができますか?
ありがとう。
PS。 @Twistyから要求された追加情報:
localhost
IPを/etc/hosts
に設定してから、
# service network-manager restart
そしてこれを観察してください:
wpa_supplicant[pid]: wlan0: SME: Trying to authenticate with <<6*hex>> (SSID='sgv' freq=2437 MHz)
kernel: [run timestamp] wlan0: authenticate with <<6*hex>>
kernel: [run timestamp] wlan0: send auth to <<6*hex>> (try 1/3)
NetworkManager[pid]: <info> [wall timestamp] device (wlan0): supplicant interface state: scanning -> authenticating
nm-applet[pid]: Can't set a parent on widget which has a parent
nm-applet[pid]: gtk_widget_destroy: assertion 'GTK_IS_WIDGET (widget)' failed
kernel: [run timestamp] wlan0: authenticated
kernel: [run timestamp] iwlwifi 0000:03:00.0: No association and the time event is over already...
kernel: [run timestamp] wlan0: Connection to AP <<6*hex>> lost
nm-applet[pid]: gtk_widget_destroy: assertion 'GTK_IS_WIDGET (widget)' failed
kernel: [run timestamp] wlan0: aborting authentication with <<6*hex>> by local choice (Reason: 3=DEAUTH_LEAVING)
NetworkManager[pid]: <info> [wall timestamp] device (wlan0): supplicant interface state: authenticating -> disconnected
NetworkManager[pid]: <warn> [wall timestamp] device (wlan0): Activation: (wifi) association took too long, failing activation
NetworkManager[pid]: <info> [wall timestamp] device (wlan0): state change: config -> failed (reason 'ssid-not-found') [50 120 53]
NetworkManager[pid]: <info> [wall timestamp] manager: NetworkManager state is now DISCONNECTED
NetworkManager[pid]: <warn> [wall timestamp] device (wlan0): Activation: failed for connection 'sgv'
NetworkManager[pid]: <info> [wall timestamp] device (wlan0): state change: failed -> disconnected (reason 'none') [120 30 0]
ifconfig
は私の設定を無視しているようです。
今日も非常によく似た問題がありました。私にとってそれを修正したのは、NetworkManagerの設定を変更することでした。
/etc/NetworkManager/NetworkManager.conf
(場所はディストリビューションによって異なる場合があります)そのファイルに次の行を追加します。
[device]
wifi.scan-Rand-mac-address=no
Sudo service network-manager restart