본문 바로가기

전체 글21

DHCP(Dynamic Host Configuration Protocol) DHCP ConfigurationL3-SW1(config)#vlan 10 L3-SW1(config-vlan)#vlan 20 L3-SW1(config-vlan)#vlan 40L3-SW1(config)#int range e0/0-2L3-SW1(config-if-range)#switchport mode accessL3-SW1(config)#int e0/0 L3-SW1(config-if)#switchport access vlan 10 L3-SW1(config-if)#int e0/1 L3-SW1(config-if)#switchport access vlan 20 L3-SW1(config-if)#int e0/2  L3-SW1(config-if)#switchport access vlan 40L3-SW1(config)#.. 2024. 11. 26.
라우터 ACL(Access Control List) ACL ConfigurationR1(config)#int e0/0 R1(config-if)#ip add 1.1.1.2 255.255.255.0R1(config-if)#no shutdownR1(config)#ip route 0.0.0.0 0.0.0.0 1.1.1.3R3(config)#int e0/2R3(config-if)#ip add 1.1.3.2 255.255.255.0R3(config-if)#no shutdownR3(config)#ip route 0.0.0.0 0.0.0.0 1.1.3.3R2(config)#int e0/1R2(config-if)#ip add 1.1.2.2 255.255.255.0R2(config-if)#no shutdownR2(config)#ip route 0.0.0.0 0.0.0.0 .. 2024. 11. 22.
VRRP(Virtual Router Redundancy Protocol) VRRP ConfigurationL3-SW(config)#ip routing L3-SW(config)#int loopback 0 L3-SW(config-if)#ip add 1.1.100.2 255.255.255.0 L3-SW(config)#int e0/0 L3-SW(config-if)#no switchport L3-SW(config-if)#ip add 1.1.20.21 255.255.255.0 L3-SW(config)#int e0/1 L3-SW(config-if)#no switchport L3-SW(config-if)#ip add 1.1.30.21 255.255.255.0L3-SW(config)#router ospf 1L3-SW(config-router)#network 1.1.100.2 0.0.0.0.. 2024. 11. 20.
HSRP(Hot Standby Routing Protocol) HSRP Configuration SW1(config)#ip routing  SW1(config)#int e0/2SW1(config-if)#no switchportSW1(config-if)#ip add 1.1.21.3 255.255.255.0SW1(config-if)#int e0/3SW1(config-if)#no switchport SW1(config-if)#ip add 1.1.31.3 255.255.255.0SW1(config)#router ospf 1SW1(config-router)#network 1.1.21.3 0.0.0.0 area 0SW1(config-router)#network 1.1.31.3 0.0.0.0 area 0SW2(config)#ip routing SW2(config)#vlan 10.. 2024. 11. 19.
Etherchannel [실습목표]1) Etherchannel은 왜 필요한가?2) Etherchannel 모드와 동작방식  1) Etherchannel은 왜 필요한가? 이더채널(EtherChannel)은 여러 물리적인 이더넷 링크를 논리적으로 하나의 링크로 묶는 기술입니다. Cisco에서 처음 개발된 이 기술은(PAgP) IEEE 802.3ad 표준(LACP)으로 확장했다. 이더채널은 링크 집합을 하나의 논리적 링크로 처리하며, 네트워크 성능을 최적화하고 안정성을 높이는 데 중요한 역할을 한다.1. 대역폭 확장네트워크 트래픽이 증가함에 따라 단일 링크로는 요구 대역폭을 처리하기 어려워질 수 있다.이더채널을 사용하면 여러 개의 링크를 병렬로 묶어 대역폭을 확장할 수 있다.ex) 1Gbps 링크 4개를 묶으면 총 4Gbps의 대역.. 2024. 11. 17.
MST(Multiple Spanning Tree) [학습목표]1. MST가 필요한 이유2. CIST, MSTI3. MST BPDU 1. MST(Multiple Spanning Tree)가 필요한 이유STP(Spanning Tree Protocol) 및 그 변형들(RSTP, PVST 등)은 브로드캐스트 스톰 방지와 네트워크 루프 제거를 위해 설계되었다. 그러나 VLAN 기반 네트워크 환경에서 기존 STP 방식은 한계점을 가진다.1) 기존 STP의 한계VLAN 트래픽 효율성 부족 : PVST+(Per VLAN Spanning Tree Plus)는 각 VLAN마다 별도의 스패닝 트리를 생성하므로, 스위치 CPU와 메모리 리소스를 소모한다.부하 분산 제한 : PVST+ 환경에서는 모든 VLAN 트래픽이 동일한 링크를 통해 전송될 가능성이 높아, 링크 부하 분산.. 2024. 11. 9.