Hey folks,
I'm having trouble trying to connect to a PEAP secured network with slitaz (where one uses a username + password to connect) via WiFi.
I tried to set up a network condig file for /etc/init.d/network.sh but i cant get it to work.
trying to use wpa_supplicant also yielded no success yet.
What is the easiest way to do this?
maybe somebody can recommend a setup.
here's my config:
------------------------------------------------
# /etc/network.conf: SliTaz system wide networking configuration.
# Config file used by: /etc/init.d/network.sh
#
# Set default interface.
INTERFACE="eth0"
# Dynamic IP address.
# Enable/disable DHCP client at boot time.
DHCP="yes"
# Static IP address.
# Enable/disable static IP at boot time.
STATIC="no"
# Set IP address and netmask for a static IP.
IP="192.168.0.6"
NETMASK="255.255.255.0"
# Set broadcast address
BROADCAST="192.168.0.255"
# Set route gateway for a static IP.
GATEWAY="192.168.0.1"
# Set domain name
DOMAIN=""
# Set DNS server for a static IP.
DNS_SERVER="192.168.0.1"
# Wifi connection.
# Enable/disable wireless connection at boot time.
WIFI="yes"
# Wifi interface (iwconfig) and ESSID.
WIFI_INTERFACE="wlan0"
WIFI_ESSID="eduroam"
WIFI_KEY=""
WIFI_KEY_TYPE="PEAP"
WIFI_AP="MSCHAP2"
WIFI_MODE="managed"
WIFI_CHANNEL=""
WPA_DRIVER=""
# Wifi network requiring a user and password
WIFI_IDENTITY="allan"
WIFI_PASSWORD="XXXXXXX" // changed for obvious reasons