From 80a9a7f8bb51d6eeafefc66791dbfd88fcd3ad63 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 13 Jan 2011 10:03:20 +0000 Subject: Wicd: Add a template for WPA2-TTLS. svn path=/nixpkgs/trunk/; revision=25534 --- pkgs/tools/networking/wicd/default.nix | 6 ++++++ pkgs/tools/networking/wicd/wpa2-ttls | 19 +++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/tools/networking/wicd/wpa2-ttls (limited to 'pkgs/tools') diff --git a/pkgs/tools/networking/wicd/default.nix b/pkgs/tools/networking/wicd/default.nix index 70cc4a3b46cfb..fab91873a3858 100644 --- a/pkgs/tools/networking/wicd/default.nix +++ b/pkgs/tools/networking/wicd/default.nix @@ -74,6 +74,12 @@ stdenv.mkDerivation rec { python setup.py install --prefix=$out ensureDir $out/share/other cp other/dhclient.conf.template.default $out/share/other/dhclient.conf.template.default + + # Add a template for "WPA2 Enterprise" encryption as used, e.g., by the + # Eduroam network. Taken and adapted from + # . + cp -v "${./wpa2-ttls}" "$out/etc/encryption/templates/wpa2-ttls" + echo "wpa2-ttls" >> "$out/etc/encryption/templates/active" ''; meta = { diff --git a/pkgs/tools/networking/wicd/wpa2-ttls b/pkgs/tools/networking/wicd/wpa2-ttls new file mode 100644 index 0000000000000..7efdeffec84c4 --- /dev/null +++ b/pkgs/tools/networking/wicd/wpa2-ttls @@ -0,0 +1,19 @@ +name = WPA2-TTLS +author = various contributors +version = 1 +require identity *Identity anonymous_identity *Anonymous_identity password *Password ca_cert *Path_to_CA_Cert +----- +ctrl_interface=/var/run/wpa_supplicant +network={ + ssid="$_ESSID" + scan_ssid=$_SCAN + proto=WPA2 + key_mgmt=WPA-EAP + group=CCMP TKIP + eap=TTLS + identity="$_IDENTITY" + password="$_PASSWORD" + anonymous_identity="$_ANONYMOUS_IDENTITY" + ca_cert="$_CA_CERT" + phase2="auth=PAP" +} -- cgit 1.4.1