Welcome to Artiste1.com
This guide is designed for networking beginners and those looking to refresh their fundamental Cisco IOS skills.
We'll cover essential concepts and commands to get you started with Cisco networking devices.
This is the default mode when you log into a Cisco device. It's denoted by the '>' prompt.
Router>
This mode allows you to view and change the configuration. It's denoted by the '#' prompt.
Router> enable
Router#
This mode is used for configuring the device. It's accessed from Privileged EXEC mode.
Router# configure terminal
Router(config)#
enable - Enter privileged EXEC modedisable - Exit privileged EXEC modeconfigure terminal - Enter global configuration modeexit - Exit current mode or interface configurationend - Exit to privileged EXEC mode from any sub-modeshow version - Display system hardware and software infoshow running-config - View current configurationshow interfaces - Display interface status and configurationshow ip interface brief - Quick view of interface IP addresses and status
Router(config)# hostname MyRouter
MyRouter(config)#
MyRouter(config)# interface gigabitethernet0/0
MyRouter(config-if)# ip address 192.168.1.1 255.255.255.0
MyRouter(config-if)# no shutdown
MyRouter(config)# enable secret MySecurePassword
MyRouter(config)# line console 0
MyRouter(config-line)# password MyConsolePassword
MyRouter(config-line)# login
Always remember to save your configuration changes:
MyRouter# copy running-config startup-config
You can also use the shorthand command: write memory or simply write
ping - Test connectivity to another IP addresstraceroute - Trace the path to a destinationshow ip route - Display the routing tableshow cdp neighbors - View directly connected Cisco devicesAlways change default passwords and use strong, unique passwords for each access method (console, enable, vty lines). Consider implementing AAA (Authentication, Authorization, and Accounting) for more robust security.
This guide covers the basics of Cisco IOS. As you become more comfortable with these fundamentals, you can explore more advanced topics and configurations.
Ready to dive deeper? Check out our other networking resources: