Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions WiFi_Check
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#
# */5 * * * * /usr/local/bin/WiFi_Check
#
export LANG=C
##################################################################
# Settings
# Where and what you want to call the Lockfile
Expand Down
12 changes: 12 additions & 0 deletions etc/network/interfaces
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# http://raspberrypi.stackexchange.com/questions/8267/wifi-connection-lost-after-about-12-hours
#/etc/network/interfaces

auto lo

iface lo inet loopback
iface eth0 inet dhcp

allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
13 changes: 13 additions & 0 deletions etc/wpa_supplicant/wpa_supplicant.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#/etc/wpa_supplicant/wpa_supplicant.conf

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

network={
ssid="ssid_leave_the_quotes"
proto=WPA RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
psk="password_leave_the_quotes"
}