Packet Tracer Help Needed!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2019 06:18 AM - edited 01-24-2019 02:04 AM
So i've just set up a network on Packet Tracer including 2 PC's, 2 Routers and 1 web server.
The thing is how do i get packet tracer to show me sending web traffic from one PC to another?
i've tried the "simulation" on Packet Tracer but that is just god awful.
Any help would be appreciated.
Thanks
- Labels:
-
Routing Protocols

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2019 06:21 AM
Hello,
post the Packet Tracer project file (.pkt). ZIP it first otherwise the system won't let you upload it...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2019 06:24 AM - edited 01-24-2019 02:05 AM
Thanks for the quick response, i've attached the pt file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2019 06:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2019 06:55 AM
On the Right router we need to create an ACL that will prevent any odd-numbered IP addressed network devices represented by Right-PC from being able to reach any even-numbered IP addressed device in the network occupied by Left-PC, when any device is using HTTP and HTTPS traffic.
how would i go about this aswell?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2019 06:45 AM
Hi @Billdog,
You must make some changes in your topology:
1-You must add the DNS server IP(192.168.1.2) in the two PCs
2-You must add the ip of the network where the DNS server is located(192.168.1.0) in the EIGRP configuration on the router Right
3-The DNS server is also your WEB server, so only that ip (192.168.1.2) will respond to your WEB requests (according to your configuration, only the web page http://dns)
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2019 06:55 AM
On the Right router I need to create an ACL that will prevent any odd-numbered IP addressed network devices represented by Right-PC from being able to reach any even-numbered IP addressed device in the network occupied by Left-PC, when any device is using HTTP and HTTPS traffic.
How would i go about this aswell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2019 07:27 AM
Hi @Billdog,
I think that this ACL could work in that case:
right(config)#access-list 100 deny tcp 192.168.0.1 0.0.0.254 10.0.0.0 0.0.0.254 eq 80
right(config)#access-list 100 deny tcp 192.168.0.1 0.0.0.254 10.0.0.0 0.0.0.254 eq 443
right(config)#access-list 100 permit ip any any
right(config)#int f0/0
right(config-if)#ip access-group 100 in
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2019 07:39 AM
that works fine. is there a way to find if the packets are being dropped?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2019 07:46 AM - edited 01-15-2019 07:54 AM
Hi @Billdog,
Yes, add a server in the PC-Left network and assign an even-numbered IP address within the same network.
Then, in the PC-Right try to find the IP of that server with the web browser.
Regards
