Difference between revisions of "Wired to Wireless bridge single SSID"

From Teknologisk videncenter
Jump to: navigation, search
m
m (Setup the access point part 1)
Line 36: Line 36:
 
=Setup the access point part 1=
 
=Setup the access point part 1=
 
The access point - AP -'''wlan-ap0''' is a built in service module running its own IOS. To connect to the AP use the '''service-module''' command from the Routers IOS.
 
The access point - AP -'''wlan-ap0''' is a built in service module running its own IOS. To connect to the AP use the '''service-module''' command from the Routers IOS.
=Connecting  
+
=Connecting and disconnecting to the AP=
 +
To connect use the '''service-module''' command
 +
<source lang=cli>
 +
Router#<input>service-module wlan-ap 0 session</input>
 +
Trying 192.168.64.4, 2002 ... Open
 +
 
 +
Connecting to AP console, enter Ctrl-^ followed by x,
 +
then "disconnect" to return to router prompt
 +
 
 +
ap><input>enable</input>
 +
Password:<error>Default password Cisco</error>
 +
ap#<input>show ip interface brief</input>
 +
Interface                  IP-Address      OK? Method Status                Protocol
 +
BVI1                      192.168.64.15  YES DHCP  up                    up
 +
Dot11Radio0                unassigned      YES unset  administratively down down
 +
Dot11Radio1                unassigned      YES unset  administratively down down
 +
GigabitEthernet0          unassigned      YES other  up                    up
 +
ap#
 +
</source>
  
  
 
{{Source cli}}
 
{{Source cli}}

Revision as of 10:11, 15 June 2014

Basic interface configuration

Configure VLAN 1 with an IP address and associate wlan-ap0 with it.

Router#<input>conf t</input>
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#<input>int vlan 1</input>
Router(config-if)#<input>ip address 192.168.64.4 255.255.255.0</input>
Router(config-if)#<input>interface wlan-ap0</input>
The wlan-ap 0 interface is used for managing the embedded AP.
Please use the "service-module wlan-ap 0 session" command to console into the embedded AP

Router(config-if)#<input>ip unnumbered vlan 1</input>
Router(config-if)#<input>no shutdown</input>

Check interface status

Notice the IP address on VLAN 1 and wlan-ap0 interfaces

Router#<input>show ip interface brief</input>
Interface                  IP-Address      OK? Method Status                Protocol
ATM0                       unassigned      YES unset  administratively down down
Ethernet0                  unassigned      YES unset  administratively down down
GigabitEthernet0           unassigned      YES unset  up                    up
GigabitEthernet1           unassigned      YES unset  down                  down
GigabitEthernet2           unassigned      YES unset  down                  down
GigabitEthernet3           unassigned      YES unset  down                  down
GigabitEthernet4           unassigned      YES unset  down                  down
GigabitEthernet5           unassigned      YES unset  down                  down
GigabitEthernet6           unassigned      YES unset  down                  down
GigabitEthernet7           unassigned      YES unset  down                  down
GigabitEthernet8           unassigned      YES unset  administratively down down
Vlan1                      <notice>192.168.64.4</notice>    YES manual up                    up
Wlan-GigabitEthernet8      unassigned      YES unset  up                    up
wlan-ap0                   <notice>192.168.64.4</notice>    YES TFTP   up                    up

Setup the access point part 1

The access point - AP -wlan-ap0 is a built in service module running its own IOS. To connect to the AP use the service-module command from the Routers IOS.

Connecting and disconnecting to the AP

To connect use the service-module command

Router#<input>service-module wlan-ap 0 session</input>
Trying 192.168.64.4, 2002 ... Open

Connecting to AP console, enter Ctrl-^ followed by x,
then "disconnect" to return to router prompt

ap><input>enable</input>
Password:<error>Default password Cisco</error>
ap#<input>show ip interface brief</input>
Interface                  IP-Address      OK? Method Status                Protocol
BVI1                       192.168.64.15   YES DHCP   up                    up
Dot11Radio0                unassigned      YES unset  administratively down down
Dot11Radio1                unassigned      YES unset  administratively down down
GigabitEthernet0           unassigned      YES other  up                    up
ap#