5. Packet Tracer: Windows Installation
6. Packet Tracer: Macbook Installation
- [[Routers]] by default are DOWN
- [[Switches]] by default are UP - when the device is turned on
- [[Cisco CLI commands]]
TABallows for auto completion of commandscommand ?allows to see the list of available commands- Setting up Router (R2):
enableto enter privilege mode/administrator ? mode/rootshow ip interface briefto see interfacesconfigure terminalenters GLOBAL configuration modehostname /name/to change name of e.g. router, switch etcinterface /typeINinfofromshowIPcommand/to set the interfaceno shutdownto enable the interfaceip address /IPaddress Subnetmask/to set IP address for the interfaceendbrings you back to privilege modecopy running-config startup-configwhich will save System Configuration to the NV RAM
- Setting up Router (R1):
enableto enter privilege mode/administrator mode/rootshow ip interface briefto see interfacesconfigure terminalenters GLOBAL configuration modehostname R1to change name of e.g. router to R1int g0/0/0to set the interfaceno shutdownto enable the interfaceip address 10.1.1.1 255.255.255.0to set IP address for the interfaceendbrings you back to privilege modeping 10.1.1.1to ping 10.1.1.1copy running-config startup-configwhich will save System Configuration to the NV RAM or another option is to use simplywr(does the same and is an old command)
- Why you cannot ping another router?
7. Packet Tracer Tips and Tricks
Flashcards/Active Recall Q+A: #flashcards
- How to setup a router? #card
enconf thost h1int g0/0/0no shutip address x.x.x.x 255.255.255.0endping x.x.x.xwr
- How to enter privilege/admin/root mode in CISCO CLI? #card
enableor simplyen
- How to see interfaces in CISCO CLI? #card
show ip interface brief
- How to enter GLOBAL configuration mode in CISCO CLI? #card
configure terminalorconf t
- How to change router or switch name in CISCO CLI? #card
hostname /newname/
- How to set interface in CISCO CLI? #card
interface /typeINinfofromshowIPcommand/or simplyint /typeINinfofromshowIPcommand/
- How to enable interface in CISCO CLI? #card
no shutdown
- How to set/change IP address for the interface in CISCO CLI? #card
ip address /IPaddress Subnetmask/
- How to go back to privilege mode in CISCO CLI? #card
end
- How to save System Configuration to the NVRAM in CISCO CLI? #card
copy running-config startup-config
- What are 2 ways of saving System Configurations in CISCO CLI? #card
copy running-config startup-configwr- old way
- How to view all available commands in CISCO CLI? #card
- command followed by a question mark ? e.g.
command ?
- command followed by a question mark ? e.g.