设为首页 收藏本站
查看: 981|回复: 0

[经验分享] Cisco AIR-AP1131G配置

[复制链接]

尚未签到

发表于 2018-7-13 06:50:53 | 显示全部楼层 |阅读模式
  1、实验拓扑
DSC0000.jpg

  2、实验步骤
  (1)了解cisco AP默认出厂配置
  hostname ap                 //默认主机名
  
enable secret Cisco         //默认密码,注意是大写的C
  
username Cisco password Cisco    //默认的用户名和密码,注意是大写的C
  
interface Dot11Radio0       //默认无线接口是关闭的,要记得no shutdown
  
shutdown
  
interface FastEthernet0     //默认有线接口F0是打开的
  
no shutdown
  
interface BVI1              //AP的管理接口
  
ip address 10.0.0.1 255.0.0.0
  
ip http server              //默认HTTP是打开
  
line con 0                  //默认console是没有密码
  
line vty 0 4                //默认用本地的用户和密码进VTY进行认证
  
login local
  (2)基本配置
  


  • ap>enable
  • Password:
  • ap#configure terminal
  • Enter configuration commands, one per line.  End with CNTL/Z.

  • ap(config)#interface bvI 1
  • ap(config-if)#ip add 10.1.1.11 255.255.255.0
  • ap(config-if)#no shut
  • ap(config-if)#exit
  • ap(config)#ip default-gateway 10.1.1.1
  

  (2)配置SSID和KEY
  


  • ap(config)#dot11 ssid dba           //对SSID为dba进行配置
  • ap(config-ssid)#authentication open //配置验证方式为open
  • ap(config-ssid)#authentication key-management wpa   //配置WPA加密
  • ap(config-ssid)#wap-psk ascii 1234567890            //配置密码
  • ap(config-ssid)#guest-mode                          //广播SSID,让用户可以看到
  • ap(config-ssid)#exit
  • ap(config)#interface dot11Radio 0           //进入无线接口
  • ap(config-if)#encryption mode ciphers tkip  //配置加密方式为TKIP
  • ap(config-if)#no shut                       //关联SSID到无线接口
  • ap(config-if)#end
  

  (3)查看配置
  


  • ap#show dot11 bssid
  • Interface      BSSID         Guest  SSID
  • Dot11Radio0   001d.71e2.7060  Yes  dba
  

  (4)查看验证与加密
  


  • ap#show dot11 associations all-client
  • Address           : bc76.708a.47f4     Name             : NONE
  • IP Address        : 0.0.0.0            Interface        : Dot11Radio 0
  • Device            : unknown            Software Version : NONE
  • CCX Version       : NONE               Client MFP       : Off

  • State             : Assoc              Parent           : self
  • SSID              : dba
  • VLAN              : 0
  • Hops to Infra     : 1                  Association Id   : 1
  • Clients Associated: 0                  Repeaters associated: 0
  • Tunnel Address    : 0.0.0.0
  • Key Mgmt type     : WPAv2 PS           Encryption       : TKIP
  • Current Rate      : 54.0               Capability       : WMM ShortHdr ShortSlot
  • Supported Rates   : 1.0 2.0 5.5 11.0 6.0 9.0 12.0 18.0 24.0 36.0 48.0 54.0
  • Voice Rates       : disabled
  • Signal Strength   : -40  dBm           Connected for    : 38 seconds
  • Signal to Noise   : 48  dBm            Activity Timeout : 60 seconds
  • Power-save        : On                 Last Activity    : 0 seconds ago
  • Apsd DE AC(s)     : NONE

  • Packets Input     : 177                Packets Output   : 9
  • Bytes Input       : 11596              Bytes Output     : 1584
  • Duplicates Rcvd   : 0                  Data Retries     : 0
  • Decrypt Failed    : 0                  RTS Retries      : 0
  • MIC Failed        : 0                  MIC Missing      : 0
  • Packets Redirected: 0                  Redirect Filtered: 0
  • Session timeout   : 0 seconds
  • Reauthenticate in : never
  

  (4)测试
DSC0001.jpg

  (5)配置文件
  


  • ap#show running-config
  • Building configuration...

  • Current configuration : 1263 bytes
  • !
  • version 12.4
  • no service pad
  • service timestamps debug datetime msec
  • service timestamps log datetime msec
  • service password-encryption
  • !
  • hostname ap
  • !
  • enable secret 5 $1$n0fn$QUTdypb/n1aa1d7FXLkTD0
  • !
  • no aaa new-model
  • !
  • resource policy
  • !
  • ip subnet-zero
  • !
  • !
  • !
  • dot11 ssid dba
  •    authentication open
  •    authentication key-management wpa version 2
  •    guest-mode
  •    wpa-psk ascii 7 03550958525A771B165049
  • !
  • !
  • !
  • username Cisco password 7 112A1016141D
  • !
  • bridge irb
  • !
  • !
  • interface Dot11Radio0
  • no ip address
  • no ip route-cache
  • !
  • encryption mode ciphers tkip
  • !
  • ssid dba
  • !
  • station-role root
  • 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 FastEthernet0
  • no ip address
  • no ip route-cache
  • duplex auto
  • speed auto
  • bridge-group 1
  • no bridge-group 1 source-learning
  • bridge-group 1 spanning-disabled
  • !
  • interface BVI1
  • ip address 10.1.1.11 255.255.255.0
  • no ip route-cache
  • !
  • ip default-gateway 10.1.1.1
  • ip http server
  • no ip http secure-server
  • ip http help-path http://www.cisco.com/warp/public/779/smbiz/prodconfig/help/eag
  • !
  • control-plane
  • !
  • bridge 1 route ip
  • !
  • !
  • !
  • line con 0
  • line vty 0 4
  • login local
  • !
  • end
  

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-536604-1-1.html 上篇帖子: Cisco交换机IP-MAC地址绑定设置 下篇帖子: Cisco设备模拟器软件(GNS3-0.8.3.1) 的安装及配置教程
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

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