| |
These are some basic configuration commands for our school router. Other
commands are listed under there topic ie. Acl's. These commands get the
router ready to accept all the other commands, and do it's basic
configuration.
router#config t
router(config)#hostname sunnyslope
sunnyslope(config)#ena pass sunny
sunnyslope(config)#ena secret slope
sunnyslope(config)#line vty 0 4
sunnyslope(config-line)#pass sunny
sunnyslope(config-line)#exit
sunnyslope#config t
sunnyslope(config)#int s0
sunnyslope(config-if)#ip addr 10.1.0.0 255.255.0.0
sunnyslope(config-if)#clockrate 56000
sunnyslope(config-if)#encapsulation ppp
sunnyslope(config-if)#username district1 password abc123
sunnyslope(config-if)#ppp authentication chap
sunnyslope(config-if)#ppp chap hostname district1
sunnyslope(config-if)#ppp chap password abc123
sunnyslope(config-if)#no shutdown
sunnyslope(config-if)#int e0
sunnyslope(config-if)#ip addr 10.11.0.0 255.255.0.0
sunnyslope(config-if)#no shutdown
sunnyslope(config-if)#int e1
sunnyslope(config-if)#ip addr 10.10.0.0 255.255.0.0
sunnyslope(config-if)#no shutdown
|