Cisco 명령어 정리 (검정 : 프롬프트, 빨강 : 입력할 명령어 파랑 : 사용자가 지정하는 부분) | ||||
정적 라우팅 설정 | Router(config) | ip route 210.1.1.0 255.255.255.0 serial0/1 | 210.1.1.0으로 가는 데이터는 serial0/1로 내보내면 됨. | |
디폴트 라우팅 설정 | Router(config) | ip route 0.0.0.0 0.0.0.0 serial0/1 | 라우팅테이블에 없는 목적지의 경우 serial 0/1로 내보내면 됨 | |
RIP 설정 | Router(config) | router rip | ||
Router(config-router)# | network 192.168.1.0 | 직접 연결된 네트워크주소 | ||
OSPF 설정 | Router(config) | router ospf 1 | 1 : 프로세스번호 | |
Router(config-router)# | network 192.168.1.0 0.0.0.255 area 1 | |||
EIGRP 설정 | Router(config) | router eigrp 1 | 1 : AS 번호 | |
Router(config-router)# | network 192.168.1.0 0.0.0.255 | |||
라우팅 테이블 보기 | Router# | show ip route | ||
특정 네트워크까지 경로확인 | Router# | traceroute 192.168.1.0 | ||
스패닝트리정보 보기 | Switch# | show spanning-tree detail | ||
MAC주소테이블 보기 | Switch# | Show mac-address-table | ||
MAC 주소 테이블 삭제 | Switch# | clear mac-address-table | ||
MAC 주소 | Switch(config)# | mac-address-table static 0030.A3C9.E8AD vlan 1 interface f0/2 | ||
vlan 정보 확인 | Switch# | show vlan | ||
vlan 생성 | switch(config)# | vlan 10 | ||
vlan 이름 설정 | switch(config-vlan)# | name Com_Net | ||
스위치의 포트에 vlan지정 | switch(config)# | int f0/3 | ||
switch(config-if)# | switch mode access | |||
switch(config-if)# | switch access vlan 10 | |||
trunk 모드설정하기 | switch(config)# | int f0/1 | ||
switch(config-if)# | switchport mode trunk | |||
트렁크로 설정된 인터페이스 정보 확인하기 | Switch# | show interfaces trunk | ||
포트 동작 시키기 | Router(config-if)# | no shutdown | ||
VLAN 1 및 IP 설정 | Router(config)# | interface fastEthernet 0/0.1 | ||
Router(config-subif)# | encapsulation dot1Q 1 | (dot1Q 1에서 1이 vlan1를 뜻한다) | ||
Router(config-subif)# | ip address 10.10.10.1 255.255.255.0 | |||
VLAN 2 및 IP 설정 | Router(config)# | interface fastEthernet 0/0.2 | ||
Router(config-subif)# | encapsulation dot1Q 2 | (dot1Q 2에서 2가 vlan2를 뜻한다) | ||
Router(config-subif)# | ip address 10.10.11.1 255.255.255.0 | |||
VTP 상태정보 확인 | Switch# | show vtp status | ||
VTP – 서버 설정 | switch(config)# | vtp mode server | ||
switch(config)# | vtp domain com | |||
switch(config)# | vtp password 123 | |||
VTP – 클라이언트 설정 | switch(config)# | vtp mode client | ||
switch(config)# | vtp domain com | |||
switch(config)# | vtp password 123 | |||
포트보안적용여부 확인 | Switch# | show port-security | ||
F0/1 포트에 포트보안걸기 | Switch1(config)# | int f0/1 | ||
Switch1(config-if)# | switchport mode access | |||
Switch1(config-if)# | switchport port-security | |||
Switch1(config-if)# | switchport port-security mac-address 0001.649D.7154 | 0001.649D.7154만 접근허용 | ||
Switch1(config-if)# | switchport port-security mac-address sticky | 동적맥주소를 정적으로. | ||
Switch1(config-if)# | switchport port-security violation [protect |restrict | shutdown] | protect : 접근차단 restrict : 접근차단, 로그 shutdown : 포트 비활성화 | ||
Switch1(config-if)# | switchport port-security max 3 | 최대 3대까지 허용 | ||
'IT Tech > Network' 카테고리의 다른 글
Cisco router setup mode (0) | 2019.03.13 |
---|---|
Cisco Router Command 1 (시스코 라우터 명령어1) (0) | 2019.03.07 |
Cisco Packet Tracer download [시스코 패킷트레이서 다운방법] (0) | 2019.03.05 |