Good morning,
I'm trying to configure an ASA cisco in my network.
I have a Juniper SRX100 router, configured as a bridge, then, directly connected I have the Cisco ASA and connected to the inside interface my switch Catalyst.
Connected to the catalyst I have three different servers and one laptop.
I have configured a dynamic NAT (PAT) to allow the traffic from 10.10.0.0/24 and it is working right.
My problem is with my two public servers sigma, delta, theta and with beta (with is my switch and I want to allow the ssh with the public IP 37.209.210.71).
I have configured in ASDM four public servers which are created an access-list and an automatic nat.
I am not sure what it is not working but I have tried a lot of things and I can't discover what is the problem...
This is the code:
object network obj-beta-private
host 10.10.0.10
object network obj-beta-public
host 37.209.210.71
object network obj-delta-private
host 10.10.0.220
object network obj-delta-public
host 37.209.210.70
object network obj-sigma-private
host 10.10.0.250
object network obj-sigma-public
host 37.209.210.68
object network obj-theta-private
host 10.10.0.210
object network obj-theta-public
host 37.209.210.69
object network obj-range-private
subnet 10.10.0.0 255.255.255.0
object-group protocol TCPUDP
protocol-object udp
protocol-object tcp
access-list outside_access_in extended permit tcp any object obj-theta-private
access-list outside_access_in extended permit tcp any object obj-sigma-private
access-list outside_access_in extended permit tcp any object obj-delta-private
access-list outside_access_in extended permit tcp any object obj-beta-private
access-list outside_access_in extended permit icmp any any
pager lines 24
logging enable
logging asdm informational
mtu outside 1500
mtu inside 1500
no failover
icmp unreachable rate-limit 1 burst-size 1
icmp permit any outside
icmp permit any inside
no asdm history enable
arp timeout 14400
nat (any,outside) source dynamic obj-range-private interface
!
object network obj-beta-private
nat (inside,outside) static obj-beta-public
object network obj-delta-private
nat (inside,outside) static obj-delta-public
object network obj-sigma-private
nat (inside,outside) static obj-sigma-public
object network obj-theta-private
nat (inside,outside) static obj-theta-public
access-group outside_access_in in interface outside
F1S-Mu# show nat detail
Manual NAT Policies (Section 1)
1 (any) to (outside) source dynamic obj-range-private interface translate_hits = 33, untranslate_hits = 9 Source - Origin: 10.10.0.0/24, Translated: 37.209.210.75/28
Auto NAT Policies (Section 2)
1 (inside) to (outside) source static obj-beta-private obj-beta-public
translate_hits = 2, untranslate_hits = 3
Source - Origin: 10.10.0.10/32, Translated: 37.209.210.71/32
2 (inside) to (outside) source static obj-theta-private obj-theta-public
translate_hits = 271, untranslate_hits = 7
Source - Origin: 10.10.0.210/32, Translated: 37.209.210.69/32
3 (inside) to (outside) source static obj-delta-private obj-delta-public
translate_hits = 293, untranslate_hits = 0
Source - Origin: 10.10.0.220/32, Translated: 37.209.210.70/32
4 (inside) to (outside) source static obj-sigma-private obj-sigma-public
translate_hits = 0, untranslate_hits = 3
Source - Origin: 10.10.0.250/32, Translated: 37.209.210.68/32
Thanks for your help!!
Eche