6. 스위치 구성하기

 1) 소프트웨어나 하드웨어의 버전

Switch# show interface status



2) 플래쉬 메모리에 저장되어있는 스위치의 구성 정보

Switch# show flash == dir flash:



3) 스위치의 환경 구성 설정 정보

Switch# show running-config



4) 스위치의 인터페이스의 정보

Switch# show vlan



5) 스위치 기본 설정



 6) 스위치 IP 주소 설정과 Default Gateway 설정

LabSwitch(config)#interface vlan1
LabSwitch(config-if)# ip address 198.160.1.2 255.255.255.0
LabSwitch(config-if)# no shutdown
LabSwitch(config-if)# ip default-gateway 198.160.1.1


 7) Port 설정 (포트 속도, Duplex)

LabSwitch(config-if)#duplex ?
  auto  Enable AUTO duplex configuration
  full  Force full duplex operation
  half  Force half-duplex operation
LabSwitch(config-if)#duplex full
LabSwitch(config-if)#speed ?
  10    Force 10 Mbps operation
  100   Force 100 Mbps operation
  auto  Enable AUTO speed configuration
LabSwitch(config-if)#speed 100


+ Recent posts