ホームWiFiに接続できません。 - DHCPの問題ですか?

ホームWiFiに接続できません。 - DHCPの問題ですか?

Wi-Fi接続にwicdを使用しています。すべてがうまくいきましたが、今はもはやホームネットワークに接続できなくなりました。問題を解決しながら、接続が良く、インターネットにアクセスできるスマートフォンでホットスポットを設定してみました。 DHCPの問題かもしれませんか? wicd.logファイルの一部を添付しました。

2016/02/08 13:21:37 :: Connecting to wireless network asd23 2016/02/08 13:21:37 :: attempting to set hostname with dhclient 2016/02/08 13:21:37 :: using dhcpcd or another supported client may work better 2016/02/08 13:21:39 :: attempting to set hostname with dhclient 2016/02/08 13:21:39 :: using dhcpcd or another supported client may work better 2016/02/08 13:21:39 :: Putting interface down 2016/02/08 13:21:39 :: Releasing DHCP leases... 2016/02/08 13:21:39 :: attempting to set hostname with dhclient 2016/02/08 13:21:39 :: using dhcpcd or another supported client may work better 2016/02/08 13:21:40 :: Setting false IP... 2016/02/08 13:21:40 :: Stopping wpa_supplicant 2016/02/08 13:21:40 :: Flushing the routing table... 2016/02/08 13:21:40 :: Putting interface up... 2016/02/08 13:21:42 :: Generating psk... 2016/02/08 13:21:42 :: Attempting to authenticate... 2016/02/08 13:22:17 :: wpa_supplicant authentication may have failed. 2016/02/08 13:22:17 :: connect result is failed 2016/02/08 13:22:17 :: exiting connection thread 2016/02/08 13:22:18 :: Sending connection attempt result bad_pass 2016/02/08 13:22:18 :: attempting to set hostname with dhclient 2016/02/08 13:22:18 :: using dhcpcd or another supported client may work better 2016/02/08 13:22:19 :: attempting to set hostname with dhclient 2016/02/08 13:22:19 :: using dhcpcd or another supported client may work better

「認証に失敗した可能性があります」というメッセージが表示されますが、パスワードが正しいと確信しています。

すべての問題はVPN接続に問題があり、/etc/resolv.confでDNSサーバーを手動で設定しようとしたときに始まりました。

より多くの情報が必要な場合はお知らせください。

ありがとう、サミー

ベストアンサー1

wicdとwpa_supplicantの削除

wpa_supplicantの再インストール

sudo apt-get install wpasupplicant

/etc/apt/sources.list ファイルに「無料ではない」ソースを追加します。たとえば、次のようになります。

# Debian 8 "Jessie"
deb http://http.debian.net/debian/ jessie main contrib non-free

利用可能なパッケージのリストを更新してパッケージをインストールします。

apt-get update && apt-get install firmware-iwlwifi

モジュールのロード

modprobe -r iwlwifi ; modprobe iwlwifi

WPA2の構成

 nano /etc/network/interfaces

次のようにSSIDとPSKを使用してwlan0を設定します。

auto wlan0
iface wlan0 inet dhcp
wpa-ssid YOUR-SSID-HERE
wpa-psk YOUR-PASSWORD-HERE

wlan0を呼び出します。

ifup wlan0

次のいずれかの方法でネットワークサービスを再起動します。

/etc/init.d/networking restart

おすすめ記事