From d63fca16043c051bfc04e2236b9bbe1bf2bc4adc Mon Sep 17 00:00:00 2001 From: laaraujo Date: Sat, 11 May 2024 18:22:59 -0300 Subject: [PATCH] Fix formatting in CLI cheat sheet --- cheat_sheet/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/cheat_sheet/README.md b/cheat_sheet/README.md index fceffbd..a3b610c 100644 --- a/cheat_sheet/README.md +++ b/cheat_sheet/README.md @@ -2,17 +2,17 @@ ## Modes -| Mode | Description | -| :-: | --- | -| `>` | User EXEC mode | -| `#` | Privileged EXEC mode | -| `(config)#` | Global configuration mode | -| `(config-if)#` | Interface configuration mode | +| Mode | Description | +| --- | --- | +| **>** | User EXEC mode | +| **#** | Privileged EXEC mode | +| **(config)#** | Global configuration mode | +| **(config-if)#** | Interface configuration mode | ## Passwords | Mode | Command | Description | -| :-: | --- | --- | +| --- | --- | --- | | (config)# | `enable password ` | Set plain text password to | | (config)# | `service password-encryption` | Use Cisco's Type 7 encoding | | (config)# | `enable secret ` | Set MD5 hashed password to and disable old passwords | @@ -20,7 +20,7 @@ ## Basics | Mode | Command | Description | -| :-: | --- | --- | +| --- | --- | --- | | > | `enable` | Change to Privileged EXEC mode | | | `exit` | Exit current mode | | | `no ` | Disable a feature/function or reverse the action of | @@ -31,13 +31,13 @@ | # | `write memory` | Save running-config as startup-config | | # | `copy running-config startup-config` | Save running-config as startup-config | | # | `ping ` | Ping | -| (config)# | `shutdown` | Disable interface | | # | `show mac address-table` | Show the MAC address table | +| # | `show arp` | View the ARP table and show all ARP entries | +| # | `show ip interface brief` | Show interfaces status and configured IP addresses | +| (config)# | `shutdown` | Disable interface | | (config)# | `clear mac address-table` | Manually clear the MAC address table | | (config)# | `clear mac address-table dynamic ` | Clear MAC address table entry for interface | | (config)# | `do ` | Run in Privileged EXEC mode | -| # | `show arp` | View the ARP table and show all ARP entries | -| # | `show ip interface brief` | Show interfaces status and configured IP addresses | | (config)# | `interface ` | Enter config mode | | (config)# | `interface range ` | Enter interface config mode for all interfaces (including) through | | (config)# | `ip address ` | Configure interface IP address |