Сравнение версий

Ключ

  • Эта строка добавлена.
  • Эта строка удалена.
  • Изменено форматирование.

...

Подключим 2 ТД (WEP-200L и WEP-30L ) которые при подключении сразу перейдут в Cfg failed:

Блок кода
wlc-30#wlc# sh wlc ap
MAC address         Status             IP address        SW version         Hostname                         Ap-location                      Uptime             Clients               
                                                                                                                                                                 (2g/5g/6g/all)        
-----------------   ----------------   ---------------   ----------------   ------------------------------   ------------------------------   ----------------   -------------------   
68:13:e2:0e:7b:80   Cfg failed         10.11.0.31        2.8.9 build 52     WEP-200L                         default-location                 00,01:42:54        0/0/-/0               
ec:b1:e0:2b:35:90   Cfg failed         10.11.0.32        2.12.0 build 209   WEP-30L                          default-location                 00,00:11:55        0/0/-/0   

...

С помощью команды sh wlc configuration warnings мы можем вывести сообщение об ошибке из-за который ТД перешли в Cfg failed:

Блок кода
wlc-30#wlc# sh wlc configuration warnings 
No     Message                                                                                                                                                                        
----   ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------   
  1    AP '68:13:e2:0e:7b:80' location 'default-location', radio-2g-profile 'default_2g': invalid eirp-min 5 (profile), converted tx-power-min 2 is less than possible                
       tx-power-min 4 for country-code 'RU' (profile)                                                                                                                                 

  2    AP 'ec:b1:e0:2b:35:90' location 'default-location', radio-5g-profile 'default_5g': invalid eirp-max 23 (profile), converted tx-power-max 20 is greater than possible           
       tx-power-max 19 for country-code 'RU' (profile)   

...

Подключим ТД WOP-30L (с внешними антеннами) которая при подключении сразу перейдет в Cfg failed:

Блок кода
wlc-30#wlc# sh wlc ap
MAC address         Status             IP address        SW version         Hostname                         Ap-location                      Uptime             Clients               
                                                                                                                                                                 (2g/5g/6g/all)        
-----------------   ----------------   ---------------   ----------------   ------------------------------   ------------------------------   ----------------   -------------------   
ec:b1:e0:33:ba:10   Cfg failed         10.11.0.34        2.12.0 build 198   WOP-30L                          default-location                 00,00:01:07        0/0/-/0   

С помощью команды sh wlc configuration warnings мы можем вывести сообщение об ошибке из-за который ТД перешла в Cfg failed:

Блок кода
wlc-30#wlc# sh wlc configuration warnings 
No     Message                                                                                                                                                                        
----   ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------   
  1    AP 'ec:b1:e0:33:ba:10' location 'default-location', radio-2g-profile 'default_2g': invalid eirp-max 20 (profile), converted tx-power-max 20 is greater than possible           
       tx-power-max 16 for country-code 'RU' (profile)                                                                                                                                

  2    AP 'ec:b1:e0:33:ba:10' location 'default-location', radio-5g-profile 'default_5g': invalid eirp-max 23 (profile), converted tx-power-max 23 is greater than possible           
       tx-power-max 19 for country-code 'RU' (profile)     

Данный вывод аналогичен выводу из примера 1, за исключением того, что в конвертации у нас eirp равен tx-power. Данная проблема возникает когда при подключении для ТД не был создан профиль внешней антенны и не назначен в локации или индивидуальных настройках ТД.

Так как ни WLC, ни ТД не знают какая антенна используется, необходимо вручную создать профиль и применить ее ТД:

  • Создадим профиль антенны которая имеет 7 дБм коэффициент усиления антенны и 7 дБм коэффициент потерь на кабеле:
    Блок кода
    wlc# configure 
    wlc(config)# wlc
    wlc(config-wlc)# antenna-profile gain7_loss2
    wlc(config-wlc-antenna-profile)# antenna-gain 7
    wlc(config-wlc-antenna-profile)# cable-loss 2
  • Для привязки профиля к локации нам необходимо создать object-group с указанием необходимых ТД, это можно сделать двумя способами:
    • Object-group c указанием mac адреса ТД:
      Блок кода
      wlc(config)# object-group mac wop_mac
      wlc(config-object-group-mac)# mac address ec:b1:e0:33:ba:10
    • Object-group c указанием модели ТД:
      Блок кода
      wlc(config)# object-group ap-models wop_model
      wlc(config-object-group-ap-models)# ap-model WOP-30L
  • Выполним привязку профиля в локации для 2g с помощью object-group ap-models, и для 5g с помощью object-group mac:
    Блок кода
    wlc(config)# wlc
    wlc(config-wlc)# ap-location default-location 
    wlc(config-wlc-ap-location)# antenna-profile gain7_loss2 band 2g ap-models wop_model 
    wlc(config-wlc-ap-location)# 
    wlc(config-wlc-ap-location)# antenna-profile gain7_loss2 band 5g macs wop_mac
  • После коммита видим, что ТД перешла в статус Active и EIRP c TX-power отображается корректно. 
    Блок кода
    wlc# show wlc ap detailed 
    AP ec:b1:e0:33:ba:10:
        MAC address:              ec:b1:e0:33:ba:10
        Status:                   Active
        Status description:       --
        IP address:               10.11.0.34
        Board type:               WOP-30L
    Radio wlan0:
        Band:                     2g
        MAC address:              ec:b1:e0:33:ba:1f
        Status:                   Enabled
        Channel:                  11
        Frequency:                2462
        Bandwidth:                20
        TX power:                 15
        EIRP:                     20
    Radio wlan1:
        Band:                     5g
        MAC address:              ec:b1:e0:33:ba:18
        Status:                   Enabled
        Channel:                  64
        Frequency:                5320
        Bandwidth:                20
        TX power:                 18
        EIRP:                     23

Так же выполнить привязку антенны к ТД можно выполнить с помощью индивидуальных настроек ТД:

  • Создадим индивидуальную настройку для ТД и укажем ее модель:
    Блок кода
    wlc# configure 
    wlc(config)# wlc
    wlc(config-wlc)# ap ec:b1:e0:33:ba:10 
    wlc(config-wlc-ap)# ap-model WOP-30L
  • Укажем ранее созданный профиль антенн для каждого диапазона:
    Блок кода
    wlc(config-wlc-ap)# antenna-profile gain7_loss2 band 2g 
    wlc(config-wlc-ap)# antenna-profile gain7_loss2 band 5g  

Профиль антенны можно привязать только после указания модели ТД:

Блок кода
check wlc ap 'ec:b1:e0:33:ba:10': ap-model must be set when setting antenna profile
error - can't commit configuration.

Привязка профиля возможна только для ТД имеющих возможность подключения внешних антенн:

Блок кода
check wlc ap 'ec:b1:e0:33:ba:10': antenna-profile is not supported for board 'WEP-30L'
error - can't commit configuration.




















МодельКод страны2,4 ГГц5 ГГц6 ГГц
minimallowmiddlehighmaximalminimallowmiddlehighmaximalminimallowmiddlehighmaximal
WEP-1LRU361013161113151719-----
WEP-2LRU361013161113151719-----
WEP-3LRU11121415161113151719-----
WEP-200LRU4471016811141719-----
WEP-30LRU048121605101519-----
CN03691305101520-----
US0510152005101520-----
WEP-30L-ZRU048121605101519-----
CN03691305101520-----
US0510152005101520-----
WEP-3axRU681114161012151719-----
WEP-550KRU04812160510151905101519
WOP-2LRU361013161113151719-----
WOP-20LRU8101214161113151719-----
WOP-30LRU048121605101519-----

WOP-30LS

RU

036911036911-----

WOP-30LI

RU

048121605101519-----
WEP-2acRU5811141616101519-----
WEP-2ac SmartRU581114161113151719-----
WOP-2acRU5811141616101519-----
WOP-2ac:rev.BRU5811141616101519-----
WOP-2ac:rev.CRU5811141616101519-----
WOP-3L-EX RU11121415161113151719----

-

WEP-50LRU04812160481317----

-

...

МодельКорректность данный при проверке Код страны2,4 ГГц5 ГГц6 ГГц
КУ, дБмДиапазон возможных значений EIRP, дБм

КУ, дБм

Диапазон возможных значений EIRP, дБм
КУ, дБм
Диапазон возможных значений EIRP, дБм
От
ДоОтДоОтДо
WEP-1L
  •   
RU582051623---

WEP-2L

  •   

RU

582051623---

WEP-3L

  •   

RU

4152061723---
WEP-200L
  •   
RU371941223---
WEP-30L
  •   
RU33193322---
  •   
CN33163323---
  •   
US33233323---
WEP-30L-Z
  •   
RU33193322---
  •   
CN33163323---
  •   
US33233323---
WEP-2ac
  •   
RU510205623---
WEP-2ac Smart
  •   
RU510205623---
WEP-3ax    
  •   
RU391931322---
WEP-500K
  •   
RU442066233622
WEP-550K
  •   
RU442066233322
WOP-30LS
  •   
RU9920121223---
WOP-3L-EX 
  •   
RU51620516

23

-

-

-

WEP-50L
  •   
RU44206623---
WOP-30L*
  •   
RU-016-019---
WOP-20L*
  •   
RU-816-1119---
WOP-30LI*
  •   
RU-016-019---
WOP-2L*
  •   
RU-316-1119---
WOP-2ac*
  •   
RU-516-119---
WOP-2ac:rev.B*
  •   
RU-516-119---
WOP-2ac:rev.C*
  •   
RU-516-119---

...