본문 바로가기

CCNA 기초

CCNA 기초 - VLAN (Virtual LAN)

VLAN 정의

- 통신이 필요한 곳 끼리 묶어 조직의 연계성을 쉽게 설정해준다.

- Switch 는 Brocast Domain 을 나눌 수 없기 때문에 VLAN 을 사용한다.

- VLAN을 사용하는 이유는 Broadcast Traffic 을 감소시키기 위해서이다.


- 참고

Broadcast Domain 은 3계층 (3 Layre) 장비인 Router 가 있어야 된다.


VLAN 트렁크 프로토콜의 종류

- Cisco ISL (시스코 제품에서만 가능)

- IEEE 802. 1Q


------------------------------------------------------------------------------------------------------------------

Local VLAN 만들기

1. VLAN Database

Switch#vlan database
% Warning: It is recommended to configure VLAN from config mode,
  as VLAN database mode is being deprecated. Please consult user
  documentation for configuring VTP/VLAN in config mode.
Switch(vlan)#vlan 10 name IT
VLAN 10 added:
    Name: IT
- vlan 의 default 값은 1이다.
- name은 대문자를 적어두면 나중에 구분하는데 편하다.

Switch(vlan)#exit
APPLY completed.
Exiting....
Switch#

2. Configuration Mode

Switch#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#vlan 20
Switch(config-vlan)#name IT2  - configuration Mode 에서 이름 설정하기
Switch(config-vlan)#end
%SYS-5-CONFIG_I: Configured from console by console

- 참고
Switch(config)#vlan ?
  <1-1005>  ISL VLAN IDs 1-1005
- vlan 은 1-1005개까지 만들 수 있다.

3. 설정 확인

Switch#show vlan brief

- vlan 10과20, IT와 VLAN0020이 생긴 것을 확인할 수 있다.

------------------------------------------------------------------------------------------------------------------

4. 설정 제거

4-1. VLAN Database

Switch#vlan database
% Warning: It is recommended to configure VLAN from config mode,
  as VLAN database mode is being deprecated. Please consult user
  documentation for configuring VTP/VLAN in config mode.
Switch(vlan)#no vlan 10
Deleting VLAN 10...
Switch(vlan)#exit
APPLY completed.
Exiting....
Switch#

4-2. Configuration Mode

Switch#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#no vlan 20
Switch(config)#end
%SYS-5-CONFIG_I: Configured from console by console

4-3. 설정 확인

Switch#show vlan brief

Switch#

------------------------------------------------------------------------------------------------------------------

5. 포트에 VLAN 할당

5-1. 하나의 포트를 할당
Switch#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#interface fastethernet 0/1
Switch(config-if)#switchport mode access
Switch(config-if)#switchport access vlan 10
Switch(config-if)#end
%SYS-5-CONFIG_I: Configured from console by console

5-2. 여러개의 포트를 할당
Switch#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#interface range fa 0/2 - 5
- 0 슬롯, 2번부터 5번 포트까지 한번에 설정한다.

Switch(config-if-range)#switchport mode access
Switch(config-if-range)#switchport access vlan 10
Switch(config-if-range)#end
%SYS-5-CONFIG_I: Configured from console by console

5-3. 할당된 VLAN 확인

Switch#show vlan brief
 
- vlan 10 IT에 0 번 슬롯의 1번부터 5번 포트가 VLAN으로 할당 된것을 확인할 수 있다.

'CCNA 기초' 카테고리의 다른 글

VTP 설정하기  (0) 2008.12.01
VLAN과 Trunk 기본 설정  (0) 2008.12.01
CCNA 기초 - L2 이더 채널 설정 및 확인  (0) 2008.11.30
CCNA 기초 - Switch 기본설정  (0) 2008.11.28
CCNA 기초 - 라우터 기본설정 - 3  (0) 2008.11.27
CCNA 기초 - 라우터 기본설정 - 2  (0) 2008.11.26