08-18-2023 08:48 PM - last edited on 08-20-2023 11:36 PM by Translator
Hi,
I'm a student at ECPI university and I'm having issues with a project using Cisco packet Tracer.
The network is setup exactly like they asked, but all my devices on the network cannot ping the virtual internet server
11.1.1.10
Each device on the network can ping each other but any attempt to ping the internet server results in Request Timed Out.
I can ping the Cisco 4331 Router on the IP address I assigned to the
G0/0/1 port 11.0.0.46 255.255.255.0
On any of those devices as well.
If I ping the virtual internet server
11.1.1.10
from the Router it works, also if I ping any device on the network from the router it works which is puzzling. Its like
G0/0/1 and G0/0/0
are not talking to each other but im able to ping
g0/0/1
Assigned IP address.
All the devices are connected through two Cisco 3560's with Vlans setup.
Any help would be appreciated.
attached the cisco packet file into
Proj4ConnectInternet.zip
Solved! Go to Solution.
08-18-2023 11:33 PM - last edited on 08-20-2023 11:39 PM by Translator
@GCharette you need to configure NAT on this case. because your router connected to virtual server dont know about
172.x.x.x
ranges. you can add nat on
geocha8546-R1
i added below config to test
172.16.46.32/27
subnet. you can add other subnets to nat ACL and test
interface GigabitEthernet0/0/0.20
ip nat inside
!
interface GigabitEthernet0/0/1
ip nat outside
ip nat inside source list 100 interface GigabitEthernet0/0/1 overload
access-list 100 permit ip 172.16.46.32 0.0.0.31 11.0.0.0 0.255.255.255
08-18-2023 09:16 PM
@GCharette share your pkt file here by zipping it
08-18-2023 11:33 PM - last edited on 08-20-2023 11:39 PM by Translator
@GCharette you need to configure NAT on this case. because your router connected to virtual server dont know about
172.x.x.x
ranges. you can add nat on
geocha8546-R1
i added below config to test
172.16.46.32/27
subnet. you can add other subnets to nat ACL and test
interface GigabitEthernet0/0/0.20
ip nat inside
!
interface GigabitEthernet0/0/1
ip nat outside
ip nat inside source list 100 interface GigabitEthernet0/0/1 overload
access-list 100 permit ip 172.16.46.32 0.0.0.31 11.0.0.0 0.255.255.255
08-19-2023 12:39 PM - last edited on 08-20-2023 11:40 PM by Translator
This worked...They haven't taught us this, yet which is a little frustrating.... but I'm going to share with the other students in my class.
So, my question now is, do I have to do the
ip nat inside
on each of the subnets right?
Also is there a way to cover all subnets with that long
access-list 100 permit statement
on one line or must it be seperate also?
Thankyou KB
08-19-2023 01:04 PM - last edited on 08-20-2023 11:41 PM by Translator
never mind i found the answer...looks like i do have to make a separate
access-list
entry for each subnet....but i can use
any instead of 11.0.0.0 0.255.255.255....
Which is how you would normally want it to act in a typical network that has internet access? correct?
08-19-2023 09:05 PM - last edited on 08-20-2023 11:41 PM by Translator
@GCharette i suggest not to use
any
that can be a issue for internal routing.
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