본문 바로가기

Switch

[Config] Switch 장비 기본 설정

Cisco Switch 기본설정 

 

+ 장비이름설정 : hostname <ABC>

+ enable 비밀번호 설정 : enable password <cisco>

     enable secret <cisco>

+ 도메인 찾지않게 설정 : no ip domain-lookup

+ 도메인 찾도록 설정    : ip domain-lookup

+ local 계정 만들기 : username <ID> password <PW>

 

 

 

콘솔 설정

 

+ 콘솔모드 들어가기 : line console 0

+ 로그랑 명령어 분리 : logging synchronous

+ 로그아웃 시간 설정 : exec-timeout <분><초> -> 0 0 으로 설정하면 로그아웃 안되게 설정하겠다는 뜻

+ 패스워드 설정

비밀번호 인증

password <cisco>

login

--------------------

local 인증

login local

--------------------

no 인증

no password

no login

--------------------

 

 

 

가상터미널 설정 (Telnet..)

 

+ 가상터미널 모드 들어가기 : line vty 0 4  -> 0 4 는 터미널의 번호로 0번부터 4번까지 라는 뜻

+ 패스워드 설정

비밀번호 인증

password <cisco>

login

--------------------

local 인증

login local

--------------------

no 인증

no password

no login

--------------------

** 가상터미널 설정이 되어있지 않으면 다른 장비에서 telnet으로 해당 장비로 접속할 수 없다 **

 

 

 

인터페이스 설정

 

+ 스위치의 인터페이스는 기본적으로 모두 활성화 되어있다 (no shutdown 상태) 

+ 보안을 위해 사용하지 않는 포트는 shutdown 명령어를 사용하여 닫아두는 것이 좋다 

 

+ 다수의 포트를 한번에 설정하는 명령어 : range

switch(config)# interface range f0/1 - 5

switch(config-if-range)#

 

+ 관리 IP 설정 : Native VLAN (default 1번)

switch(config)# interface vlan 1

switch(config-if)# ip address 1.1.1.1 255.255.255.0

switch(config-if)# exit

 

 

 

Mac-address Table 관리

 

+ Mac-address table 확인

switch# show mac-address-table

 

+ Mac-address 수동으로 입력

switch(config)# mac-address-table static <MAC> vlan <vlan-id> interface <f0/1>

 

 

 

'Switch' 카테고리의 다른 글

Switch의 Loop방지기술 - STP  (2) 2014.08.21
[Config] VLAN 설정  (0) 2014.03.04
VTP (VLAN Trunking Protocol)  (1) 2014.02.26
Native VLAN 이란  (4) 2014.02.26
VLAN 개요  (1) 2014.02.25