Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cisco 877w wireless radio setup

Status
Not open for further replies.

TrunkMan

Programmer
Jan 12, 2010
102
GB
Hi

Can someone please help with the config commands to setup a cisco 877w for basic wireless operation using wep/wpa.

Thanks for your time.
 
Here ya go m8:

!
dot11 ssid [SSID_NAME]
vlan 1
authentication open
guest-mode
!
!
interface Dot11Radio0
no ip address
no ip redirects
no ip unreachables
no ip proxy-arp
ip flow ingress
!
encryption vlan 1 key 1 size 128bit 7 [WEP_KEY] transmit-key
encryption vlan 1 mode wep mandatory
!
broadcast-key vlan 1 change 45
!
!
ssid [SSID_NAME]
!
speed basic-1.0 basic-2.0 basic-5.5 6.0 9.0 basic-11.0 12.0 18.0 24.0 36.0 48.0 54.0
station-role root access-point
world-mode dot11d country GB both
!
interface Dot11Radio0.1
encapsulation dot1Q 1 native
ip flow ingress
no cdp enable
bridge-group 1
bridge-group 1 subscriber-loop-control
bridge-group 1 spanning-disabled
bridge-group 1 block-unknown-source
no bridge-group 1 source-learning
no bridge-group 1 unicast-flooding
!

Obviously fill in the brackets with your own ssid and wep key.

Regards


ART
 
Oh and here is a WPA example:

!
dot11 ssid [SSID_NAME]
vlan 1
authentication open
authentication key-management wpa
wpa-psk ascii 7 [WPA_KEY]
!
interface Dot11Radio0
no ip address
no ip redirects
no ip unreachables
no ip proxy-arp
ip flow ingress
!
encryption vlan 1 mode ciphers tkip
!
!
ssid [SSID_NAME]
!
speed basic-1.0 basic-2.0 basic-5.5 6.0 9.0 basic-11.0 12.0 18.0 24.0 36.0 48.0 54.0
station-role root access-point
world-mode dot11d country GB both
!
interface Dot11Radio0.1
encapsulation dot1Q 1 native
ip flow ingress
no cdp enable
bridge-group 1
bridge-group 1 subscriber-loop-control
bridge-group 1 spanning-disabled
bridge-group 1 block-unknown-source
no bridge-group 1 source-learning
no bridge-group 1 unicast-flooding
!
 
Many thanks for your time and information art15t. I have managed to get the WPA config working and a client connected to the wireless network but the router continually pops up the following log :

*Dec 31 15:28:37.819: %DOT11-7-AUTH_FAILED: Station 0025.567b.af80 Authentication failed

My running config is as follows :


interface Dot11Radio0
no ip address
no ip redirects
no ip unreachables
no ip proxy-arp
ip flow ingress
!
encryption vlan 1 mode ciphers tkip
!
ssid CISCO_WIRELESS
vlan 1
authentication open
authentication key-management wpa
guest-mode
wpa-psk ascii 7 abcdefghijklmnopqr
!
world-mode dot11d country GB both
speed basic-1.0 basic-2.0 basic-5.5 6.0 9.0 basic-11.0 12.0 18.0 24.0 36.0 48.0 54.0
station-role root
!
interface Dot11Radio0.1
encapsulation dot1Q 1 native
ip flow ingress
no snmp trap link-status
no cdp enable
bridge-group 1
bridge-group 1 subscriber-loop-control
bridge-group 1 spanning-disabled
bridge-group 1 block-unknown-source
no bridge-group 1 source-learning
no bridge-group 1 unicast-flooding
!
interface Vlan1
ip address 192.168.1.1 255.255.255.0
!
ip classless
!
no ip http server
no ip http secure-server
!
!
control-plane
 
Possibly a timeout issue as wifi clients are often slow to respond in time so:

!
dot11 wpa handshake timeout 2000
!

This give the client time to authenticate!

ART
 
Thanks for your assistance art15t. I cannot seem to find where to input this command. Is this under the SSID, Global config mode ? or dotradio11 0.1 subif. Im using version 12.4.

Thanks for the help again.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top