Basic Router Configuration
Now I will write about basic router configuration (BRC).
BRC is the first thing ‘must-do’ when working with router.
Points of BRC includes:
- setting up hostname
- enable password (plain text)
- service password-encryption (make it encrypted)
- enable secret (password with MD5, higher priority than enable password)
- setting up banner
- setting up telnet
- turning on all interfaces connected to other router or network devices (very usefull for CDP)
console:
router> enable
router# conf t
router(config)# hostname router-1
router-1(config)# enable password pass
router-1(config)# service password-encryption
router-1(config)# enable secret passwd
router-1(config)# banner motd #
—!!! Restricted Shell !!!— #
router-1(config)# line vty 0 4
router-1(config-line)# password cisco
router-1(config-line)# login
router-1(config-line)# exit
router-1(config)# int s0/0
router-1(config-if)# no shut
router-1(config-if)# exit
router-1(config)# int s0/1
router-1(config-if)# no shut
router-1(config-if)# exit
router-1(config)# int e0/1
router-1(config-if)# no shut
router-1(config-if)# exit
router-1(config)# int fa0/1
router-1(config-if)# no shut
router-1(config-if)# exit
router-1(config)#

ginian nih gw suka, dari awal dl belajar….
Comment by Foryanto — March 11, 2008 @ 6:40 am
# to Foryanto
Thanks For buat kunjungannya, ide dasar gue sebenarnya buat referensi. Jadi kalo gue lagi di field ada yang kelupaan kan bisa lihat catetan di blog ini
Kalo bermanfaat buat networkers lainnya makin bagus lagi
Comment by Jodi — March 11, 2008 @ 9:18 am