본문 바로가기
네트워크

[네트워크] 시스코(Cisco) CatOS vs IOS Software OS방식 컨피그 비교 설정 방법, 차이점 정리 #CatOS config #L2

by 시스코킹 2023. 3. 31.
반응형

CatOS는 L2에서만 작동하지만, 스위치 관리를 위해 연결할 수 있는 관리 VLAN을 설정 할 수 있습니다. 

따라서 CatOS에서는 STP/VTP/switchport VLAN 멤버십 등과 같은 L2 구성만 구성할 수 있습니다.

IOSL2와 L3 모두에서 작동합니다. 

여기에는 L2 스위치 포트, L2 VLAN 데이터베이스 등의 설정을 위한 코드가 포함되어 있습니다.

예를 들어 L3 라우팅을 위한 코드도 포함되어 있습니다. 라우팅 프로토콜, L3 인터페이스 등 설정가능!

   

컨피그 비교 시작합니다!

보시는 방법은 Common Commands 각 카테고리별 CatOS 넘버 1. 컨피그와 IOS 넘버 1. 이 같은 설정이에요.

설정에 참고하시길 바랍니다.

 

 

Common Commands – user port

CatOS
1.

set port name 8/1 <bldg room> 
set vlan 8 8/1

 

 

2. To configure multiple ports 
set port auxvlan 5/1-48 701

 

IOS
1.

Conf t
interface faste8/1 
description <bldg room> 
switchport access vlan 8 
exit
write mem

 

 

2. To configure multiple ports 
interface range faste5/1-48 
switchport voice vlan 701

 

 

 


Common Commands – trunk port

CatOS
1.

set port name 8/1 <switch a 1/2> 
set trunk 8/1 on isl
clear trunk 8/1<unwanted vlans> 
Set port jumbo 8/1
set port qos 8/1 trust trust-cos

 

 

2.

To add another vlan to the trunk 
set trunk 8/1 <vlan>

 

 

IOS
1.

Conf t
Interface gig8/1 
description <switch a 1/2>
switchport mode trunk
switchport trunk encapsulation isl
switchport trunk allowed vlan 
1,2,25,700,1002-1005
mtu 9216
mls qos trust cos

 

 

2.

To add another vlan to the trunk 
switchport trunk allowed vlan add <vlan>
exit 
write mem

 

 

 

CatOS and ISO Software Command Reference
CatOS 

1.

set vlan <vlan id> port

 

 

2.

set port disable
set port duplex
set port speed
set port jumbo
set spantree portfast
set qos enable
set port channel
set trunk (default mode is auto)

 

 

IOS

1.

1) switchport
2) switchport mode access 
3) switchport access vlan <> 

 

 

2.

shutdown (interface mode) 
duplex
speed 
mtu 9216
spanning-tree portfast 
mls qos
channel-group <group> mode (interface mode) 
switchport mode trunk (vlan database command)

 

 

 

 

CatOS and ISO Software Command Reference 
CatOS 
1.

show cam dynamic
show channel info or show port channel  
show mac

 

2.
show port <slot/port>

 

3.

show logging buffer
show modules
show version
show environment power
show port inline power
show environment [temp | cooling]

 


IOS 

1.
show mac-address-table dynamic
show etherchannel summary 
show interface counters [errors | trunk]

 

2.

show interface  status </type slot>
show run interface  </type slot>

 

3.
show log
show modules
show version
show power
show power inline
show environment [temp | cooling]

 

CatOS and ISO Software Command Reference 
CatOS 
1.

reset system
set system name 
set boot system flash

show config

 

 

IOS 

1.

reload
hostname
boot system flash 
show run

반응형

댓글