02-05-2008 10:08 AM - edited 03-11-2019 04:59 AM
I have a new ASA 5510 that is behind our router/firewall. I am having some problems with configuration and not sure where I am hung up. I can't ping the internal Lan, 192.168.1. addresses. I have attached my configuration.
02-05-2008 10:23 AM
Seeing as you're not natting, the clients on 192.168.1.0 that you are trying to ping would have to have a route to the 192.168.10.0 network via the outside interface of the ASA, 192.168.1.22.
Also, this route stament is not correct as 192.168.1.0 is on the outside of the ASA.
route inside 192.168.0.0 255.255.0.0 192.168.10.1 1
02-05-2008 10:30 AM
copy paste this two lines
!
access-list acl_in permit ip any any
access-group acl_in in interface inside
!
02-05-2008 10:37 AM
02-05-2008 10:41 AM
I would disregard the previous post, as you do not need that inside acl.
This is not right either...
route outside 192.168.0.0 255.255.0.0 192.168.10.1 1
You can put back what you had, but would be a good idea to be more specific as all 192.168.0.0/16 networks are not on the inside as 192.168.1.0 is on the outside. For exmaple, if the networks accessed by 192.168.10.1 were 192.168.2.0 and 192.168.3.0 then...
route inside 192.168.2.0 255.255.255.0 192.168.10.1
route inside 192.168.3.0 255.255.255.0 192.168.10.1
You need a way for the clients on 192.168.1.0 to route to 192.168.1.22 when accessing 192.168.10.0. For example, if you had an outside router you could do...
ip route 192.168.10.0 255.255.255.0 192.168.1.22
02-05-2008 10:51 AM
What you can do is, just check the gateway of that 192.168.1.0 clients it should be 192.168.1.22 if that clients have different gateway address (another router) then that router should have route back to the ASA for your 192.168.10.0 network.
for an example in the router command should be
ip route 192.168.10.0 255.255.255.0 192.168.1.22
02-05-2008 10:53 AM
What you can do is, just check the gateway of that 192.168.1.0 clients it should be 192.168.1.22 if that clients have different gateway address (another router) then that router should have route back to the ASA for your 192.168.10.0 network.
for an example in the router command should be
ip route 192.168.10.0 255.255.255.0 192.168.1.22
02-06-2008 07:21 AM
remove your current nat statement
and add the following statement
static (inside,outside) 192.168.10.0 192.168.10.0 netmask 255.255.255.0 0 0
02-06-2008 07:26 AM
Thanks, got it working. I need to know the ports than I need to pass to the ASA with my existing router/firewall as the ASA will be behind the existing.
Can you help me with that?
02-06-2008 07:32 AM
which command solved your pinging problem?
from inside ping to outside?
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