반응형
Cisco 스위치의 VLAN 설정 방법
Cisco 스위치에서 VLAN을 설정하는 방법을 설명하겠습니다.
VLAN 생성
Switch# configure terminal Switch(config)# vlan {vlan-id} Switch(config-vlan)# name {vlan-name}
- configure terminal: 설정 모드로 진입합니다.
- vlan {vlan-id}: 새로운 VLAN을 생성합니다. vlan-id에는 1~4094까지의 값이 들어갈 수 있습니다.
- name {vlan-name}: VLAN에 이름을 부여합니다.
포트에 VLAN 할당
Switch# configure terminal
Switch(config)# interface {interface-id}
Switch(config-if)# switchport mode access
Switch(config-if)# switchport access vlan {vlan-id}
- configure terminal: 설정 모드로 진입합니다.
- interface {interface-id}: 설정할 인터페이스를 선택합니다.
- switchport mode access: 인터페이스를 Access 모드로 설정합니다.
- switchport access vlan {vlan-id}: 해당 인터페이스를 지정한 VLAN에 할당합니다.
VLAN 확인
Switch# show vlan
- show vlan: 설정된 VLAN 목록을 확인합니다.
저장
Switch# copy running-config startup-config
- copy running-config startup-config: 설정 내용을 저장합니다.
이렇게 Cisco 스위치에서 VLAN을 설정할 수 있습니다.
반응형
'network' 카테고리의 다른 글
용어정리 MDF TPS EPS (0) | 2021.04.09 |
---|---|
광컨버터 (0) | 2021.04.09 |
CISCO 명령어 show (0) | 2021.04.01 |
CISCO 기본 설정 (0) | 2021.04.01 |
CISCO 장비 초기화 방법 (0) | 2020.03.20 |