cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1669
Views
0
Helpful
5
Replies

Assignment help

CarloGuizzo2306
Level 1
Level 1

I need with this assignment teacher is too vague and new to make this understand able

5 Replies 5

luis_cordova
VIP Alumni
VIP Alumni

Hi @CarloGuizzo2306 ,

 

I guess you are in ccna2.

At what points of the assignment do you need help?

 

Regards

Can't figure out the routing table to be able to ping from one host to another I've set up a static IP route on one router but I'm lost for all of it

 

Hi @CarloGuizzo2306 ,

 

The first task is accomplished by configuring the correct IPs on the devices.

 

The second and third task can be accomplished through an ACL, applied on the VTY lines of both routers.

 

RouterA

access-list 1 permit host 172.16.2.1 

RouterB

access-list 1 permit host 172.16.2.1 

 

This ACL allows host B. All others will be locked by implicit denial at the end of any ACL.

Now you apply this ACL

 

RouterA

line vty 0 4

access-class 1 in 

RouterB

line vty 0 4

access-class 1 in 

 

The fourth line is achieved by configuring static routes on both routers.

 

The fifth task is accomplished with the hostname command.

 

Regards 

 

ip route 172.16.2.0 255.255.255.0 172.16.3.0 150 

it wont let me ping from one host to the other it gets stuck on the routers ports 

C:\>ping 172.16.2.1

 

Pinging 172.16.2.1 with 32 bytes of data:

 

Reply from 172.16.1.254: Destination host unreachable.

Reply from 172.16.1.254: Destination host unreachable.

Reply from 172.16.1.254: Destination host unreachable.

Request timed out.

 

Ping statistics for 172.16.2.1:

Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),

Hi @CarloGuizzo2306 ,

 

Communications are two ways.

Make sure that on both routers you have a route to the neighboring network.

RouterA

ip route 172.16.2.0 255.255.255.0 172.16.3.254

RouterB

ip route 172.16.1.0 255.255.255.0 172.16.3.1

 

Regards