Senin, 24 November 2008

Step by Step Cisco Router IOS Setup

^ bagian inisialiasi ^

router > enable
router # configure terminal ; start to configure
router (config ) # hostname RI-ISP ; nameing the router
R1-ISP (config ) # service password-encription ; enable password encription
R1-ISP (config ) # enable secret cisco ; given password to login in privilage option
R1-ISP (config ) # line console 0 ; start to configure console line
R1-ISP (config-line)#password cisco
R1-ISP (config-line)#login
R1-ISP (config-line)#exit
R1-ISP (config) #line vty 0 4 ; start to configure telnet
R1-ISP (config-line)#password cisco
R1-ISP (config-line)#login
R1-ISP (config-line)#exit
R1-ISP (config ) # banner motd # …## restricted Area ##… # ; banner

^ bagian interface ^

R1-ISP (config ) # int fa0 ; start to configure fast ethernet port 0
R1-ISP (config-if ) # ip add 192.168.10.1 255.255.255.0
R1-ISP (config-if ) # no shutdown
R1-ISP (config ) # description LAN connection
R1-ISP (config-if ) # exit

R1-ISP (config ) # int s0 ; start to configure serial 0
R1-ISP (config-if ) # ip add 192.168.20.1 255.255.255.240
R1-ISP (config-if ) # clock rate 64000
R1-ISP (config-if ) # no shutdown
R1-ISP (config ) # Description WAN Connection
R1-ISP (config-if ) # exit

^ bagian routing ^

xx static route xx

R1-ISP(config) # ip route 192.168.10.0 255.255.255.0 fa0 ; static route to 192.168.10.0/24 to fa0
R1-ISP (config ) # ip route 0.0.0.0 0.0.0.0 s0 ; configure default route

xx RIPv2 route xx

R1-ISP (config ) # ip route 0.0.0.0 0.0.0.0 s0 ; configure default route
R1-ISP (config ) # router rip
R1-ISP (config-router) # network 192.168.10.0 ; configure network that connect to router
R1-ISP (config-router) # network xxx.xxx.xx.xx
R1-ISP (config-router) # version 2
R1-ISP (config-router) # passive interface fa0 ; to prevent broadcast from fa0
R1-ISP (config-router) # redistribute static ; to distrubute default route amog the reuter (for gateway router )
R1-ISP (config-router) # exit

xx EIGRP route xx

R1-ISP (config ) # ip route 0.0.0.0 0.0.0.0 s0 ; configure default route
R1-ISP (config ) # router eigrp 1 ; start configure eigrp with autonomous system 1
R1-ISP (config-router) # network 192.168.10.0 ; configure network that connect to router

R1-ISP (config-router) # network xxx.xxx.xx.xx

R1-ISP (config-router) # no auto sumarry ; auto summary for router client

R1-ISP (config-router) # redistribute static ; to distrubute default route among the router

xx OSPF route xx

R1-ISP (config ) # ip route 0.0.0.0 0.0.0.0 s0 ; configure default route
R1-ISP (config ) # router ospf 100
R1-ISP (config-router) # log-adjacency-changes
R1-ISP (config-router) # network 10.10.10.8 0.0.0.3 area 0
R1-ISP (config-router) # network 210.210.210.144 0.0.0.7 area 0
R1-ISP (config-router) # default-information originate ;; to distrubute default route among the router

^ bagian trouble shooting ^

R1-ISP # Show ip route
R1-ISP # show ip interface brief
R1-ISP # show interface
R1-ISP # show ip protocol
R1-ISP # show running-config
R1-ISP # show run protocol

diambil dari Step by Step Cisco Router IOS Setup

Tidak ada komentar: