08-31-2019 09:28 AM
I need with this assignment teacher is too vague and new to make this understand able
08-31-2019 09:53 AM
Hi @CarloGuizzo2306 ,
I guess you are in ccna2.
At what points of the assignment do you need help?
Regards
08-31-2019 10:09 AM
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
08-31-2019 10:45 AM
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
09-01-2019 11:40 AM
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),
09-01-2019 02:14 PM
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
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide