mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-15 11:42:52 -06:00

* 7699 Add Scope to Cluster * 7699 Serializer * 7699 filterset * 7699 bulk_edit * 7699 bulk_import * 7699 model_form * 7699 graphql, tables * 7699 fixes * 7699 fixes * 7699 fixes * 7699 fixes * 7699 fix tests * 7699 fix graphql tests for clusters reference * 7699 fix dcim tests * 7699 fix ipam tests * 7699 fix tests * 7699 use mixin for model * 7699 change mixin name * 7699 scope form * 7699 scope form * 7699 scoped form, fitlerset * 7699 review changes * 7699 move ScopedFilterset * 7699 move CachedScopeMixin * 7699 review changes * 10711 Add Scope to WirelessLAN * 10711 Add Scope to WirelessLAN * 10711 Add Scope to WirelessLAN * 10711 Add Scope to WirelessLAN * 10711 Add Scope to WirelessLAN * 7699 review changes * 7699 refactor mixins * 7699 _sitegroup -> _site_group * 7699 update docstring * fix model * remove old constants, update filtersets * 10711 fix GraphQL * 10711 fix API * 10711 add tests * 10711 review changes * 10711 add tests * 10711 add scope to detail template * 10711 add api test * Extend CSV test data --------- Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
50 lines
1.4 KiB
Markdown
50 lines
1.4 KiB
Markdown
# Wireless LANs
|
|
|
|
A wireless LAN is a set of interfaces connected via a common wireless channel, identified by its SSID and authentication parameters. Wireless [interfaces](../dcim/interface.md) can be associated with wireless LANs to model multi-acess wireless segments.
|
|
|
|
## Fields
|
|
|
|
### SSID
|
|
|
|
The service set identifier (SSID) for the wireless network.
|
|
|
|
### Group
|
|
|
|
The [wireless LAN group](./wirelesslangroup.md) to which this wireless LAN is assigned (if any).
|
|
|
|
### Status
|
|
|
|
The operational status of the wireless network.
|
|
|
|
!!! tip
|
|
Additional statuses may be defined by setting `WirelessLAN.status` under the [`FIELD_CHOICES`](../../configuration/data-validation.md#field_choices) configuration parameter.
|
|
|
|
### VLAN
|
|
|
|
Each wireless LAN can optionally be mapped to a [VLAN](../ipam/vlan.md), to model a bridge between wired and wireless segments.
|
|
|
|
### Authentication Type
|
|
|
|
The type of wireless authentication in use. Options include:
|
|
|
|
* Open
|
|
* WEP
|
|
* WPA Personal (PSK)
|
|
* WPA Enterprise
|
|
|
|
### Authentication Cipher
|
|
|
|
The security cipher used to apply wireless authentication. Options include:
|
|
|
|
* Auto (automatic)
|
|
* TKIP
|
|
* AES
|
|
|
|
### Pre-Shared Key
|
|
|
|
The security key configured on each client to grant access to the secured wireless LAN. This applies only to certain authentication types.
|
|
|
|
### Scope
|
|
|
|
The [region](../dcim/region.md), [site](../dcim/site.md), [site group](../dcim/sitegroup.md) or [location](../dcim/location.md) with which this wireless LAN is associated.
|