Showing posts with label Global Configuration mode. Show all posts
Showing posts with label Global Configuration mode. Show all posts

Sunday, 27 July 2025

The standard order of accessing modes on a Cisco device

 

The standard order of accessing modes on a Cisco device (like a router or switch) running IOS or IOS XE is:

User EXEC mode → Privileged EXEC mode → Global Configuration mode → Specific Configuration modes


📘 Detailed Order:

  1. User EXEC Mode (>)
    • Access level: Basic
    • Prompt: Router>
    • Limited commands (e.g., ping, show version)
    • Entry point when you first log in
  2. Privileged EXEC Mode (#)
    • Access level: Elevated
    • Prompt: Router#
    • Accessed using: enable
    • Allows full monitoring and some configuration
  3. Global Configuration Mode ((config)#)
    • Prompt: Router(config)#
    • Accessed using: configure terminal
    • Allows device-wide configuration changes
  4. Specific Configuration Modes
    • Examples:
      • Interface mode: Router(config-if)#
      • Line mode: Router(config-line)#
      • Router protocol mode: Router(config-router)#
    • Accessed by entering sub-configuration commands from global config

Summary of Command Flow:

plaintext

CopyEdit

User EXEC Mode               enable

   Router>                   ─────────   Router#

                                      Privileged EXEC Mode

 

Privileged EXEC Mode     configure terminal

   Router#                   ─────────   Router(config)#

                                      Global Configuration Mode

 

Global Config Mode       interface Gig1/0

   Router(config)#            ─────────   Router(config-if)#

                                      Specific Config Mode