When configuring a Cisco functionality for the very first time, it's
generally a good idea to proceed step-by-step. The same applies to e.g.
radius-servers (Linux/Freeradius - not running here yet).
With WEP/WPA/WPA2 i can help you out, as I have an experimental
_working_ config with 5 SSIDs, 5 VLANs with seperate encryption types
and keys for each VLAN, an external DHCP Server for ALL wireless VLANs
(2621-Router, 5 pools) and any PSK-Encryption available. The enterprise
functions I am still studying. I have not used the internal DHCP
function, as DHCP should also be available for ethernet connections.
Have you read the manual for your AP? Encryption is not intutitive, you
have to know significantly more compared to the installation of cheap
SOHO-WLAN devices.
I will give you a simplified extract from my config with dummy
passwords. No VLAN, one SSID, encryption WPA and/or WPA2. This option is
called "migration mode". You can also add WEP (see commented lines in
config example), which I have left out here. Your client should be able
to associate using:
WPA-PSK or WPA2-PSK (both working simultaneously on same SSID)
SSID: "my-experimental-ssid"
password: "my-experimental-password"
---cut---
dot11 ssid my-experimental-ssid
authentication open
authentication key-management wpa
! to add WEP, replace with:
! authentication key-management wpa optional
!
! make SSID "visible":
guest-mode
wpa-psk ascii 0 my-experimental-password
interface Dot11Radio0
no ip address
no ip route-cache
! here you define your encryption modes
! "migration mode" if more than one cipher selected
! to add WEP, change this to:
! "encryption mode ciphers aes-ccm tkip wep128"
! or:
! "encryption mode ciphers aes-ccm tkip wep40"
! then change your SSID-config as remarked under SSID config
! and add a WEP-transmit-key, e.g.
! encryption key 1 size 128bit 0 12345678901234567890123456
encryption mode ciphers aes-ccm tkip
ssid my-experimental-ssid
!
speed default
no power client local
station-role root access-point
! the rest is default:
no cdp enable
bridge-group 1
bridge-group 1 subscriber-loop-control
bridge-group 1 block-unknown-source
no bridge-group 1 source-learning
no bridge-group 1 unicast-flooding
bridge-group 1 spanning-disabled
interface BVI1
ip address <define_your_APs_IP_here>
no ip route-cache
interface FastEthernet0
no ip address
no ip route-cache
duplex auto
speed auto
no cdp enable
bridge-group 1
no bridge-group 1 source-learning
bridge-group 1 spanning-disabled
---cut---
I do not post the complete config, as I have the EMEA version, we have
different regulations here. I do not use "antenna gain". The manual of
my AP1231G says it's only an informational setting for use with WLSE, it
doesn't change the APs behaviour. The manual doesn't explain if this
value reflects dBi or dBd. I use "power local" settings which I
calculate manually for my antennas.
Now have success and fun
Greets from germany
Thomas Caspari
Am 18.03.2011 23:02, schrieb retlaw:
> Update......
>
> I took the DHCP out of the equation, and setup a separate DHCP
> server.. still no joy.
>
> Then, I removed WEP encryption from the Dot11Radio.. I now get
> connected and an address from the new server...
>
> next step, put DHCP back on the AP and see if it works without WEP.
>