Thursday, September 23, 2010

Cisco access point wireless configuration snippet

I always forget one of these commands when setting up a simple wireless configuration on a cisco access point.

conf t
dot11 ssid temp
   authentication open
   authentication key-management wpa
   guest-mode
   wpa-psk ascii tempkey1
!
.....
interface Dot11Radio0
encryption mode ciphers aes-ccm
ssid temp
!

I am always looking to enable dhcp also.
Here is how you do it, although I think I have memorized it now.

ip dhcp pool test
  network 192.168.2.0 255.255.255.0
!

No comments:

Post a Comment