0% found this document useful (0 votes)
81 views7 pages

Practica A Packet Tracert

The document describes the configuration of three routers - R1, R2, and R3. It configures their interfaces, IP addresses, OSPF routing protocol, and shows their OSPF neighbor relationships. Router interfaces are configured with IP addresses on serial and FastEthernet interfaces. OSPF is configured on each router with associated networks. The output of show ip ospf neighbor is displayed showing each router has established OSPF neighbors in a FULL state.

Uploaded by

M.Raza Zaidi
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)
81 views7 pages

Practica A Packet Tracert

The document describes the configuration of three routers - R1, R2, and R3. It configures their interfaces, IP addresses, OSPF routing protocol, and shows their OSPF neighbor relationships. Router interfaces are configured with IP addresses on serial and FastEthernet interfaces. OSPF is configured on each router with associated networks. The output of show ip ospf neighbor is displayed showing each router has established OSPF neighbors in a FULL state.

Uploaded by

M.Raza Zaidi
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/ 7

Practica A Packet Tracert

ROUTER 1 Router>enable Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname R1 R1(config)#interface s0/0/0 R1(config-if)#ip address 192.168.10.1 255.255.255.252 R1(config-if)#no shutdown %LINK-5-CHANGED: Interface Serial0/0/0, changed state to down

R1(config-if)#clock rate 64000 R1(config-if)#exit R1(config)#interface s0/0/1 R1(config-if)#ip address 192.168.10.5 255.255.255.252 R1(config-if)#no shutdown %LINK-5-CHANGED: Interface Serial0/0/1, changed state to down R1(config-if)#exit R1(config)#interface fa0/0 R1(config-if)#ip address 172.16.1.17 255.255.255.240 R1(config-if)#no shutdown

R1>enable R1#config t Enter configuration commands, one per line. End with CNTL/Z. R1(config)#router ospf 1 R1(config-router)#network 172.16.1.16 0.0.0.15 area 0 R1(config-router)#network 192.168.10.0 0.0.0.3 area 0 R1(config-router)#network 192.168.10.4 0.0.0.3 area 0 R1(config-router)#end R1(config-if)#interface loopback 0 R1(config-if)#ip address 10.1.1.1 255.255.255.255 R1#show ip ospf neighbor Neighbor ID Pri State Dead Time Address Interface 192.168.10.9 0 FULL/ 00:00:38 192.168.10.2 Serial0/0/0 192.168.10.10 0 FULL/ 00:00:38 192.168.10.6 Serial0/0/1

R1(config)#interface serial0/0/0 R1(config-if)#ip ospf hello-interval 5 R1(config-if)#ip ospf dead-interval 20 R1(config-if)# 01:48:19: %OSPF-5-ADJCHG: Process 1, Nbr 192.168.10.9 on Serial0/0/0 from FULL to DOWN, Neighbor Down: Dead timer expired

R1>enable Password: R1#config t Enter configuration commands, one per line. End with CNTL/Z. R1(config)#enable secret class R1(config)#enable password cisco R1(config)#line console 0 R1(config-line)#password cisco R1(config-line)#login R1(config-line)#exit R1(config)#line vty 0 4 R1(config-line)#password cisco R1(config-line)#login R1(config-line)#exit R1(config)#exit ROUTER 2 Bandwidth 64 Router>enable Router#configure t

Enter configuration commands, one per line. End with CNTL/Z. Router(config)#interface s0/0/0 Router(config-if)#ip address 192.168.10.2 255.255.255.252 Router(config-if)#no shutdown Router(config-if)# %LINK-5-CHANGED: Interface Serial0/0/0, changed state to up Router(config-if)# %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/0, changed state to up Router(config-if)#bandwidth 64 Router(config-if)#exit Router(config)#interface s0/0/1 Router(config-if)#ip address 192.168.10.9 255.255.255.252 Router(config-if)#no shutdown %LINK-5-CHANGED: Interface Serial0/0/1, changed state to down Router(config-if)#cloch rate 64000 ^ % Invalid input detected at '^' marker. Router(config-if)#clock rate 64000 Router(config-if)#bandwidth 64 Router(config-if)#exit Router(config)#interface fa 0/0 Router(config-if)#ip address 10.10.10.1 255.255.255.0 Router(config-if)#no shutdown R2>enable R2#config t

Enter configuration commands, one per line. End with CNTL/Z. R2(config)#router ospf 1 R2(config-router)#network 10.10.10.0 0.0.0.255 area 0 R2(config-router)#network 192.168.10.0 0.0.0.3 area 0 R2(config-router)# 00:23:01: %OSPF-5-ADJCHG: Process 1, Nbr 192.168.10.5 on Serial0/0/0 from LOADING to FULL, Loading Done R2(config-router)#network 192.168.10.8 0.0.0.3 area 0 R2(config-router)#end R2(config)#interface loopback 0 %LINK-5-CHANGED: Interface Loopback0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Loopback0, changed state to up R2(config-if)#interface loopback 0 R2(config-if)#ip address 10.2.2.2 255.255.255.255 R2#show ip ospf neighbor Neighbor ID Pri State Dead Time Address Interface 192.168.10.5 0 FULL/ 00:00:38 192.168.10.1 Serial0/0/0 192.168.10.10 0 FULL/ 00:00:39 192.168.10.10 Serial0/0/1 R2(config)#interface serial0/0/0 R2(config-if)#ip ospf hello-interval 5 R2(config-if)#ip ospf dead-interval 20 R2(config-if)# 01:27:47: %OSPF-5-ADJCHG: Process 1, Nbr 10.1.1.1 on Serial0/0/0 from LOADING to FULL, Loading Done

ROUTER 3 Router>enable Router#config t Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname R3 R3(config)#interface s0/0/0 R3(config-if)#ip address 192.168.10.6 255.255.255.252 R3(config-if)#no shutdown R3(config-if)# %LINK-5-CHANGED: Interface Serial0/0/0, changed state to up R3(config-if)#exit R3(config)#interface s0/0/0 R3(config-if)#clock rate 64000 R3(config-if)#exit R3(config)#interface s0/0 %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/0, changed state to up %Invalid interface type and number R3(config)#interface s0/0/1 R3(config-if)#ip address 192.168.10.10 255.255.255.252 R3(config-if)#no shutdown %LINK-5-CHANGED: Interface Serial0/0/1, changed state to up R3(config-if)#exit R3(config)#interface fa0/0 R3(config-if)#ip address 172.16.1.33 255.255.255.248

R3(config-if)#no shutdown R3>enable R3#config t Enter configuration commands, one per line. End with CNTL/Z. R3(config)#router ospf 1 R3(config-router)#network 172.16.1.32 0.0.0.7 area 0 R3(config-router)#network 192.168.10.4 0.0.0.3 area 0 R3(config-router)# 00:49:23: %OSPF-5-ADJCHG: Process 1, Nbr 192.168.10.5 on Serial0/0/0 from LOADING to FULL, Loading Done R3(config-router)#network 192.168.10.8 0.0.0.3 area 0 R3(config-router)#end R3# %SYS-5-CONFIG_I: Configured from console by console 00:57:25: %OSPF-5-ADJCHG: Process 1, Nbr 192.168.10.9 on Serial0/0/1 from LOADING to FULL, Loading Done R3#show ip ospf neighbor Neighbor ID Pri State 192.168.10.5 0 FULL/ 192.168.10.9 0 FULL/ Dead Time Address Interface 00:00:36 192.168.10.5 Serial0/0/0 00:00:37 192.168.10.9 Serial0/0/1

You might also like