본문 바로가기

Network

7. Cisco IOS 운영체제 탐색

CISCO IOS 명령어

라우터 장치 CLI 모드로 들어가면 CISCO IOS 명령어를 입력할수있다.

Router> 
유저 실행프롬프트 

Routter>enable  
	-> Router#
특권 실행모드  # Privileged exec mode

Router#disable
	-> Router> 
유저 실행모드

Router#config terminal 
	-> Router(config)#
전역 구성 모드 

기타 전역 구성 모드 입력가능 명령어
Rounter(config)#?
connfigure commands:
  aaa                Authentication, Authorization and Accounting.
  access-list        Add an access list entry
  banner             Define a login banner
  bba-group          Configure BBA Group
  boot               Modify system boot parameters
  cdp                Global CDP configuration subcommands
  class-map          Configure Class Map
  clock              Configure time-of-day clock
  config-register    Define the configuration register
  crypto             Encryption module
  default            Set a command to its defaults
  do                 To run exec commands in config mode
  dot11              IEEE 802.11 config commands
  enable             Modify enable password parameters
  end                Exit from configure mode
  exit               Exit from configure mode
  flow               Global Flow configuration subcommands
  hostname           Set system's network name
  interface          Select an interface to configure
  ip                 Global IP configuration subcommands
  ipv6               Global IPv6 configuration commands
  key                Key management
  license            Configure license features
  line               Configure a terminal line
  lldp               Global LLDP configuration subcommands
  logging            Modify message logging facilities
  login              Enable secure login checking
  mac-address-table  Configure the MAC address table
  no                 Negate a command or set its defaults
  ntp                Configure NTP
  parser             Configure parser
  policy-map         Configure QoS Policy Map
  port-channel       EtherChannel configuration
  priority-list      Build a priority list
  privilege          Command privilege parameters
  queue-list         Build a custom queue list
  router             Enable a routing process
  secure             Secure image and configuration archival commands
  security           Infra Security CLIs
  service            Modify use of network based services
  snmp-server        Modify SNMP engine parameters
  spanning-tree      Spanning Tree Subsystem
  tacacs-server      Modify TACACS query parameters
  username           Establish User Name Authentication
  vpdn               Virtual Private Dialup Network
  vpdn-group         VPDN group configuration

시작구성 실행구성

config t 를 이용해 전역 구성으로 이동하여 hostname 을 변경하면 바로 적용되는걸 알수있다.

즉 ios에서는 변경할 때마다 변경사항이 즉시 적용되는 실행구성으로 전송이된다.

실행중인 구성은 현재 유효한 구성이고 시작 구성은 라우터가 시작되거나 재부팅시적용되는 구성이다.

실행구성에서 입력한 명령은 영구적으로 저장되지 않는다.

show startup-config
시작구성 표시

show running-config
실행구성 표시

R1#show running-config
Current configuration : 685 bytes
!
version 15.1
no service timestamps log datetime msec
....생략
!
hostname R1
!
interface GigabitEthernet0/0
 no ip address
 duplex auto
 speed auto
 shutdown
!
....생략

실행중인 구성 복사후 시작구성으로 넣기 copy run start → filename 설정

위 명령어로 실행구성 복사후 시작구성으로 적용을 하면 장치를 재부팅하여도

실행구성들이 적용되어있다.

구성파일이 저장되는 위치

장치를 부팅하려면 먼저 ios운영체제 이미지를 불러와야 하며 플래시 메모리에 저장되어있다.

운영 체제가 시작되면 시작 구성으로부터 관리자 구성을 불러오게 되고

시작 구성은 NVRAM에 저장된다. 이는 비휘발성 메모리이므로 재부팅해도 유지가 된다

 

실행 중인 구성은 일반 메모리인 RAM 에 저장되고 장치를 부팅할때 시작구성들이 RAM메모리로 불러오게된다.

 

플래시메모리 [IOS 이미지 ] → 부팅 → NVRAM[시작구성] → RAM[실행구성(시작구성)]

'Network' 카테고리의 다른 글

9. OSI 3계층  (0) 2023.07.03
8. OSI 4계층  (0) 2023.07.03
6. Cisco 장치 연결  (0) 2023.07.03
5. Inbound outbound  (0) 2023.06.30
4. Cisco 운영체제  (0) 2023.06.30