0% found this document useful (0 votes)
214 views6 pages

CLI Router Cisco Rule #5

The document outlines steps to configure a network topology with 3 routers: 1. Interface IPs are configured on each router 2. Static routes are configured on each router to route between subnets 3. User IPs are configured on PCs to access the network 4. Services like telnet and DHCP are enabled to allow remote access and auto IP assignment.

Uploaded by

Ragman Fache
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
214 views6 pages

CLI Router Cisco Rule #5

The document outlines steps to configure a network topology with 3 routers: 1. Interface IPs are configured on each router 2. Static routes are configured on each router to route between subnets 3. User IPs are configured on PCs to access the network 4. Services like telnet and DHCP are enabled to allow remote access and auto IP assignment.

Uploaded by

Ragman Fache
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

STEP 1, Create topology base on picture

Router0

interface

fa0/0-----> IP:10.0.0.1/8

se2/0-----> IP:20.0.0.1/8

se3/0-----> IP:40.0.0.1/8

Router1

interface

fa0/0-----> IP:30.0.0.1/8

se2/0-----> IP:20.0.0.2/8

se3/0-----> IP:50.0.0.1/8

Router3

interface

fa0/0-----> IP:60.0.0.1/8

se2/0-----> IP:40.0.0.2/8

se3/0-----> IP:50.0.0.2/8

STEP 2, consoling via PC0 (take over Routr0)


Router0>enable
Router0#configure terminal

Router0(config)#interface Fastethernet0/0

Router0(config-if)#ip address 10.0.0.1 255.0.0.0

Router0(config-if)#no shutdown

Router0(config-if)#exit

Router0(config)#

Router0(config)#interface Serial2/0

Router0(config-if)#ip address 20.0.0.1 255.0.0.0

Router0(config-if)#clock rate 64000

Router0(config-if)#no shutdown

Router0(config-if)#exit

Router0(config)#

Router0(config)#interface Serial3/0

Router0(config-if)#ip address 40.0.0.1 255.0.0.0

Router0(config-if)#clock rate 64000

Router0(config-if)#no shutdown

Router0(config-if)#exit

Router0(config)#

Router0(config)#enable password one

Router0(config)#

STEP 3, consoling via Laptop0 (take over Router1)


Router0>enable

Router0#configure terminal

Router0(config)#interface Fastethernet0/0

Router0(config-if)#ip address 30.0.0.1 255.0.0.0

Router0(config-if)#no shutdown

Router0(config-if)#exit

Router0(config)#
Router0(config)#interface Serial2/0

Router0(config-if)#ip address 20.0.0.2 255.0.0.0

Router0(config-if)#clock rate 64000

Router0(config-if)#no shutdown

Router0(config-if)#exit

Router0(config)#

Router0(config)#interface Serial3/0

Router0(config-if)#ip address 50.0.0.1 255.0.0.0

Router0(config-if)#clock rate 64000

Router0(config-if)#no shutdown

Router0(config-if)#exit

Router0(config)#

Router0(config)#enable password two

Router0(config)#

STEP 4, consoling via Laptop1 (take over Router3)


Router0>enable

Router0#configure terminal

Router0(config)#interface Fastethernet0/0

Router0(config-if)#ip address 60.0.0.1 255.0.0.0

Router0(config-if)#no shutdown

Router0(config-if)#exit

Router0(config)#

Router0(config)#interface Serial2/0

Router0(config-if)#ip address 40.0.0.2 255.0.0.0

Router0(config-if)#clock rate 64000

Router0(config-if)#no shutdown

Router0(config-if)#exit

Router0(config)#
Router0(config)#interface Serial3/0

Router0(config-if)#ip address 50.0.0.2 255.0.0.0

Router0(config-if)#clock rate 64000

Router0(config-if)#no shutdown

Router0(config-if)#exit

Router0(config)#

Router0(config)#enable password three

Router0(config)#

STEP 5, static IP for Router0


Router0(config)#ip route 30.0.0.0 255.0.0.0 20.0.0.2

Router0(config)#ip route 50.0.0.0 255.0.0.0 20.0.0.2

Router0(config)#ip route 60.0.0.0 255.0.0.0 20.0.0.2

Router0(config)#ip route 30.0.0.0 255.0.0.0 40.0.0.2

Router0(config)#ip route 50.0.0.0 255.0.0.0 40.0.0.2

Router0(config)#ip route 60.0.0.0 255.0.0.0 40.0.0.2

STEP 6, static IP for Router1


Router1(config)#ip route 10.0.0.0 255.0.0.0 20.0.0.1

Router1(config)#ip route 40.0.0.0 255.0.0.0 20.0.0.1

Router1(config)#ip route 60.0.0.0 255.0.0.0 20.0.0.1

Router1(config)#ip route 10.0.0.0 255.0.0.0 50.0.0.2

Router1(config)#ip route 40.0.0.0 255.0.0.0 50.0.0.2

Router1(config)#ip route 60.0.0.0 255.0.0.0 50.0.0.2

STEP 7, static IP for Router3


Router3(config)#ip route 10.0.0.0 255.0.0.0 30.0.0.1

Router3(config)#ip route 20.0.0.0 255.0.0.0 30.0.0.1

Router3(config)#ip route 30.0.0.0 255.0.0.0 30.0.0.1


Router3(config)#ip route 10.0.0.0 255.0.0.0 40.0.0.1

Router3(config)#ip route 20.0.0.0 255.0.0.0 40.0.0.1

Router3(config)#ip route 30.0.0.0 255.0.0.0 40.0.0.1

STEP 8, Setting IP user


PC0 (10.0.0.2/8) , Laptop0 (30.0.0.2/8) , Laptop1 (60.0.0.2/8)

STEP 9, ping all node (make sure all node connected)

STEP 10, Giving telnet service


at Router0 side

Router0(config)#line vty 0 4

Router0(config-line)# password 121212

Router0(config-line)# login

Router0(config-line)# exit

Router0(config)#

at Router1 side

Router1(config)#line vty 0 4

Router1(config-line)# password 123123

Router1(config-line)# login

Router1(config-line)# exit

Router1(config)#

at Router3 side

Router3(config)#line vty 0 4

Router3(config-line)# password 112233

Router3(config-line)# login

Router3(config-line)# exit

Router3(config)#
STEP 11, DHCP setting
Router1 ---> Setting IP Fastethernet1/0 (70.0.0.1/8)

Add LAN with two PCs into Router1 (fastethernet1/0)

Router1(config)#ip dhcp pool auto ----------------------> word "auto" is option

Router1(dhcp-config)#network 70.0.0.0 255.0.0.0

Router1(dhcp-config)#default-router 70.0.0.1

Router1(dhcp-config)#dns-server 70.0.0.100 -------------> IP option, base on DNS on your LAN

You might also like