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