Link to home
Start Free TrialLog in
Avatar of jsilv09
jsilv09

asked on

How do i configure WPA2 on a cisco 850 router?

I am trying to enable/configure WPA2 on an cisco 850 series router.  I know it supports WPA2 but the site doesnt show me how to enable it.
Avatar of Jody Lemoine
Jody Lemoine
Flag of Canada image

I'm going to assume that you're not using wireless VLANs and that you're trying to configure WPA2-PSK rather than full WPA2.  The WPA2-PSK isn't too hard, but fulll WPA2 is much more involved and required some supporting systems outside of the Cisco router.  If you're trying to do wireless VLANs or full WPA2 with per-user RADIUS authentication, let me know and we can look at that.  For no VLANS and WPA2-PSK, the configuration goes as follows:

dot11 ssid Your-SSID
   authentication open
   authentication key-management wpa
   guest-mode
   wpa-psk ascii 0 Your-WPA2-Pre-shared-key
!
interface Dot11Radio0
 encryption mode ciphers aes-ccm
 !
 ssid Your-SSID

The dot11 section defines the SSID and the WPA key.  The Dot11Radio0 section tells the radio to use AES encryption and not TKIP encryption.  TKIP versus AES is the primary difference between WPA and WPA2.
ASKER CERTIFIED SOLUTION
Avatar of Narender Gakka
Narender Gakka
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Did this work out for you?
Avatar of jsilv09
jsilv09

ASKER

I found the solution