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
!

Tuesday, September 14, 2010

Windows Command Line to show members of a local group

net localgroup <Group>

Pretty simple, but I only use this once every six months and I forget the command.
Maybe posting this will help me remember.