WIFIHELL - 科技改变生活

 找回密码
 注册WIFIHELL

QQ登录

只需一步,快速开始

开启左侧

[其它] Configuring a 3602 for Wireless Surveying

[复制链接]
222ba 发表于 2015-7-16 15:34:07 | 显示全部楼层 |阅读模式

注册WIFIHELL,浏览更多技术贴!

您需要 登录 才可以下载或查看,没有账号?注册WIFIHELL

x
[size=12.1599998474121px]Cisco has recently released their new flagship access point, the 3602. This access point is nothing short of a beast. It has been completely redesigned with 4 transmit and 4 receive antennas and can sustain three spatial streams. This AP also features the first-to-market expansion slot that will be used for the Security and Spectrum Intelligence (SSI) module scheduled for release in Q1 of 2013. Cisco will then be releasing an 802.11ac capable module in the first half of 2013.
[size=12.1599998474121px]Now that you’ve invested (or are planning on investing) in this new generation of access points, you’re going to be out surveying new deployments with them. The only problem with this AP is it comes with a Lightweight IOS image preloaded. Cisco does offer a feature limited autonomous IOS that can be used for surveying – which is what we will be setting up and configuring today.
[size=12.1599998474121px]This process will require a few things:
  • Cisco 3600 Autonomous IOS (Available from Cisco.com)
  • TFTP Server (Available free from http://tftpd32.jounin.net)
  • Console Cable
  • Switch – Workstation and AP MUST be on the same VLAN
[size=12.1599998474121px]Below I have listed two options for you to choose from for converting your access point to the autonomous IOS required for active surveying. Option A is your easiest and most preferred method, Option B will work if you run into a problem using Option A.
[size=12.1599998474121px]Option A
Step 1: Change your IP Addressing on your TFTP Server to the following:
  • IP Address: 10.0.0.5
[size=12.1599998474121px]We have to do this because when we set the AP into default mode it will automatically use the address of 10.0.0.2 and will send a broadcast looking for a recovery image.
[size=12.1599998474121px]Step 2: Change the name of your Autonomous IOS to:
  • ap3g2-k9w7-tar.default
[size=12.1599998474121px]Step 3: Boot your AP while holding the MODE button. Do NOT release until you see “image_recovery: Download default IOS tar image tftp://255.255.255.255/ap3g2-k9w7-tar.default.
[size=12.1599998474121px]At this point you will see the IOS downloading to your AP.
[size=12.1599998474121px]Step 4: Once the download is complete your AP should reboot automatically. If not, then enter the following command to boot into the autonomous IOS.
ap: boot flash:/ap3g2-k9w7-mx.152-2.JA/ap3g2-k9w7-xx.152-2.JA
[size=12.1599998474121px]Now that we have the IOS booted we need to configure the boot statements to make sure we boot into the autonomous IOS at startup.
[size=12.1599998474121px]ap.>enable
Password: Cisco (default password)
ap.#config t
ap.(config)#boot system flash:/ap3g2-k9w7-mx.152-2.JA/ap3g2-k9w7-xx.152-2.JA
[size=12.1599998474121px]Now scroll down to the Configuration section and get ready to survey!
[size=12.1599998474121px]Option B
First things first, load up your TFTP server and set it to use the folder where your IOS is stored.
[size=12.1599998474121px]Now that your TFTP server is ready, we can get your access point ready to go.
[size=12.1599998474121px]My network is addressed as a 192.168.1.0/24 network and this is the addressing we will be using for the remaining commands in this guide.
[size=12.1599998474121px]Step 1: Boot your AP while holding the MODE button. Do NOT release until you see “image_recovery: Download default IOS tar image tftp://255.255.255.255/ap3g2-k9w7-tar.default.
[size=12.1599998474121px]Step 2: At the ‘ap:’ prompt, configure the following commands:
ap: set IP_ADDR 192.168.1.10
ap: set NETMASK 255.255.255.0
ap: set DEFAULT_ROUTER 192.168.1.1
[size=12.1599998474121px]Step 3: Prepare the AP for the TFTP transmission.
ap: ether_init
ap: tftp_init
[size=12.1599998474121px]Step 4: Using the tar command begin the TFTP transmission.
ap: tar -xtract tftp://(ServerIP)/Filename Flash:
eg: ap: tar -xtract tftp://192.168.1.5/ap3g2-k9w7-tar.152-2.JA.tar flash:
[size=12.1599998474121px]This portion may take some time, but keep an eye on it to make sure there are no prompts that may time the process out.
[size=12.1599998474121px]Step 5: Boot into the new autonomous IOS.
ap: boot flash:/ap3g2-k9w7-mx.152-2.JA/ap3g2-k9w7-xx.152-2.JA
[size=12.1599998474121px]Now that we have the IOS booted we need to configure the boot statements to make sure we boot into the autonomous IOS at startup.
[size=12.1599998474121px]ap.>enable
Password: Cisco (default password)
ap.#config t
ap.(config)#boot system flash:/ap3g2-k9w7-mx.152-2.JA/ap3g2-k9w7-xx.152-2.JA
[size=12.1599998474121px]SSID Configuration
Finally, we can now begin configuring the AP for surveying.
What I prefer to do is to create an SSID on the 2.4GHz frequency and a separate SSID for the 5GHz frequency. It makes it easier for me while in the field to select the correct band I want to survey. We will step through the process for creating both and some of the options we can use.
[size=12.1599998474121px]Step 1: Let’s create the 5GHz SSID:
ap.#Dot11 SSID Survey-5
ap.(config-ssid)#Authentication Open
ap.(config-ssid)#guest-mode – This tells the AP to broadcast this SSID.
[size=12.1599998474121px]Step 2: Now let’s configure the 5GHz Radio, Dot11Radio1.
ap.(config)#interface dot11radio1
ap.(config-if)#ssid Survey-5
ap.(config-if)#channel width 40-above – Set your channel width to what you will be using in production, either 20MHz or 40MHz.
ap.(config-if)#channel 5180 – Locks the AP into using channel 36. This will come in handy when setting up your channel scanning in your surveying program.
ap.(config-if)#power local 17 – this will configure the radio to use 50mW – Refer to Cisco Radio Transmit Power for a handy conversion chart.
ap.(config-if)#no shutdown
[size=12.1599998474121px]At this point you now have the ability to connect to the access point and can survey on 5GHz. Now let’s continue by configuring the 2.4GHz Radio.
[size=12.1599998474121px]Many of the steps will be the same, with minor differences.
[size=12.1599998474121px]Step 1: Let’s create the 2.4GHz SSID:
ap.#Dot11 SSID Survey-2
ap.(config-ssid)#Authentication Open
ap.(config-ssid)#guest-mode – This tells the AP to broadcast this SSID
[size=12.1599998474121px]Step 2: Now let’s configure the 2.4GHz Radio, Dot11Radio0.
ap.(config)#interface dot11radio0
ap.(config-if)#ssid Survey-2
ap.(config-if)#channel width 20 – This is the default and does not need to be entered, I just wanted you to know that 20MHz is the only option for 2.4GHz.
ap.(config-if)#channel 1 – Locks the AP into using channel 1. This will come in handy when setting up your channel scanning in your surveying program.
ap.(config-if)#power local 14 – This will configure the radio to use 25mW – Refer to Cisco Radio Transmit Power for a handy conversion chart.
ap.(config-if)#no shutdown
[size=12.1599998474121px]DHCP Configuration
You can enable your AP to be a DHCP server – allowing for quicker configuration changes in the field.
ap.(config)#interface BVI 1
ap.(config-if)#ip address 192.168.0.1 255.255.255.0
ap.(config-if)#exit
ap.(config)#ip dhcp excluded-address 192.168.0.1 192.168.0.5
ap.(config)#ip dhcp pool NAME
ap.(dhcp-config)#network 192.168.0.0 /24
ap.(dhcp-config)#default-router 192.168.0.1
[size=12.1599998474121px]You can now telnet into your AP using the default username Cisco and password Cisco.
[size=12.1599998474121px]Well, that’s it! You’re done and ready to go out into the wild blue yonder and survey to your hearts content!
In the next blog we will be using the SSIDs that we just created to perform surveys using Airmagnet Pro.
Please leave any feedback in the comments and feel free to ask questions.
[size=12.1599998474121px]Credit for the steps to TFTP the IOS goto Vinay Sharma

WIFIHELL | 万丰乐活 2020开启新的征程,好货不断!
关闭

站点推荐上一条 /1 下一条

万丰乐活

GMT+8, 2024-4-20 11:43

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表