Compare commits

..

No commits in common. "9afebe8438653fb7dcf5c2002a50dabac900c2a8" and "51a8de4299f5df4e9510c787dc53bc6bbfe3ff25" have entirely different histories.

3 changed files with 4 additions and 32 deletions

View File

@ -1299,31 +1299,3 @@ Fortunately `Zyxel` replaced the devices.
* 17:09:30 - 17:10:15: `ffl-ans-sw-access02`
* quickly replaced device and connections
* => power cycle of all APs in `tent 2&3`
031 2022.12.23 14:00 (ADP) | enable backoffice wifi in tent 1
--------------------------------------------------------------
**intro**:
The facility management moved into the "logistics" container
**problem**:
Because there is no AP inside the container the wifi experience sucks.
The printer is unable to connect to the wifi and the notebook has 0 bars.
**hotfix**:
Also distribute backoffice wifi from `tent 1` because it is the nearest ap.
Commited through (`d808775`).
Rolled out at around 14:00.
**impact**:
* quick wifi outage for tent 1 (a few seconds)
**validation**:
* the wifi experience still sucks
* scanning sometimes works
* i see the backoffice devices from the logistics container associating and reassociating multiple times per minute
**longterm**:
* install an ap inside the logistics container
* ETA for installation: `29.12.2022`

View File

@ -10,8 +10,8 @@ config interface 'mgmt'
option proto 'static'
option ipaddr '{{ ip }}'
option netmask '255.255.255.0'
option gateway '{{ mgmt_gateway | default('10.84.1.1') }}'
list dns '{{ mgmt_gateway | default('10.84.1.1') }}'
option gateway '{{ mgmt_gateway | default(10.84.1.1) }}'
list dns '{{ mgmt_gateway | default(10.84.1.1) }}'
config interface 'clients'
option type 'bridge'

View File

@ -29,7 +29,7 @@ config wifi-iface 'backoffice_radio0'
option ssid '{{ backoffice_wifi_ssid }}'
option encryption '{{ backoffice_wifi_encryption }}'
option key '{{ backoffice_wifi_psk }}'
{% if not location | regex_search('office-.*') and not inventory_hostname == 'ap-8f42' %}
{% if not location | regex_search('office-.*') %}
option disabled '1'
{% endif %}
@ -63,6 +63,6 @@ config wifi-iface 'backoffice_radio1'
option ssid '{{ backoffice_wifi_ssid }}'
option encryption '{{ backoffice_wifi_encryption }}'
option key '{{ backoffice_wifi_psk }}'
{% if not location | regex_search('office-.*') and not inventory_hostname == 'ap-8f42' %}
{% if not location | regex_search('office-.*') %}
option disabled '1'
{% endif %}