3

I have had a hard time with this Pi, finding the drivers was not a easy task, and now am experiencing a new issue.

My WiFi dongle is flashing green (which is a good sign). In the GUI WiFi setup it's saying I am connected, but problem is I don't have a IP address nor am I able to ping or connect to the internet.

Interfaces File

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
        ssid="Claro"
        psk="password12"
        proto=RSN
        key_mgmt=WPA-PSK
        group=CCMP TKIP
}

GNU nano 2.2.6 File: /etc/network/interfaces

auto lo
iface lo inet loopback

auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf

I am running Raspbian Wheezy.

angussidney
  • 703
  • 10
  • 21
TravJav92
  • 31
  • 3

2 Answers2

1

Try putting this in your /etc/network/interfaces file:

auto lo

iface lo inet loopback
iface eth0 inet dhcp

allow-hotplug wlan0
iface wlan0 inet dhcp

wpa-ssid "Claro"
wpa-psk "password12"
1''
  • 246
  • 2
  • 5
0

Changed to Jessie worked out of the box. Had issue with voltage because my usb port was hogging energy, as well as using a host-dependendent USB hub.. solution was to use independent USB hub or just use SSH, works amazing.

TravJav92
  • 31
  • 3