Network Kings

Introduction to Cisco Router CLI (Command-Line Interface)

Introduction to Cisco IOS CLI (Command-Line Interface)

Cisco router cli configuration is easy to perform with the help of  cisco basics CLI commands, or you can simple login your user dashboard then:

Router configuration !!

Router> User mode
enable
Router# This is Privelege mode

Router#configure terminal

Router(config)This is Global configuration mode

Router(config)#hostname Nwkings

Nwkings(config)#interface e0/0
Nwkings(config-if)#ip address 1.1.1.1 255.0.0.0
Nwkings(config-if)#no shutdown

Nwkings(config)#interface e0/1
Nwkings(config-if)#ip address 2.1.1.1 255.0.0.0
Nwkings(config-if)#no shutdown

Nwkings#write

Nwkings#show ip interface brief
Interface IP-Address OK? Method Status Protocol
Ethernet0/0 1.1.1.1 YES manual up up
Ethernet0/1 2.1.1.1 YES manual up up

——————— EASY WAY ———————
enable
configure terminal
hostname NWkings
interface e0/0
ip address 1.1.1.1 255.0.0.0
no shutdown
interface e0/1
ip address 2.1.1.1 255.0.0.0
no shutdown
write