Switch HUB
◾ Switch는 segment 연결 장치인 Bridge가 확장된 장비이다.
• Switch와 Bridge의 작동 방식, 알고리즘은 동일하다
- Multiport bridge = switch HUB.
• 실제 사용된 bridge는 switch와 H/W 구성이 많이 다르다.
• Switch의 기본 기능
- Learning : Bridge가 소스주소(송신주소)를 보고 Bridge table에 MAC address를 채우는 과정
- Flooding : 브리지에서 다른 브리지로 패킷을 보내는 과정
- Filtering : 어느 목적지로 가야할지 패킷을 필터링하는 과정
- Forwarding : 목적지를 확인해 현재 포트에서 해당 포트로 패킷을 보내는 과정
- Aging : 사용하지 않는 MAC address를 table에서 없애는 것
◾ Switch 설정
• STP : Spanning Tree Protocol
• VLAN
◾ Switch - show명령
• Swhitch# show [옵션] (프리빌리지 모드)
- ip interface brief : 인터페이스별 설정 정보
- interface [if명] : 인터페이스의 통계 정보
- spanning‐tree : STP 관련 정보
- cdp neighbor : 주변 장비 확인
- cdp neighbor detail : 인접 장비 정보 확인
- running‐config : 설정 정보 확인
◾ 스위치 상태 확인
• 관리자 모드에서 실행한다.
• show interface [status | if_명 | vlan #]
- show interface status
Switch>
Switch>enable
Switch#show interface status
Port Name Status Vlan Duplex Speed Type
Fa0/1 connected 1 auto auto 10/100BaseTX
Fa0/2 connected 1 auto auto 10/100BaseTX
Fa0/3 notconnect 1 auto auto 10/100BaseTX
Fa0/4 notconnect 1 auto auto 10/100BaseTX
Fa0/5 notconnect 1 auto auto 10/100BaseTX
...
- show interface vlan 1
Switch#show interface vlan1
Vlan1 is up, line protocol is up
Hardware is CPU Interface, address is 00e0.b056.6dae (bia 00e0.b056.6dae)
Internet address is 192.168.10.201/24
MTU 1500 bytes, BW 100000 Kbit, DLY 1000000 usec,
reliability 255/255, txload 1/255, rxload 1/255
...
- show running-config : 현재 사용되는 config 보여줌
Switch#show running-config
Building configuration...
Current configuration : 1135 bytes
!
version 15.0
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
...
이렇게 네트워크가 구성되면 네트워크 전체가 죽어버릴 수 있다.
네트워크에 흐르는 패킷 양이 늘어난다.
(PC0에서 PC1로 패킷을 보내려고하면 Switch0에서 패킷을 Switch1, Switch2로 패킷을 보내 네트워크에 흐르는 패킷 양이 늘어난다.)
보통 위와 같은 방식으로 네트워크를 구성한다.
'네트워크 공부 기록' 카테고리의 다른 글
VLAN (0) | 2022.01.13 |
---|---|
STP (0) | 2022.01.11 |
IOS(Internetwork Operating System) 및 IP 설정 (0) | 2022.01.05 |
네트워크 12 - 네트워크 관련 프로토콜 (ICMP, ARP) (0) | 2021.10.18 |
네트워크 11 - NAT (0) | 2021.10.18 |