트랜스패런트 브리징(Transparent Bridging)
MAC Address Table을 참조하여 Ethernet Frame을 전송하는 것을 트랜스패런트 브리징(Transparent Bridging)이라고 한다. 1
IEEE 802.1D Annex C 부분에 Transparent Bridging이 정의되어 있다. 2
트랜스패런트 브리징 절차
Transparent Bridging은 크게 러닝(Learning), 플러딩(Flooding), 포워딩(Forwarding), 에이징(aging), 필터링(Filtering)으로 구성되어 있다.
참고 Topology
|
|
MAC Address Table
맥 주소 테이블을 확인하기 위해서는 show mac address-table 명령어를 이용해서 확인할 수 있다.
Switch#show mac address-table Mac Address Table ------------------------------------------- Vlan Mac Address Type Ports ---- ----------- -------- ----- 1 0000.0000.0001 DYNAMIC Et1/1 1 0000.0000.0002 DYNAMIC Et1/2 1 0000.0000.0003 DYNAMIC Et1/3 Total Mac Addresses for this criterion: 3
MAC Address Table에는 목적지 MAC 주소, MAC 주소의 형태, 해당 MAC 주소가 소속된 VLAN 번호 등이 나와있다.
MAC Address Table 최대 용량 확인
show mac address-table count 명령어를 사용하면 MAC Address Table의 최대 용량을 확인할 수 있다.
Switch#show mac address-table count Mac Entries for Vlan 1: --------------------------- Dynamic Address Count : 3 Static Address Count : 0 Total Mac Addresses : 3 Total Mac Address Space Available: 183046404
Static MAC Address 등록
보안 침해등의 이유로 MAC 플러딩 공격(MAC flooding attack)을 당하게 되면 MAC Address Table이 꽉 차는 현상이 발생하여 프레임들이 모두 Flooding이 되어버려 스위치의 성능이 저하되거나 심하면 다운될 수도 있다. 이런 공격을 막기 위해서 정적으로, Static MAC Address Table을 만들 수 있다.
Switch(config)#mac address-table static 0000.0000.0001 vlan 1 interface e1/1
mac address-table static [MAC Address] vlan [VLAN Number] interface [Interface Port] 명령어를 통해서 Static MAC Address를 등록할 수 있다.
'네트워크 > All about Network' 카테고리의 다른 글
VLAN(Virtual LAN) (2) - Inter-VLAN Routing (0) | 2018.10.26 |
---|---|
VLAN(Virtual LAN) (1) - VLAN 개요 (0) | 2018.10.26 |
ARP(Address Resolution Protocol) (14707) | 2018.10.24 |
이더넷 물리적 계층 (Ethernet Physical Hierarchy) (2) - Hub & Repeater, Switch & Bridge (0) | 2018.10.23 |
이더넷 물리적 계층 (Ethernet Physical Hierarchy) (1) - Ethernet, Cable, Frame, CSMA/CD (0) | 2018.10.23 |