You are on page 1of 1

Zoom Technologies CCNP Lab Guide

WIRELESS LAN

*For a wireless router, there are two main interfaces. One wired and the other
wireless. The wired interface is the VLAN interface where users from the LAN can
be connected to the router. The wireless interface is the radio antenna through
which users with wireless end systems can connect to the router.

*Configure an ip address on the Dot11Radio interface

adslrouter#config t
adslrouter(config)# interface Dot11Radio 0
adslrouter(config-if)#ip address 192.168.200.1 255.255.255.0

*Configuring SSID and broadcast. Users trying to connect to the wireless network
now will be able to connect without any authentication

adslrouter(config-if)#ssid ccnp
adslrouter(config-if-ssid)#guest-mode
adslrouter(config-if-ssid)#authentication open
adslrouter(config-if-ssid)#exit
adslrouter(config-if)#channel 11
adslrouter(config-if)#speed default

*In case we require the users trying to connect to the wireless network to be
authenticated before they can access the resources, we can configure the
authentication mode and key in the following way.

adslrouter(config-if)#encryption mode wep mandatory


adslrouter(config-if)#encryption key 1 size 128 01234567899876543210012345
adslrouter(config-if)#exit

*Configure a DHCP pool on the wireless router to assign ip address to any user
trying to connect to the router through the wireless network.

adslrouter(config)#ip dhcp pool wireless


adslrouter(dhcp-config)#network 192.168.200.0 255.255
adslrouter(dhcp-config)#default-router 192.168.200.1
adslrouter(dhcp-config)#dns-server 192.168.200.1

69 | P a g e

You might also like