首页 > 其他分享 >1.Controller的初始化

1.Controller的初始化

时间:2024-08-17 20:39:28浏览次数:7  
标签:10.1 初始化 ip vlan ap Controller interface yes

controller接口逻辑图

实验拓扑:

sw3560:

ip routing

vlan 2

name controller

vlan 3

name acs

vlan 4

name ap

int g0/24

sw acc vlan 4

int g0/22

sw acc vlan 3

spanning-tree portfast

int g0/23

sw trunk en dot1q

sw mode trunk

int vlan 2

ip add 10.1.2.254 255.255.255.0

int vlan 3

ip add 10.1.3.254 255.255.255.0

int vlan 4

ip add 10.1.4.254 255.255.255.0

controller:

enter administrative user name(24 characters max):admin(设置管理员用户名)

enter administrative password(24 characters max):wolfccie(管理员密码)

service interface ip address configuration[none][dhcp]:none(服务接口带外网管接口)

service interface ip address:10.1.5.1

service interface network:255.255.255.0

enable link aggregation(lag)[yes][no]:no(链路汇聚chann-group)

management interface ip address:10.1.2.1(管理接口ip)

management interface netmask:255.255.255.0

management interface default router:10.1.2.254(网关)

management interface vlan identifier(0=untagged):2(vlan id)

management interface port num [1 to 2]:1(只有1号口使用了)

management interface dhcp server ip address:10.1.2.254(dhcp服务器)

ap transport mode[layer2][lplayer3]:layer3(2层还是3层app)

ap manager interface ip address:10.1.2.2(ap管理接口)

ap-manager is on management subnet.using same values

ap manager interface dhcp server(10.1.2.254):(同一个网段使用相同的值)

virtual gateway ip address:1.1.1.1(虚拟ip地址,一般选用不可路由的地址)

mobility/rf group name:bjsec.mobility(漫游group,属于相同group的ap都是直接可以实现漫游的)

network name(ssid):bjsec.wpa.dot1x(创建ssid)

allow static ip address[yes][no]:no(允许静态配置ip地址吗?)

configure a radius server now?[yes][no]:yes(配置radius服务)

enter the radius server's address:10.1.3.241(radius服务器地址)

enter the radius server's port[1812]:

enter the radius server's secret:cisco(key是cisco)

enter country code (enter 'help' for a list of countries)[us]:cn(国家代码)

enable 802.11b network [yes][no]:yes(开启802.11b的网络)

enable 802.11a network [yes][no]:yes(开启802.11a的网络)

enable 802.11g network [yes][no]:yes(开始802.11g的网络)

enable auto-rf [yes][no]:yes(开启动态的频段调整)

configuration saved!

resetting system with new configuration...(重启)

user:admin

password:wolfccie

(cisco controller)>config ?

(cisco controller)>config>network webmode enable(开启https网管功能)

在ie输入 https://10.1.2.1

瘦ap是没有办法配置ip地址的。所以需要在交换机上配置dhcp服务器为ap分配地址网关及dns.

sw3560:

service dhcp

ip dhcp pool appool

network 10.1.4.0 255.255.255.0

default-router 10.1.4.254

dns-server 10.1.3.241

option 60 ascii "test.ap"(给ap发送的名字)

option 43 hex f1040a0102(16进制第一位必须写f1,第二位有一个controller就是04,2个就是2*4=8=0x08,后面就是服务器的ip地址的16进制10.1.2.2.ap的管理接口0a0102)

ap001d.e556.8b80#show ip int brie

ap001d.e556.8b80#reload(重启)

标签:10.1,初始化,ip,vlan,ap,Controller,interface,yes
From: https://www.cnblogs.com/smoke520/p/18364931

相关文章

  • 使用 onNuxtReady 进行异步初始化
    title:使用onNuxtReady进行异步初始化date:2024/8/16updated:2024/8/16author:cmdragonexcerpt:摘要:本文详细介绍了Nuxt.js框架中的onNuxtReady函数用途、使用场景及其实现步骤,并通过集成分析库的示例代码,指导开发者如何在应用初始化完成后执行异步操作,以优化用户体......
  • Efficient DETR:别再随机初始化了,旷视提出单解码层的高效DETR | CVPR 2021
    EfficientDETR结合密集检测和稀疏集合检测的优点,利用密集先验来初始化对象容器,弥补单层解码器结构与6层解码器结构的差距。在MSCOCO上进行的实验表明,仅3个编码器层和1个解码器层即可实现与最先进的目标检测方法竞争的性能,在CrowdHuman密集数据集上的性能也远远优于其它检......
  • limu|P10-14|多层感知机、激活函数、模型选择、欠拟合、过拟合、权重衰减、dropout、
    从感知机到多层感知机:感知机:只能产生线性分割面,不能拟合XOR为突破线性模型的限制,可以通过在网络中加入一个/多个隐藏层,即多层感知机MLP。但是如果只是单纯添加隐藏层,还是等价于一个线性模型(仿射变换的仿射变换还是仿射变换),没有带来益处!此时,需要加入额外因素以激发多层架构的潜......
  • 初始化
      1.系统初始化每台服务器1.1.关闭防火墙systemctlstopfirewalldsystemctldisablefirewalldsudoufwstatus#查看防火墙状态inactive关闭状态active开启状态sudoufwdisable#关闭防火墙1.2.关闭selinuxsed-i's/enforcing/disabled/'/etc/selinux/config#永久s......
  • 初始化一个Abpvnext项目
    文章目录一、安装ABPCLI安装更新二、使用CLI创建项目命令解析官网连接三、调整项目结构四、配置统一返回结果1.创建响应码枚举2.创建响应实体3.创建响应实体(泛型)五、配置并使用统一返回结果过滤器1.创建NoWrapperAttribute2.创建ResultWrapperFilter3.在HttpApiHost......
  • 手动实现 Spring 底层机制【初始化 IOC容器+依赖注入+BeanPostProcessor 机制+AOP】【
    手动实现Spring底层机制【初始化IOC容器+依赖注入+BeanPostProcessor机制+AOP】【任务阶段4】任务阶段1、2、3链接一、实现任务阶段1-编写自己Spring容器,实现扫描包,得到bean的class对象二、实现任务阶段2-扫描将bean信息封装到BeanDefinition对象,并......
  • 阿里大佬写的 Controller 太优雅了!
    优雅的controller@RestController@RequestMapping("/user/test")public class UserController1 {    private static Logger logger = LoggerFactory.getLogger(UserController1.class);    @Autowired    private UserService userService;    @Autow......
  • SMHC Three SD/MMC host controller (SMHC) interfaces
    SMHCThreeSD/MMChostcontroller(SMHC)interfaces1TheSMHC0controlsthedevicesthatcomplywiththeprotocolSecureDigitalMemory(SDmem-version3.0)2TheSMHC1controlsthedevicethatcomplieswiththeprotocolSecureDigitalI/O(SDIO-version......
  • ABP默认模板修改默认数据库类型并初始化数据库数据
    我这里以SQLite数据库为例,其他数据库类似。1.下载模板https://aspnetboilerplate.com/ 根据自己的需求选择版本和前端框架并填写项目名称,点击“Createmyproject!”即可下载一个ABP标准模板项目。  解压下载好的压缩包,找到目录:aspnet-core,接下来就可以用VS打开.sln......
  • RestController和Controller的区别和异同
     参考文章【SpringBoot】带你一文彻底搞懂RestController和Controller的关系与区别-CSDN博客https://blog.csdn.net/miles067/article/details/132567377 --------------------------------------------------------------------------------------------------------------......