Skip to content

Commit

Permalink
Create wpa-supplicant.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
esn814 committed Apr 14, 2024
1 parent a63fb1a commit c58de53
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions docs/_klipper3d/wpa-supplicant.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Use this file to configure your wifi connection(s).
#
# Just uncomment the lines prefixed with a single # of the configuration
# that matches your wifi setup and fill in SSID and passphrase.
#
# You can configure multiple wifi connections by adding more 'network'
# blocks.
#
# See https://linux.die.net/man/5/wpa_supplicant.conf
# (or 'man -s 5 wpa_supplicant.conf') for advanced options going beyond
# the examples provided below (e.g. various WPA Enterprise setups).
#
# !!!!! HEADS-UP WINDOWS USERS !!!!!
#
# Do not use Wordpad for editing this file, it will mangle it and your
# configuration won't work. Use a proper text editor instead.
# Recommended: Notepad++, VSCode, Atom, SublimeText.
#
# !!!!! HEADS-UP MACOSX USERS !!!!!
#
# If you use Textedit to edit this file make sure to use "plain text format"
# and "disable smart quotes" in "Textedit > Preferences", otherwise Textedit
# will use incompatible characters and your network configuration won't
# work!

## WPA/WPA2 secured
#network={
# ssid="TN-RU2000"
# psk="Mauc7okDokAp"
#}

## Open/unsecured
#network={
# ssid="put SSID here"
# key_mgmt=NONE
#}

## WEP "secured"
##
## WEP can be cracked within minutes. If your network is still relying on this
## encryption scheme you should seriously consider to update your network ASAP.
network={
ssid="TN-RU2000"
key_mgmt=NONE
wep_key0="Mauc7okDokAp"
wep_tx_keyidx=0
}

# Uncomment the country your Pi is in to activate Wifi in RaspberryPi 3 B+ and above
# For full list see: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
country=SE # Sweden
#country=CA # Canada
#country=DE # Germany
#country=FR # France
#country=US # United States#### You should not have to change the lines below #####################

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

0 comments on commit c58de53

Please sign in to comment.