Wireless-setup

From wikipost
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Required files and packages to set up Wi-Fi for linux


  apt-get install wpa-supplicant wireless-tools


/etc/network/interfaces

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


/etc/wpa_supplicant/wpa_supplicant.conf

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