Advertisement
enricop

WPA-Enterprise configurations we want to support

May 8th, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #In the WPA-Enterprise Illumos project we want to support the following configuations as they are defined in the wpa_supplicant.conf format
  2. #These configurations define the security policies used in Eduroam network, but they are common to many other environments
  3.  
  4. # EAP-PEAP configuration
  5. ctrl_interface=/var/run/wpa_supplicant
  6.  
  7. network={
  8.       ssid="eduroam"
  9.       key_mgmt=WPA-EAP
  10.       ca_cert="/etc/eduroam/ca.cer"
  11.       identity="[email protected]"
  12.       eap=PEAP
  13.       password="test"
  14.       phase2="auth=MSCHAPV2"
  15.      }
  16. network={
  17.       ssid="eduroam"
  18.       key_mgmt=IEEE8021X
  19.       ca_cert="/etc/eduroam/ca.cer"
  20.       identity="[email protected]"
  21.       eap=PEAP
  22.       password="test"
  23.       phase2="auth=MSCHAPV2"
  24.      }
  25.  
  26. # EAP-TLS configuration
  27. ctrl_interface=/var/run/wpa_supplicant
  28.  
  29. network={
  30.       ssid="eduroam"
  31.       key_mgmt=WPA-EAP
  32.       ca_cert="/etc/eduroam/ca.cer"
  33.       identity="[email protected]"
  34.       eap=TLS
  35.       client_cert="/etc/eduroam/user.crt"
  36.       private_key="/etc/eduroam/user.key"
  37.       private_key_passwd="xxxx"
  38.      }
  39. network={
  40.       ssid="eduroam"
  41.       key_mgmt=IEEE8021X
  42.       ca_cert="/etc/eduroam/ca.cer"
  43.       identity=" [email protected] "
  44.       eap=TLS
  45.       client_cert="/etc/eduroam/user.crt"
  46.       private_key="/etc/eduroam/user.key"
  47.       private_key_passwd="xxxx"
  48.      }
  49.  
  50. # EAP-TTLS configuration
  51. ctrl_interface=/var/run/wpa_supplicant
  52.  
  53. network={
  54.       ssid="eduroam"
  55.       key_mgmt=WPA-EAP
  56.       ca_cert="/etc/eduroam/ca.cer"
  57.       identity="[email protected]"
  58.       eap=TTLS
  59.       password="xxxx"
  60.       phase2="auth=PAP"
  61.      }
  62. network={
  63.       ssid="eduroam"
  64.       key_mgmt=IEEE8021X
  65.       ca_cert="/etc/eduroam/ca.cer"
  66.       identity="[email protected]"
  67.       eap=TTLS
  68.       password="xxxx"
  69.       phase2="auth=PAP"
  70.      }
  71.    
  72. # Only WPA-PSK is used. Any valid cipher combination is accepted.
  73. network={
  74.     ssid="example"
  75.     key_mgmt=WPA-PSK
  76.     psk=06b4be19da289f475aa46a33cb793029d4ab3db7a23ee92382eb0106c72ac7bb
  77.     priority=2
  78. }
  79.  
  80. # Shared WEP key connection (no WPA, no IEEE 802.1X) using Shared Key
  81. # IEEE 802.11 authentication
  82. network={
  83.     ssid="static-wep-test2"
  84.     key_mgmt=NONE
  85.     wep_key0="abcde"
  86.     wep_key1=0102030405
  87.     wep_key2="1234567890123"
  88.     wep_tx_keyidx=0
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement