본문 바로가기

CCNA 기초

CCNA 기초 - 라우터 기본설정 - 1


라우터의 기본 설정에 대해서 알아보자.

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

Router>enable
- 'Router>' 사용자 모드를 뜻한다. enable은 로그인을 의미한다.

Router#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
- 'Router#' 관리자 또는 인에이블 모드를 뜻한다.
- 상세 설정이 가능하며, 상세하게 동작 시험이 가능하다.
- 사용자 모드에서 enable(로그인) 한 후 진입을 한다.
- configure terminal은 환경설정을 하기 위한 명령어 이다.

Router(config)#hostname ?
  WORD  This system's network name
- '?'를 통해 도움말을 볼 수 있다.

Router(config)#hostname Seoul_HQ
- 라우터의 이름을 Seoul_HQ라고 정의 한다.

Seoul_HQ(config)#line console ?
  <0-0>  First Line number

Seoul_HQ(config)#line console 0
Seoul_HQ(config-line)#login
Seoul_HQ(config-line)#password cisco
- 삭제시 no password cisco 라고 입력한다.

Seoul_HQ(config-line)#end
%SYS-5-CONFIG_I: Configured from console by console

Seoul_HQ#show running-config
- 설정 정보를 보여준다.
Building configuration...

Current configuration : 375 bytes
!
version 12.4
no service password-encryption
!
hostname Seoul_HQ
!
!
!
!
!
ip ssh version 1
!
!
interface FastEthernet0/0
 no ip address
 duplex auto
 speed auto
 shutdown
!
interface FastEthernet0/1
 no ip address
 duplex auto
 speed auto
 shutdown
!
interface Vlan1
 no ip address
 shutdown
!
ip classless
!
!
!
!
!
line con 0
 password cisco
 login
line vty 0 4
 login
!
!
end

Seoul_HQ#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
- 설정한 정보를 저장한다. (RAM -> NVRAM)

Seoul_HQ#show startup-config
- 저장한 내용 확인 (show running-config의 내용과 같다.)

Seoul_HQ#exit

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

세션 타임 아웃을 방지하는 명령어

Seoul_HQ(config)#line console 0
Seoul_HQ(config-line)#exec-timeout 0 0
- 윈도우의 스크린세이버와 같은 기능으로 일정시간 동안 입력이 없을 경우 현재의 작업을 일시적으로 중단시키는 명령어이다.
- 'exec-timeout 0 0' 이라고 하면 무제한으로 이 기능을 끄게 된다. 

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

사용자 명령과 디버그 모드의 내용을 분리하는 명령어

Seoul_HQ(config)#line console 0
Seoul_HQ(config-line)#logging synchronous
- 라우터의 작업과 관리자의 작업을 분리시키는 명령어이다.
- 작업중에 갑자기 뜨는 로그 내용 때문에 당황하는 것을 막을 수 있다.

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