Jeremy’s IT Lab lecture video:
Day 58 - Wireless Configuration
Commands
This lecture will use commands from many different areas, so I’ll just be linking them here.
Commands List
Show Commands
Transclude of Cisco-IOS-Commands#^show-vlanTransclude of Cisco-IOS-Commands#^show-intTransclude of Cisco-IOS-Commands#^show-etherchannelTransclude of Cisco-IOS-Commands#^show-dhcpTransclude of Cisco-IOS-Commands#^show-ntpConfiguration Commands
Transclude of Cisco-IOS-Commands#^global-vlanTransclude of Cisco-IOS-Commands#^int-generalTransclude of Cisco-IOS-Commands#^int-switchportTransclude of Cisco-IOS-Commands#^int-etherchannelTransclude of Cisco-IOS-Commands#^int-multilayer-sviTransclude of Cisco-IOS-Commands#^global-dhcpTransclude of Cisco-IOS-Commands#^priv-ntpTransclude of Cisco-IOS-Commands#^global-ntp
Wireless Configuration Info
There are many steps to configuring a wireless network on a network. In this lecture, we’ll be setting up a wireless network with (1) WLC, (2) APs, and (1) Multilayer Switch.
- The WLC connects to the Multilayer Switch via a Link Aggregation Group (LAG), which is EtherChannel.
- The Multilayer Switch will be running as the DHCP & NTP server. Which will provide the APs with addresses and their timezone.
Watch out: WLC and EtherChannels
- WLCs only support static LAG (EtherChannel).
- Therefore, they can’t run PAgP or LACP.
![]() |
|---|
| Wireless topology for this lecture |
WLC Ports & Interfaces
WLC ports are the physical ports that cables connect to.
WLC interfaces are the logical interfaces within the WLC (ie. SVIs on a switch)
- WLCs have a few different kinds of ports:
- Service Port
- A dedicated management port.
- Used for out-of-band management.
- Must connect to a switch access port because it only supports one VLAN.
- This port can be used to connect to the device while it is booting, perform system recovery etc.
- Redundancy Port
- This port is used to connect to another WLC to form a high availability (HA) pair.
- Distribution System Port
- These are the standard network ports that connect to the ‘distribution system’ (wired network) and are used for data traffic.
- These ports usually connect to switch trunk ports, and if multiple distribution ports are used, they can form a LAG.
- Console Port
- This is a standard console port, either RJ45 or USB.
- This is a standard console port, either RJ45 or USB.
- Service Port
- WLCs also have a few different kind of interfaces:
- Service Port Interface
- If the service port is used, the interface is bound to it and used for out-of-band management.
- Redundancy Management Interface
- When the two WLCs are connected by their redundancy ports, one WLC is ‘active’ and the other is ‘standby’.
- This interface can be used to connect to and manage the ‘standby’ WLC.
- Management Interface
- Used for management traffic such as Telnet, SSH, HTTP, HTTPS, RADIUS authentication, NTP, Syslog, etc.
- CAPWAP tunnels are also formed to/from the WLC’s management interface.
- Virtual Interface
- This interface is used when communicating with wireless clients to relay DHCP requests, perform web authentication, etc.
- Dynamic Interface
- These are the interfaces used to map a WLAN to a VLAN.
- For example, traffic from the ‘internal’ WLAN will be sent to the wired network from the WLC’s ‘internal’ dynamic interface.
- Service Port Interface
Multilayer Switch Configuration
- VLAN
- In this step, we’ll initialize the VLANs that we’ll use for management, internal use, and guests.
vlan 10name Management
vlan 100name Internal
vlan 200name Guest
- Interface
- In this step, we’ll setup the switchports to use the previously configured VLANs as well as set up SVIs for end-hosts to use as their default gateway.
int range f0/6 - 8switchport mode accessswitchport access vlan 10spanning-tree portfast
interface range f0/1 - 2channel-group 1 mode on
interface port-channel 1switchport mode trunkswitchport trunk allowed vlan 10,100,200
interface vlan 10ip address 192.168.1.1 255.255.255.0
interface vlan 100ip address 10.0.0.1 255.255.255.0
interface vlan 200ip address 10.1.0.1 255.255.255.0
- DHCP
- DHCP configurations so that end-hosts are automatically assigned IP addresses
ip dhcp pool VLAN10network 192.168.1.0 255.255.255.0default-router 192.168.1.1option 43 ip 192.168.1.100
ip dhcp pool VLAN100network 10.0.0.0 255.255.255.0default-router 10.0.0.1
ip dhcp pool VLAN100network 10.1.0.0 255.255.255.0default-router 10.1.0.1
- NTP
- This step is to configure the switch as an NTP master in order to provide the time for end-hosts
ntp master
What is Option 43?
- Option 43 can be used to tell the APs the IP address of their WLC
- (This is not necessary in this case, because the APs and the WLC are in the same subnet. The WLC will hear the APs broadcast CAPWAP discovery messages)
![]() |
|---|
| Wireless Network Post-Configuration |
WLC Configuration
1. WLC - Initial Setup
When booting into the WLC for the first time:
Step 1
- You’ll be asked whether or not you want to terminate autoinstall, which can be used to automatically download the WLC’s configuration from a TFTP server.
- We’ll pick ‘Yes’ which terminates the autoinstall and allows us to manually configure the WLC.
Step 2
- After that, you’ll be asked to set a system name for the WLC as well as configure a username/password to manage the WLC later on.
Step 3
- You’ll get a prompt asking whether or not you’d like to enable Link Aggregation Protocol (LAG).
- We’ll pick ‘Yes’
Step 4
- Then, we’ll have to setup the management interface configurations. This includes: ^wlc-initial-management
- Management Interface IP Address - 192.186.1.100
- Management Interface Netmask - 255.255.255.0
- Management Interface Default Router - 192.168.1.1
- Management Interface VLAN Identifier - 10
- Management Interface DHCP Server IP Address - 192.168.1.1
Step 5
- There are some extra options that you don’t need to fully understand for the CCNA, but they still have to be configured, they are:
- Virtual Gateway IP Address - 172.16.1.1
- Used when the WLC is communicating directly with wireless clients, while relaying DHCP messages for example
- Multicast IP Address - 239.239.239.239
- Mobility/RF Group Name - jITlab
- Virtual Gateway IP Address - 172.16.1.1
Step 6
- Afterwards, we are prompted for more configuration settings, which ask for:
- Network Name (SSID) - Internal
- Configure DHCP Bridging Mode - No
- Set to ‘No’ by default. If enabled, this will make the WLC transparent in DHCP communications between the clients and DHCP server, which makes it look like the clients are communicating directly with the DHCP server.
- Allow Static IP Addresses - Yes
- Allows clients to choose a static IP address if they want prefer.
- Configure a RADIUS Server now? - No
- The default WLAN security policy requires us to setup a RADIUS server.
- This is not necessary for the CCNA, however, you do need to know how to set up a Pre-Shared Key (PSK), which will be covered in the next section.
- Enter Country Code list - FR
Step 7
- Lastly, you’ll have to configure the last settings of the configuration wizard, which are:
- Enable 802.11b Network? - Default
- Enable 802.11a Network? - Default
- Enable 802.11g Network? - Default
- Enable Auto-RF? - Default
- Configure a NTP server now?
- We’ll pick ‘Yes’
- This will ask us to enter the NTP server’s IP address (192.168.1.1) and pick a polling interval, we’ll choose (3600).
2. WLC - Accessing the GUI
After completing the initial setup, we can now access the WLC’s management page.
- To do this, we have to use a browser on a device and enter the Management Interface IP Address (192.168.1.100) that we configured earlier.
- This will open up the Monitor page by default which shows us general information about the WLC.
2.1 Controller Tab
In here, we can configure the ==logical interfaces== that will later be connected to our physical ports in the WLC WLANs tab.
- To create a logical Interface, we press on the ‘New’ button in the top right.
- This will open a new page where we can select the Interface Name and VLAN ID.
- Pressing ‘Next’ will lead us to the next page where we can assign the following:
- VLAN Identifier
- IP Address
- Netmask
- Default Gateway
- Primary DHCP Server
Controller Tab - Lab Configuration
For our current lab, we’ll be setting up two interfaces:
- ‘Internal’ interface - VLAN ID (100)
- VLAN Identifier = 100
- IP Address = 10.0.0.100
- Netmask = 255.255.255.0
- Gateway = 10.0.0.1
- Primary DHCP Server = 10.0.0.1
- ‘Guest’ interface - VLAN ID (200)
- VLAN Identifier = 200
- IP Address = 10.1.0.100
- Netmask = 255.255.255.0
- Gateway = 10.1.0.1
- Primary DHCP Server = 10.1.0.1
2.2 WLANs Tab
In this tab, we can assign the logical interfaces that we’ve created in the WLC Controllers tab to our physical ports on the WLC.
- We create a WLAN by going to the top right, selecting ‘Create New’ and pressing the ‘Go’ button.
- This will open a new page for us to create the WLAN, and it will ask us for these variables:
- Type
- Profile Name
- SSID
- ID
General Sub-Menu
- After applying the previous variables, we’ll be sent to a new page where we can change the following:
- WLAN status (Enabled or Disabled)
- Assigning a logical interface.
Security Sub-Menu
- We can go into the ‘Security’ sub-menu and enable a few security functions, which are:
- Layer 2
- Layer 2 WPA+WPA2 security
- Pre-Shared Key (PSK) authentication along with the PSK format (ASCII
orHEX) and the key itself.
- Layer 3
- Web Policy security
- Web Policy type, there are multiple types:
- Web Authentication
- After the wireless clients gets an IP address and tries to access a web page, they will have to enter a username and password to authenticate.
- Web Passthrough
- Similar to the above, but no username or password are required. A warning or statement is displayed and the client simply has to agree to gain access to the Internet.
- Conditional and Splash Page Web Direct
- They are similar options, but additionally require 802.1X Layer 2 authentication.
- Web Authentication
- Layer 2
QoS Sub-Menu
- Lastly, we can go to the ‘QoS’ sub-menu to set the QoS settings on our WLC.
- There are four options we can use:
- Bronze - (Background)
- Silver - (Best Effort)
- Gold - (Video)
- Platinum - (Voice)
WLAN Tab - Lab Configuration
For our current lab, we’ll be setting up two WLANs:
- ‘Internal’ WLAN
- We’ve already set this up in the initial setup phase, so we only have to configure its settings.
- General Sub-Menu
- WLAN Status = Enabled
- Logical Interface = Internal
- Security Sub-Menu
- Layer 2 Security = WPA+WPA2
- Authentication Mode = PSK
- QoS Sub-Menu
- QoS Mode = Silver (Best Effort)
- ‘Guest’ WLAN
- Type = WLAN
- Profile Name = Guest
- SSID = Guest
- ID = 2
- General Sub-Menu
- WLAN Status = Enabled
- Logical Interface = Guest
- Security Sub-Menu
- Layer 2 Security = WPA+WPA2
- Authentication Mode = PSK
- QoS Sub-Menu
- QoS Mode = Silver (Best Effort)
2.3 Wireless Tab
This tab allows us to view APs that are currently connected to the WLC.
- Opening an AP will let us view its settings and configurations, including things like:
- AP Name
- Location
- AP Mode (Local, FlexConnect, Monitor, etc.)
2.4 Management Tab
This tab allows us to see information about the WLC operations.
- For example, you can see the current SNMP protocol being used, HTTP & HTTPS status, if SSH or Telnet are allowed or not, etc.
2.5 Security Tab
This tab gives us access over a wide range of security-related features. For the CCNA, it’s enough for you to know about CPU ACLs.
- CPU ACLs are used to limit access to the CPU of the WLC. This limits which devices will be able to connect to the WLC via SSH/Telnet, HTTP/HTTPS, retrieve SNMP information from the WLC, etc.
Jeremy’s IT Lab előadás videó:
58. Nap - Vezeték Nélküli Konfiguráció (Wireless Configuration)
Parancsok (Commands)
Ez az előadás számos különböző terület parancsait használja, ezért ezeket itt linkeljük.
Parancsok listája (Commands List)
Show parancsok
Transclude of Cisco-IOS-Commands#^show-vlanTransclude of Cisco-IOS-Commands#^show-intTransclude of Cisco-IOS-Commands#^show-etherchannelTransclude of Cisco-IOS-Commands#^show-dhcpTransclude of Cisco-IOS-Commands#^show-ntpKonfigurációs parancsok
Transclude of Cisco-IOS-Commands#^global-vlanTransclude of Cisco-IOS-Commands#^int-generalTransclude of Cisco-IOS-Commands#^int-switchportTransclude of Cisco-IOS-Commands#^int-etherchannelTransclude of Cisco-IOS-Commands#^int-multilayer-sviTransclude of Cisco-IOS-Commands#^global-dhcpTransclude of Cisco-IOS-Commands#^priv-ntpTransclude of Cisco-IOS-Commands#^global-ntp
Vezeték Nélküli Konfiguráció Információk (Wireless Configuration Info)
Egy vezeték nélküli hálózat konfigurálása több lépésből áll. Ebben az előadásban egy (1) WLC-ből, (2) AP-ból és (1) Multilayer Switch-ből álló vezeték nélküli hálózatot építünk fel.
- A WLC egy Link Aggregation Group (LAG), azaz EtherChannel segítségével csatlakozik a Multilayer Switch-hez.
- A Multilayer Switch működik DHCP és NTP szerverként is, amely biztosítja az AP-k számára a címkiosztást és az időzóna/időszinkronizációt.
Figyelem: WLC és EtherChannels
- A WLC-k kizárólag statikus LAG-ot (EtherChannel-t) támogatnak.
- Ezért nem képesek futtatni sem a PAgP, sem az LACP protokollt.
![]() |
|---|
| Vezeték nélküli topológia ehhez az előadáshoz |
WLC Portok és Interfészek (WLC Ports & Interfaces)
A WLC portjai azok a fizikai portok, amelyekhez a kábelek csatlakoznak.
A WLC interfészei a WLC-n belüli logikai interfészek (hasonlóan a switcheken található SVI-khez)
- A WLC-k többféle porttal rendelkeznek:
- Service Port
- Egy dedikált menedzsment port.
- Out-of-band felügyeletre szolgál.
- Kötelezően egy switch access portjához kell csatlakoznia, mert kizárólag egyetlen VLAN-t támogat.
- Ez a port használható a készülékhez való csatlakozásra bootolás közben, rendszer-helyreállítás (system recovery) elvégzésére stb.
- Redundancy Port
- Ez a port egy másik WLC-hez való csatlakozásra szolgál egy High Availability (HA) redundáns pár kialakításához.
- Distribution System Port
- Ezek a szabványos hálózati portok, amelyek a 'distribution system'-hez (a vezetékes hálózathoz) kapcsolódnak, és az adatforgalom továbbítására szolgálnak.
- Ezek a portok általában switch trunk portokhoz csatlakoznak, és amennyiben több distribution port kerül felhasználásra, LAG-ot (EtherChannel-t) alkothatnak.
- Console Port
- Szabványos konzolport, RJ45 vagy USB kivitelben.
- Szabványos konzolport, RJ45 vagy USB kivitelben.
- Service Port
- A WLC-k többféle logikai interfésszel is rendelkeznek:
- Service Port Interface
- Amennyiben a service port használatban van, ez az interfész ahhoz van kötve, és out-of-band menedzsmentre szolgál.
- Redundancy Management Interface
- Amikor két WLC össze van kapcsolva a redundancy portjaikon keresztül, az egyik WLC 'active' (aktív), a másik 'standby' (készenléti) állapotban van.
- Ez az interfész használható a 'standby' WLC elérésére és konfigurálására/menedzselésére.
- Management Interface
- A menedzsment forgalomhoz használatos, mint például Telnet, SSH, HTTP, HTTPS, RADIUS hitelesítés, NTP, Syslog stb.
- A CAPWAP alagutak is a WLC management interfészéhez és interfészéből épülnek fel.
- Virtual Interface
- Ez az interfész a vezeték nélküli kliensekkel való közvetlen kommunikáció során kerül felhasználásra a DHCP kérések továbbítására (relay), webes hitelesítés végrehajtására stb.
- Dynamic Interface
- Ezek az interfészek feleltetik meg a WLAN-okat egy adott VLAN-nak.
- Például a belső ('internal') WLAN forgalma a vezetékes hálózat felé a WLC 'internal' dynamic interfészén keresztül továbbítódik.
- Service Port Interface
Multilayer Switch Konfiguráció
- VLAN
- Ebben a lépésben inicializáljuk a menedzsment, a belső forgalom és a vendégek számára használandó VLAN-okat.
vlan 10name Management
vlan 100name Internal
vlan 200name Guest
- Interface
- Ebben a lépésben beállítjuk a switchportokat a korábban konfigurált VLAN-ok használatára, valamint létrehozzuk az SVI-ket, amelyeket a végponti eszközök default gateway-ként fognak használni.
int range f0/6 - 8switchport mode accessswitchport access vlan 10spanning-tree portfast
interface range f0/1 - 2channel-group 1 mode on
interface port-channel 1switchport mode trunkswitchport trunk allowed vlan 10,100,200
interface vlan 10ip address 192.168.1.1 255.255.255.0
interface vlan 100ip address 10.0.0.1 255.255.255.0
interface vlan 200ip address 10.1.0.1 255.255.255.0
- DHCP
- DHCP konfigurációk annak érdekében, hogy a végponti eszközök automatikusan IP-címet kapjanak
ip dhcp pool VLAN10network 192.168.1.0 255.255.255.0default-router 192.168.1.1option 43 ip 192.168.1.100
ip dhcp pool VLAN100network 10.0.0.0 255.255.255.0default-router 10.0.0.1
ip dhcp pool VLAN100network 10.1.0.0 255.255.255.0default-router 10.1.0.1
- NTP
- Ez a lépés a switch NTP masterként történő beállítását szolgálja, hogy pontos időt biztosítson a végponti eszközök számára
ntp master
Mi az az Option 43?
- Az Option 43 segítségével megadható az AP-k számára a WLC-jük IP-címe
- (Ebben a konkrét esetben ez nem feltétlenül szükséges, mivel az AP-k és a WLC ugyanabban az alhálózatban vannak. A WLC megkapja az AP-k által küldött broadcast CAPWAP discovery üzeneteket)
![]() |
|---|
| Vezeték nélküli hálózat konfiguráció után |
WLC Konfiguráció
1. WLC - Kezdeti beállítás (Initial Setup)
Amikor először indítjuk el a WLC-t:
1. Lépés (Step 1)
- Megkérdezi, hogy meg akarjuk-e szakítani az autoinstall folyamatot, amellyel automatikusan letölthető lenne a WLC konfigurációja egy TFTP szerverről.
- A 'Yes'-t választjuk, ami leállítja az autoinstall-t, és lehetővé teszi a WLC manuális beállítását.
2. Lépés (Step 2)
- Ezt követően meg kell adni a WLC rendszernévét (system name), valamint be kell állítani egy username / password párost a WLC későbbi felügyeletéhez.
3. Lépés (Step 3)
- Egy prompt rákérdez, hogy szeretnénk-e engedélyezni a Link Aggregation Protocol-t (LAG).
- A 'Yes'-t választjuk.
4. Lépés (Step 4)
- Ezután be kell állítanunk a management interfész paramétereit:
- Management Interface IP Address - 192.186.1.100
- Management Interface Netmask - 255.255.255.0
- Management Interface Default Router - 192.168.1.1
- Management Interface VLAN Identifier - 10
- Management Interface DHCP Server IP Address - 192.168.1.1
5. Lépés (Step 5)
- Van néhány további beállítás, amelyeket nem szükséges teljes mélységében ismerni a CCNA vizsgához, de konfigurálni kell őket:
- Virtual Gateway IP Address - 172.16.1.1
- Akkor használatos, amikor a WLC közvetlenül kommunikál a vezeték nélküli kliensekkel, például DHCP üzenetek továbbításakor.
- Multicast IP Address - 239.239.239.239
- Mobility/RF Group Name - jITlab
- Virtual Gateway IP Address - 172.16.1.1
6. Lépés (Step 6)
- Ezt követően további konfigurációs beállítások következnek:
- Network Name (SSID) - Internal
- Configure DHCP Bridging Mode - No
- Alapértelmezés szerint 'No'. Ha engedélyezve van, a WLC transzparens módon közvetíti a DHCP kommunikációt a kliensek és a DHCP szerver között, mintha a kliensek közvetlenül a DHCP szerverrel kommunikálnának.
- Allow Static IP Addresses - Yes
- Lehetővé teszi a kliensek számára a statikus IP-cím használatát, amennyiben azt részesítik előnyben.
- Configure a RADIUS Server now? - No
- Az alapértelmezett WLAN biztonsági házirend megkövetelné egy RADIUS szerver beállítását.
- Ez a CCNA vizsgához nem szükséges, viszont a Pre-Shared Key (PSK) beállítását ismerni kell, amit a következő szakasz tárgyal.
- Enter Country Code list - FR
7. Lépés (Step 7)
- Végezetül a konfigurációs varázsló utolsó beállításait kell megadni:
- Enable 802.11b Network? - Default
- Enable 802.11a Network? - Default
- Enable 802.11g Network? - Default
- Enable Auto-RF? - Default
- Configure a NTP server now?
- A 'Yes'-t választjuk.
- Megadjuk az NTP szerver IP-címét (192.168.1.1) és kiválasztjuk a lekérdezési időközt (polling interval), ami (3600) másodperc lesz.
2. WLC - A grafikus felület (GUI) elérése
A kezdeti beállítások befejezése után elérhetjük a WLC webes menedzsment felületét.
- Ehhez egy eszközön böngészőt nyitunk, és beírjuk a korábban beállított Management Interface IP-címet (192.168.1.100).
- Alapértelmezés szerint a Monitor oldal nyílik meg, amely általános információkat jelenít meg a WLC-ről.
2.1 Controller fül (Controller Tab)
Itt konfigurálhatjuk azokat a ==logikai interfészeket (logical interfaces)==, amelyeket később a fizikai portokhoz rendelünk a WLC WLANs fülön.
- Új logikai Interface létrehozásához a jobb felső sarokban található 'New' gombra kattintunk.
- Megnyílik egy új oldal, ahol kiválaszthatjuk az Interface Name-et és a VLAN ID-t.
- A 'Next' gombra kattintva megadhatjuk a következő paramétereket:
- VLAN Identifier
- IP Address
- Netmask
- Default Gateway
- Primary DHCP Server
Controller fül - Labor konfiguráció
A jelenlegi laborunkhoz két interfészt hozunk létre:
- 'Internal' interface - VLAN ID (100)
- VLAN Identifier = 100
- IP Address = 10.0.0.100
- Netmask = 255.255.255.0
- Gateway = 10.0.0.1
- Primary DHCP Server = 10.0.0.1
- 'Guest' interface - VLAN ID (200)
- VLAN Identifier = 200
- IP Address = 10.1.0.100
- Netmask = 255.255.255.0
- Gateway = 10.1.0.1
- Primary DHCP Server = 10.1.0.1
2.2 WLANs fül (WLANs Tab)
Ezen a fülön rendelhetjük hozzá a WLC Controllers fülön létrehozott logikai interfészeket a WLC fizikai portjaihoz.
- Új WLAN létrehozásához a jobb felső sarokban kiválasztjuk a 'Create New' opciót, majd a 'Go' gombra kattintunk.
- Ekkor megnyílik egy új konfigurációs felület, ahol a következő változókat kell megadni:
- Type
- Profile Name
- SSID
- ID
General almenü
- A fenti paraméterek alkalmazása után a következő oldalon módosíthatjuk:
- WLAN státuszát (Enabled vagy Disabled)
- A hozzárendelt logikai interfészt.
Security almenü
- A 'Security' almenüben különféle biztonsági funkciókat engedélyezhetünk:
- Layer 2
- Layer 2 WPA+WPA2 biztonság
- Pre-Shared Key (PSK) hitelesítés, a PSK formátuma (ASCII
vagyHEX) és maga a megosztott kulcs.
- Layer 3
- Web Policy biztonság
- Web Policy típusok:
- Web Authentication
- Miután a vezeték nélküli kliens IP-címet kapott és megpróbál megnyitni egy weboldalt, egy felhasználónevet (username) és jelszót (password) kell megadnia a hitelesítéshez.
- Web Passthrough
- Hasonló a fentihez, de nincs szükség felhasználónévre vagy jelszóra. Egy figyelmeztetés vagy feltételrendszer jelenik meg, amit a kliensnek csupán el kell fogadnia az internet-hozzáféréshez.
- Conditional és Splash Page Web Direct
- Hasonló lehetőségek, de emellett megkövetelik a 802.1X Layer 2 hitelesítést is.
- Web Authentication
- Layer 2
QoS almenü
- Végül a 'QoS' almenüben beállíthatjuk a QoS profilokat a WLC-n.
- Négy lehetőség közül választhatunk:
- Bronze - (Background / Háttérforgalom)
- Silver - (Best Effort / Alapértelmezett)
- Gold - (Video)
- Platinum - (Voice / Hang)
WLAN fül - Labor konfiguráció
A jelenlegi laborban két WLAN-t állítunk be:
- 'Internal' WLAN
- Ezt már létrehoztuk a kezdeti beállítás során, így csak a részletes beállításait kell konfigurálnunk.
- General almenü
- WLAN Status = Enabled
- Logical Interface = Internal
- Security almenü
- Layer 2 Security = WPA+WPA2
- Authentication Mode = PSK
- QoS almenü
- QoS Mode = Silver (Best Effort)
- 'Guest' WLAN
- Type = WLAN
- Profile Name = Guest
- SSID = Guest
- ID = 2
- General almenü
- WLAN Status = Enabled
- Logical Interface = Guest
- Security almenü
- Layer 2 Security = WPA+WPA2
- Authentication Mode = PSK
- QoS almenü
- QoS Mode = Silver (Best Effort)
2.3 Wireless fül (Wireless Tab)
Ez a fül lehetővé teszi a WLC-hez aktuálisan csatlakozó AP-k megtekintését.
- Egy AP megnyitásával megtekinthetjük annak beállításait és konfigurációját, beleértve:
- AP Name (AP neve)
- Location (Elhelyezkedés)
- AP Mode (Local, FlexConnect, Monitor stb.)
2.4 Management fül (Management Tab)
Ez a fül információt nyújt a WLC működéséről.
- Látható például az éppen használt SNMP protokoll, a HTTP és HTTPS státusza, hogy az SSH vagy Telnet engedélyezve van-e stb.
2.5 Security fül (Security Tab)
Ez a fül biztonsági funkciók széles skálájához biztosít hozzáférést. A CCNA vizsgához elegendő a CPU ACL-ek ismerete.
- A CPU ACL-ek a WLC processzorához (CPU) való hozzáférést korlátozzák. Ez szabályozza, hogy mely eszközök csatlakozhatnak a WLC-hez SSH/Telnet, illetve HTTP/HTTPS segítségével, melyek kérdezhetnek le SNMP információkat stb.

