-
L2 스위치 (switch) 의 4가지 주요 기능Security in CPS/Networking 2020. 8. 25. 20:47
네트워크 구성에 많이 사용되고 있는 L2 스위치의 주요 기능을 정리해 보았습니다.
- Learning: in_port 로 들어오는 Frame의 source mac address를 스위치 mac table 에 저장하는 기능입니다. Mac table에 저장된 Mac 주소는 추후에 들어오는 Frame의 Destination mac address 매칭에 사용됩니다.
- Forwarding: in_port로 들어오는 Frame의 Destination Mac address를 Mac table에서 lookup을 하고 매칭되는 out_port 로 해당 Frame을 전달하는 기능입니다.
- Filtering: Flooding시에 in_port로 Frame이 전달되지 않도록 막는 기능입니다.
- Flooding: Mac table 에 매칭되는 destination mac address 가 없는 경우 활성화 된 또는 연결된 모든 포트로 Frame을 전달하는 기능입니다.
사실 위 기능들은 L3 스위치에도 동일하게 적용이 될 수 있는데 L3 Layer에서는 Frame 이 Packet 으로, source mac 이 src_ip 로 매칭이 될 것 입니다.
'Security in CPS > Networking' 카테고리의 다른 글
Bandwidth vs Throughput (0) 2020.08.25 L2 스위치의 switching 방식 (0) 2020.08.25 [onos] build error: The goal you specified requires a project to execute but there is no POM in this directory (0) 2020.08.21 [onos] git for developer (0) 2020.08.17 [onos] how to download and install in ubuntu (0) 2020.08.11