본문 바로가기

전체 글28

Cisco EtherChannel Between Switches Switch간의 Redundant 연결을 위해 EtherChannel로 구성해 볼 수 있습니다.1. Switch간의 EtherChannel Configuration. SW1>enSW1#conf tSW1(config)#int range g0/1-2SW1(config-if-range)#channel-group 1 mode onSW1(config-if-range)#exitSW1(config)#int port-channel 1SW1(config-if)#switchport trunk encapsulation dot1qSW1(config-if)#switchport mode trunkSW1(config-if)#exitSW1(config)#port-channel load-balance src-dst-macSW1(con.. 2024. 9. 28.
Cisco Switch Port EtherChannel Configuration Firewall 등과 Redundant 구성을 할 경우, ARP Request Collision과 같은 Warning이 발생하는 경우가 있습니다.그럴 경우, 해결책 중의 하나는 충돌이 발생하는 2개의 Port를 EtherChannel로 구성하여 1개의 Logical Port로 구성하여 해결할 수 있습니다. 1. EtherChannel Configuration. Switch>enSwitch#conf tSwitch(config)#int range g0/1,g1/1 (-> 충돌이 발생하는 2개의 Port를 입력하시면 됩니다.)Switch(config-if-range)#switchport mode accessSwitch(config-if-range)#switchport access vlan 10 (-> 원하는 .. 2024. 9. 27.
Cisco Switch Web GUI with EVE-NG 실제 Network 장비가 없을 경우, Network 구성 및 Configuration Check를 위해 EVE-NG Emulation Software를 사용하여 Test를 할 수 있습니다.EVE-NG Emulation Software에서 Cisco Switch를 Web GUI로 연결하는 방법에 대해 정리해 보겠습니다. (1) Web Interface 연결을 위한 Network Object를 추가합니다.(2) 추가하는 Network Object의 Type을 Management로 선택합니다.(3) 추가한 Network Object와 Network Switch를 연결합니다.(4) 연결하는 Network Switch의 Port는 Management Port로 선택합니다.(5) Network Switch를 실행.. 2024. 9. 26.
Cisco Switch Interface Trunking and Rapid PVST 1. Interface Trunking Configuration (SW1 G0/1 & SW2 G0/1).(1) Access mode configuration for SW1 G1/1 & G1/2 (-> VLAN ID 1개만 연결되는 Interface에 설정.)SW1>enableSW1#conf tSW1 (config)#int g1/1SW1 (config-if)#switchport mode accessSW1 (config-if)#switchport access vlan 11SW1 (config-if)#exitSW1 (config)#int g1/2SW1 (config-if)#switchport mode accessSW1 (config-if)#switchport access vlan 12SW1 (config-if.. 2024. 9. 25.
Cisco Switch Access Restriction and Control Plane Policing 1. 특정 IP Address만 접속 허용 Configuration.Switch>enableSwitch#config tSwitch(config)#ip access-list standard SSH_Allowed (-> 원하시는 Access List의 이름을 설정하시면 됩니다.)Switch(config-std-nacl)#permit host 192.168.16.10 (-> 접속을 허용할 IP Address를 입력하시면 됩니다.Switch( config-std-nacl)#deny any logSwitch( config-std-nacl)#exitSwitch(config)#line vty 0 15Switch(config-line)#access-class SSH_Allowed in vrf-alsoSwitch(con.. 2024. 9. 24.
Cisco Switch Banner and Login Configuration 1. Banner Configuration.(1) General Banner.Switch>enableSwitch#config tSwitch(config)#banner motd “$(hostname) will be under maintenance on May 24th. Connectivity issues may be present.” (-> " "안에 원하시는 내용을 작성하시면 됩니다.)Switch(config)#exitSwitch#wr(2) Login Banner.Switch>enableSwitch#config tSwitch(config)#banner login “Access for authorized users only. Please enter your username and password.”Swit.. 2024. 9. 23.