Set a console password to cisco |
Router(config)#line con 0
Router(config-line)#login
Router(config-line)#password cisco |
Set the telnet password to cisco |
Router(config)#line vty 0 4
Router(config-line)#login
Router(config-line)#password cisco |
Stop console timing out |
Router(config)#line con 0
Router(config-line)#exec-timeout 0 0 |
Set the enable password to [ANOTHER]. |
Router(config)#enable password [ANOTHER] |
Set the enable
secret password to [ANOTHER].
This will
override the enable password and will be stored encypted within the config
file |
Router(config)#enable secret
[ANOTHER] |
Enable an interface |
Router(config-if)#no shutdown |
To disable an interface |
Router(config-if)#shutdown |
To add an IP address to a interface |
Router(config-if)#ip addr 10.1.1.1
255.255.255.0 |
To enable RIP on all 192.168.x.y interfaces |
Router(config)#router rip
Router(config-router)#network 192.168.0.0 |
Disable RIP |
Router(config)#no router rip |
To enable IRGP with a AS of 200, to all interfaces |
Router(config)#router igrp 200
Router(config-router)#network 192.168.0.0 |
Disable IGRP |
Router(config)#no router igrp 200 |
Static route the remote network is 192.168.1.0, with a
mask of 255.255.255.0, the next hop is 192.168.2.1, at a cost of 3 hops |
Router(config)#ip route 192.168.1.0
255.255.255.0 192.168.2.1 3 |
Disable CDP for the whole router |
Router(config)#no cdp run |
Enable CDP for he whole router |
Router(config)#cdp run |
Disable CDP on an interface |
Router(config-if)#no cdp enable |