1. 설치 방법
vmware에서 .ova 또는 .iso 파일로 설치를 할 수가 있습니다. (파일은 cisco 홈페이지에서 다운)
(이 글은 .iso 파일로 설치)
- 사양
소형 템플릿 - vCPU 4(낮은 처리량), vCPU 7(높은 처리량)
- 필요한 RAM(GB) : 8GB
- Virtual hard disk space : 16GB
- 최대 AP 수 : 1,000
- 최대 클라이언트 수 : 10,000
중형 템플릿 - vCPU 6(낮은 처리량), vCPU 9(높은 처리량)
- 필요한 RAM(GB) : 16GB
- Virtual hard disk space : 16GB
- 최대 AP 수 : 3,000
- 최대 클라이언트 수 : 32,000
대형 템플릿 - vCPU 10(낮은 처리량), vCPU 13(높은 처리량)
- 필요한 RAM(GB) : 32GB
- Virtual hard disk space : 16GB
- 최대 AP 수 : 6,000
- 최대 클라이언트 수 : 64,000
CPU 설정은
- 가상 소켓 수(가상 CPU)
- 소켓당 코어 수
소켓당 코어 수는 선택한 가상 소켓 수에 관계없이 항상 1 로 설정해야 합니다. 예를 들어 4vCPU 구성의 컨트롤러는 소켓 4개와 소켓당 코어 1개로 구성해야 합니다.
설치를 하게 되면 약 5~7분 정도 기다려야 합니다.
설치가 완료 되면 기본 설정을 해주면 됩니다.
WLC(config)#no ip domain lookup
WLC(config)#line vty 0 5
WLC(config-line)#logging synchronous
WLC(config-line)# transport input ssh
WLC(config)#username test password test
WLC(config)#enable password test
무선 관리 IP를 vlan 10으로 설정을 하겠습니다.
vlan 10을 만들어 주시고 ip를 설정을 해줍니다.
WLC(config)#inter vlan 10
WLC(config-if)#ip add 192.168.10.1 255.255.255.0
WLC(config)#interface g1
WLC(config-if)#sw mo ac
WLC(config-if)#sw ac vlan 10
WLC(config)#ip route 0.0.0.0 0.0.0.0 [Next-hop]
WLC(config)#wireless management interface vlan 10 // 무선 관리 ip를 vlan 10으로 사용
WLC(config)#ap dot11 24ghz shutdown
WLC(config)#ap dot11 5ghz shutdown
WLC(config)#ap country KE
WLC(config)#no ap dot11 24ghz shutdown
WLC(config)#no ap dot11 5ghz shutdown
//국가 코드를 구성하면 0 day setup 표시안하고 넘어갈수 있음
WLC#wireless config vwlc-ssc key-size 2048 signature-algo sha256 password 0 cisco123 // AP가 가상 WLC 9800에 가입하려면 인증서가 필요
WLC#show wireless management trustpoint // 확인
2. HA 이중화
이중화는 interface g3에 합니다.
- 고가용성을 구성하기 전에 염두에 두어야 할 몇 가지 제한 사항이 있습니다.
1. VM을 동일한 플랫폼(ESXi, KVM, AWS 등)에 유지
2. 두 VM 모두 동일한 버전의 소프트웨어를 실행 중입니다.
3. 두 VM이 동일한 설치 모드에서 실행 중입니다.
4. 중복 포트의 IP 주소는 동일한 서브넷에 있어야 합니다.
5. 두 장치 모두 자체 무선 관리 인터페이스가 있습니다.
6. 두 VM의 무선 관리 인터페이스는 동일한 서브넷에 있어야 합니다.
7. 두 VM 모두 CPU, 메모리 및 하드 디스크가 동일해야 합니다.
- HA가 형성되면 Standby 컨트롤러의 콘솔에 대한 액세스가 비활성화 됩니다.
WLC(config)#redundancy
WLC(config-red)#main-cpu
WLC(config-r-mc)#standby console enable
WLC(config-r-mc)#end
- 이중화 확인
WLC#show chassis
WLC#show redundancy states
- 강제로 standby가 active로 변경
WLC#redundancy force-switchover
- GUI에서 설정
이중화 할 장비에는 Local IP, Remote IP를 반대로 설정 해주시면 됩니다.
설정을 다하고 난 후 양 쪽 WLC를 재부팅 합니다.
- 확인 상태
WLC1#show chassis
Chassis/Stack Mac Address : 000c.2947.c461 - Local Mac Address
Mac persistency wait time: Indefinite
H/W Current
Chassis# Role Mac Address Priority Version State IP
-------------------------------------------------------------------------------------
*1 Active 000c.2947.c461 2 V02 Ready 192.168.10.1
2 Member 000c.296e.5be4 1 V02 V-Mismatch 192.168.10.2
노트북, 노트북 끼리 이중화 HA 설정
(제한사항을 하나라도 안 맞추게 되면 V-Mismatch가 됩니다.)
WLC1#show chassis
Chassis/Stack Mac Address : 000c.2947.c461 - Local Mac Address
Mac persistency wait time: Indefinite
H/W Current
Chassis# Role Mac Address Priority Version State IP
-------------------------------------------------------------------------------------
*1 Active 000c.2947.c461 2 V02 Ready 192.168.10.1
2 Member 000c.296e.5be4 1 V02 Initializing 192.168.10.2
제한 사항을 동일 조건으로 맞추게 되면 Initializing 상태로 변화가 됩니다.
WLC1#show chassis
Chassis/Stack Mac Address : 000c.2947.c461 - Local Mac Address
Mac persistency wait time: Indefinite
H/W Current
Chassis# Role Mac Address Priority Version State IP
-------------------------------------------------------------------------------------
*1 Active 000c.2947.c461 2 V02 Ready 192.168.10.1
2 Standby 000c.296e.5be4 1 V02 HA sync in progress 192.168.10.2
동기화 진행중
WLC1#show chassis
Chassis/Stack Mac Address : 000c.2947.c461 - Local Mac Address
Mac persistency wait time: Indefinite
H/W Current
Chassis# Role Mac Address Priority Version State IP
-------------------------------------------------------------------------------------
*1 Active 000c.2947.c461 2 V02 Ready 192.168.10.1
2 Standby 000c.296e.5be4 1 V02 Ready 192.168.10.2
HA 설정 완료
WLC1#sh redundancy
Redundant System Information :
------------------------------
Available system uptime = 4 hours, 10 minutes
Switchovers system experienced = 4
Standby failures = 0
Last switchover reason = active unit removed
Hardware Mode = Duplex
Configured Redundancy Mode = sso
Operating Redundancy Mode = sso
Maintenance Mode = Disabled
Communications = Up
Current Processor Information :
-------------------------------
Active Location = slot 1
Current Software state = ACTIVE
Uptime in current state = 42 minutes
Image Version = Cisco IOS Software [Amsterdam], C9800-CL Software (C9800-CL-K9_IOSXE), Version 17.3.4c, RELEASE SOFTWARE (fc2)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2021 by Cisco Systems, Inc.
Compiled Wed 10-Nov-21 11:54 by mcpre
BOOT =
CONFIG_FILE =
Configuration register = 0x102
Recovery mode = Not Applicable
Peer Processor Information :
----------------------------
Standby Location = slot 2
Current Software state = STANDBY HOT
Uptime in current state = 0 minutes
Image Version = Cisco IOS Software [Amsterdam], C9800-CL Software (C9800-CL-K9_IOSXE), Version 17.3.4c, RELEASE SOFTWARE (fc2)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2021 by Cisco Systems, Inc.
Compiled Wed 10-Nov-21 11:54 by mcpre
BOOT =
CONFIG_FILE =
Configuration register = 0x102
참고 : http://www.netprojnetworks.com/cisco-9800-cloud-controller-high-availability-ha/
잘못된 부분이 있으면 댓글 남겨주시면 감사하겠습니다.
'Network > Wireless' 카테고리의 다른 글
Cisco 9800 local mode, flex connect mode (0) | 2022.04.15 |
---|---|
Cisco 9800 Policy Tag 설정 (0) | 2022.04.14 |
Cisco 9800 에 대해서.. (0) | 2022.04.14 |
Cisco AP (0) | 2022.04.14 |