cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1785
Views
0
Helpful
9
Replies

Packet Tracer Help Needed!

Billdog
Level 1
Level 1

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

9 Replies 9

Hello,

 

post the Packet Tracer project file (.pkt). ZIP it first otherwise the system won't let you upload it...

Thanks for the quick response, i've attached the pt file

Hello,

 

I have added Netflow to your routers. On the server, go to Desktop and click on Netflow Collector. You should see a pie chart displaying traffic.

 

Is that what you are after ?

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?

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

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

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

 

that works fine. is there a way to find if the packets are being dropped?

 

Hi @Billdog,

 

Yes, add a server in the PC-Left network and assign an even-numbered IP address within the same network.PT10.jpg

 

 

 

 

 

 

 

 

 

 

Then, in the PC-Right try to find the IP of that server with the web browser.

 

Regards