Code: Select all
auto lo
auto wlan0
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
#wireless-power off
iface wlan0 inet manual
address 192.168.1.7
gateway 192.168.1.1
netmask 255.255.255.0
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet static
address 192.168.1.7
gateway 192.168.1.1
netmask 255.255.255.0Code: Select all
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="REDACTEDSSID"
scan_ssid=1
psk="redactedpassword"
}Code: Select all
cd /etc/networkCode: Select all
sudo nano interfacesCode: Select all
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-ssid "your SSID"
wpa-psk "Your wifi password"And neither has mine but both eth0 and wlan0 connect when I boot/reboot. And both connect when booting if they are both connected.DougieLawson wrote:Yours may be simpler but it's missing auto eth0 and auto wlan0 to get the interfaces started at boot up.
Code: Select all
login as: pi
pi@192.168.16.27's password:
Linux raspberrypi 3.10.25+ #616 PREEMPT Mon Dec 23 18:13:02 GMT 2013 armv6l
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Fri Dec 27 06:35:37 2013
pi@raspberrypi ~ $ ifconfig
eth0 Link encap:Ethernet HWaddr b8:27:eb:19:f0:e0
inet addr:192.168.16.27 Bcast:192.168.16.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:114 errors:0 dropped:0 overruns:0 frame:0
TX packets:75 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:12250 (11.9 KiB) TX bytes:11407 (11.1 KiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
wlan0 Link encap:Ethernet HWaddr a0:f3:c1:25:7d:28
inet addr:192.168.16.24 Bcast:192.168.16.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:57 errors:0 dropped:2 overruns:0 frame:0
TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:7423 (7.2 KiB) TX bytes:1028 (1.0 KiB)
Code: Select all
pi@raspberrypi ~ $ cat /etc/network/interfaces
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-ssid "network-name"
wpa-psk "network-password"
allow-hotplug wlan1
iface wlan1 inet dhcp
wpa-ssid "network-name"
wpa-psk "network-password"
#iface wlan0 inet manual
#wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
#iface default inet dhcp
pi@raspberrypi ~ $OK, what software image are you using? The above is typical for Raspbian. What are you using?muchotreeo258 wrote:I dont have a network folder
Ah. I've never tried Pidora so I have no idea how the wifi is set up on it. Will take a look and see how it is configured but it is way past my bed time now so I will have to do that in the morning.muchotreeo258 wrote:pidora
muchotreeo258 wrote:I tried going to the network manager and adding my connection, and it worked on my last install but because of over overscan issues I had to reinstall, and now it won't work.