cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
3842
Views
0
Helpful
13
Replies

(ASA 8.2) DMZ access from inside network

mathieu.pogeant
Level 1
Level 1

Hello all,

I have a major issue since yesterday morning. I have this configuration:

Modem --- Cisco ASA --- Cisco Catalyst 3750 --- Inside network

I have just configured a DMZ on Cisco ASA. Problem is that I cannot access DMZ from inside network. It seems to work with Packet Tracer but I have tried to ping host in DMZ, access Web Server in DMZ but still doesn't work.

Here is my configuration. Could you please help?


ASA Version 8.2(1)
!
hostname CiscoASA5520
names
name 192.168.100.0 WORK
name 10.10.0.0 VPN
name 192.168.7.0 GUEST
name 192.168.6.0 DMZ1_NETWORK
name 192.168.8.0 DMZ2_NETWORK
!
interface GigabitEthernet0/0
nameif EXTERNAL
security-level 0
ip address 192.168.99.254 255.255.255.0
!
interface GigabitEthernet0/1
nameif INTERNAL
security-level 100
ip address 172.28.198.254 255.255.255.0
!
interface GigabitEthernet0/2
nameif DMZ1
security-level 50
ip address 192.168.6.254 255.255.255.0
!
interface GigabitEthernet0/3
nameif DMZ2
security-level 0
ip address 192.168.8.254 255.255.255.0
!
interface Management0/0
no nameif
no security-level
no ip address
management-only
!
ftp mode passive
clock timezone CEST 1
clock summer-time CEDT recurring last Sun Mar 2:00 last Sun Oct 3:00
dns domain-lookup EXTERNAL
dns server-group DefaultDNS
name-server 192.168.99.1
object-group protocol TCPUDP
protocol-object udp
protocol-object tcp
object-group service DM_INLINE_TCP_1 tcp
port-object eq 2684
port-object eq ssh
port-object eq 2250
object-group network synology
access-list INTERNAL_access_in extended permit ip any any
access-list INTERNAL_nat0_outbound extended permit ip WORK 255.255.255.0 VPN 255.255.255.0
access-list PrivateNetwork standard permit VPN 255.255.255.0
access-list PrivateNetwork standard permit WORK 255.255.255.0
access-list EXTERNAL_access_in extended permit ip VPN 255.255.255.0 any
access-list EXTERNAL_access_in extended permit tcp any host 192.168.99.254 object-group DM_INLINE_TCP_1
access-list DMZ1_access_in extended permit ip any any
pager lines 24
logging enable
logging asdm informational
mtu EXTERNAL 1500
mtu INTERNAL 1500
mtu DMZ1 1500
mtu DMZ2 1500
no failover
icmp unreachable rate-limit 1 burst-size 1
asdm image disk0:/asdm-762-150.bin
asdm location 10.0.0.0 255.255.255.0 INTERNAL
no asdm history enable
arp timeout 14400
global (EXTERNAL) 1 interface
nat (INTERNAL) 0 access-list INTERNAL_nat0_outbound
nat (INTERNAL) 1 172.28.198.0 255.255.255.0
nat (INTERNAL) 1 GUEST 255.255.255.0
nat (INTERNAL) 1 WORK 255.255.255.0
nat (DMZ1) 1 DMZ1_NETWORK 255.255.255.0
static (INTERNAL,EXTERNAL) tcp interface 2684 192.168.100.33 ssh netmask 255.255.255.255
static (DMZ1,EXTERNAL) tcp interface 2250 192.168.6.11 ssh netmask 255.255.255.255
static (INTERNAL,DMZ1) WORK WORK netmask 255.255.255.0
access-group EXTERNAL_access_in in interface EXTERNAL
access-group INTERNAL_access_in in interface INTERNAL
access-group DMZ1_access_in in interface DMZ1
route EXTERNAL 0.0.0.0 0.0.0.0 192.168.99.1 1
route INTERNAL GUEST 255.255.255.0 172.28.198.1 1
route INTERNAL WORK 255.255.255.0 172.28.198.1 1
timeout xlate 3:00:00
timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
timeout tcp-proxy-reassembly 0:01:00
http server enable
http WORK 255.255.255.0 INTERNAL
http 192.168.1.0 255.255.255.0 EXTERNAL
no snmp-server location
no snmp-server contact
crypto ipsec security-association lifetime seconds 28800
crypto ipsec security-association lifetime kilobytes 4608000
telnet WORK 255.255.255.0 INTERNAL
telnet timeout 5
ssh timeout 5
console timeout 0
threat-detection basic-threat
threat-detection statistics port
threat-detection statistics protocol
threat-detection statistics access-list
no threat-detection statistics tcp-intercept
ntp server 95.81.173.155 source EXTERNAL

!
class-map inspection_default
match default-inspection-traffic
!
!
policy-map type inspect dns preset_dns_map
parameters
message-length maximum 512
message-length maximum client auto
policy-map global_policy
class inspection_default
inspect dns preset_dns_map
inspect ftp
inspect h323 h225
inspect h323 ras
inspect rsh
inspect rtsp
inspect esmtp
inspect sqlnet
inspect skinny
inspect sunrpc
inspect xdmcp
inspect sip
inspect netbios
inspect tftp
inspect icmp
!
service-policy global_policy global
prompt hostname context
Cryptochecksum:5be65516cae30889264929013b17b6b2
: end

1 Accepted Solution

Accepted Solutions

Strange, it almost looks like the packet is being routed outside of the ASA. If the packet was seen inbound on the inside interface, you should not be able to ping the DMZ interface (by security design). Can you paste the "show ip route" output from the 3750 to see if traffic is routed some other way?

View solution in original post

13 Replies 13

Rahul Govindan
VIP Alumni
VIP Alumni

I am assuming you want to talk between Inside and DMZ without any NAT. You would need to add the traffic between Inside and DMZ in your Nat exemption ACL.

nat (INTERNAL) 0 access-list INTERNAL_nat0_outbound

If you do not add this, traffic matches the PAT rule you have for internet access:

nat (INTERNAL) 1 172.28.198.0 255.255.255.0
nat (INTERNAL) 1 GUEST 255.255.255.0
nat (INTERNAL) 1 WORK 255.255.255.0

Make the following addition to the ACL:

access-list INTERNAL_nat0_outbound extended permit ip <internal-network> <dmz-network>

Thank you Rahul.

I have modified NAT exemption ACL as proposed but I have still the same problem.

Any other idea?

Best regards

Can you attach the packet-tracer output for the traffic in this thread? Also, could you apply a packet capture on the inside and DMZ interfaces to see what happens to the traffic?

Hi Rahul,

You will find below the outputs for both packet captures

From INTERNAL

CiscoASA5520# packet-tracer input INTERNAL icmp 192.168.100.2 0 0 192.168.6.10

Phase: 1

Type: FLOW-LOOKUP

Subtype:

Result: ALLOW

Config:

Additional Information:

Found no matching flow, creating a new flow

Phase: 2

Type: ROUTE-LOOKUP

Subtype: input

Result: ALLOW

Config:

Additional Information:

in   DMZ1_NETWORK    255.255.255.0   DMZ1

Phase: 3

Type: ACCESS-LIST

Subtype: log

Result: ALLOW

Config:

access-group INTERNAL_access_in in interface INTERNAL

access-list INTERNAL_access_in extended permit ip any any

Additional Information:

Phase: 4

Type: IP-OPTIONS

Subtype:

Result: ALLOW

Config:

Additional Information:

Phase: 5

Type: INSPECT

Subtype: np-inspect

Result: ALLOW

Config:

class-map inspection_default

match default-inspection-traffic

policy-map global_policy

class inspection_default

  inspect icmp

service-policy global_policy global

Additional Information:

Phase: 6

Type: INSPECT

Subtype: np-inspect

Result: ALLOW

Config:

Additional Information:

Phase: 7

Type: NAT-EXEMPT

Subtype:

Result: ALLOW

Config:

  match ip INTERNAL WORK 255.255.255.0 DMZ1 DMZ1_NETWORK 255.255.255.0

    NAT exempt

    translate_hits = 2, untranslate_hits = 1

Additional Information:

Phase: 8

Type: NAT

Subtype:

Result: ALLOW

Config:

static (INTERNAL,DMZ1) WORK WORK netmask 255.255.255.0

  match ip INTERNAL WORK 255.255.255.0 DMZ1 any

    static translation to WORK

    translate_hits = 6, untranslate_hits = 3

Additional Information:

Phase: 9

Type: NAT

Subtype: host-limits

Result: ALLOW

Config:

static (INTERNAL,DMZ1) WORK WORK netmask 255.255.255.0

  match ip INTERNAL WORK 255.255.255.0 DMZ1 any

    static translation to WORK

    translate_hits = 6, untranslate_hits = 3

Additional Information:

Phase: 10

Type: FLOW-CREATION

Subtype:

Result: ALLOW

Config:

Additional Information:

New flow created with id 9230494, packet dispatched to next module

Result:

input-interface: INTERNAL

input-status: up

input-line-status: up

output-interface: DMZ1

output-status: up

output-line-status: up

Action: allow

FROM DMZ1

CiscoASA5520# packet-tracer input DMZ1 icmp 192.168.6.10 0 0 192.168.100.2

Phase: 1

Type: FLOW-LOOKUP

Subtype:

Result: ALLOW

Config:

Additional Information:

Found no matching flow, creating a new flow

Phase: 2

Type: UN-NAT

Subtype: static

Result: ALLOW

Config:

static (INTERNAL,DMZ1) WORK WORK netmask 255.255.255.0

  match ip INTERNAL WORK 255.255.255.0 DMZ1 any

    static translation to WORK

    translate_hits = 6, untranslate_hits = 4

Additional Information:

NAT divert to egress interface INTERNAL

Untranslate WORK/0 to WORK/0 using netmask 255.255.255.0

Phase: 3

Type: ACCESS-LIST

Subtype: log

Result: ALLOW

Config:

access-group DMZ1_access_in in interface DMZ1

access-list DMZ1_access_in extended permit ip any any

Additional Information:

Phase: 4

Type: IP-OPTIONS

Subtype:

Result: ALLOW

Config:

Additional Information:

Phase: 5

Type: INSPECT

Subtype: np-inspect

Result: ALLOW

Config:

Additional Information:

Phase: 6

Type: INSPECT

Subtype: np-inspect

Result: ALLOW

Config:

Additional Information:

Phase: 7

Type: NAT-EXEMPT

Subtype: rpf-check

Result: ALLOW

Config:

Additional Information:

Phase: 8

Type: NAT

Subtype: host-limits

Result: ALLOW

Config:

nat (DMZ1) 1 DMZ1_NETWORK 255.255.255.0

  match ip DMZ1 DMZ1_NETWORK 255.255.255.0 EXTERNAL any

    dynamic translation to pool 1 (192.168.99.254 [Interface PAT])

    translate_hits = 699, untranslate_hits = 0

Additional Information:

Phase: 9

Type: NAT

Subtype: rpf-check

Result: ALLOW

Config:

static (INTERNAL,DMZ1) WORK WORK netmask 255.255.255.0

  match ip INTERNAL WORK 255.255.255.0 DMZ1 any

    static translation to WORK

    translate_hits = 6, untranslate_hits = 4

Additional Information:

Phase: 10

Type: FLOW-CREATION

Subtype:

Result: ALLOW

Config:

Additional Information:

New flow created with id 9230598, packet dispatched to next module

Result:

input-interface: DMZ1

input-status: up

input-line-status: up

output-interface: INTERNAL

output-status: up

output-line-status: up

Action: allow

Thank you for your help

Best regards

Your packet-tracer output looks good. Can you collect a packet capture like shown in the example below:

http://www.cisco.com/c/en/us/support/docs/security/asa-5500-x-series-next-generation-firewalls/118097-configure-asa-00.html

What we need to see is echo-request on the inside and DMZ1 interface (inbound and outbound respectively) and echo-reply on DMZ1 and inside (inbound and outbound resp.)

Hi Rahul,

I have just tried a packet capture but buffer stays empty.

Here my screenshots

Maybe it is not even making it to the ASA inside. Can you check your routing (if it is a L3 device) on your 3750 if the routes for the DMZ network points to the ASA?

I have this line in 3750 configuration so that all packets go to ASA (172.28.298.254)

ip route 0.0.0.0 0.0.0.0 172.28.198.254

Other information: from inside network, i can ping ASA DMZ interface (192.168.6.254) but not the hosts in DMZ.

Strange, it almost looks like the packet is being routed outside of the ASA. If the packet was seen inbound on the inside interface, you should not be able to ping the DMZ interface (by security design). Can you paste the "show ip route" output from the 3750 to see if traffic is routed some other way?

Hello Rahul,

Thanks to your advice, I finally found the solution.

Doing a "show ip route" I saw that there where a connected route 192.168.6.254 connected to switch. It was there after some testing I made in the past on the switch. Removing this route and access to DMZ from inside works well!

Many thanks for your support,

Best regards

syeda3
Level 1
Level 1

Please see the below similar old threads for useful information

https://supportforums.cisco.com/discussion/12146271/cisco-asa-82-dmz

https://supportforums.cisco.com/discussion/11638141/cisco-asa-825-dmz-inside-access

Hope to help.

Thank you for your help but there threads doesn't help. 

I have already these configurations in place but doesn't work.

Best regards

TDBSupport92220
Level 1
Level 1

I have the same issue on ASA5505,  IOS 8.2.

I have created a DMZ (voip) zone but I'm not able to ping the voip (DMZ) from inside. Is there someone who can support me ?

Please find my configuration here below:

: Saved
: Written by enable_15 at 07:07:10.777 CAT Wed Oct 21 2020
!
ASA Version 8.2(2)
!
hostname ptazim
domain-name ptabank.org
enable password q9aaQPsZdgzM67bI encrypted
passwd 2KFQnbNIdI.2KYOU encrypted
names
name 192.168.2.0 bujumbura description bujumbura
name 192.168.1.0 Nairobi description Nairobi
name 192.168.4.0 Remotelink-ippools description Remotelink-ippools
name 192.168.9.0 Nairobi-Voice description Nairobi IP telephony
name 192.168.10.0 Nairobi-Domain description Nairobi Domain IP
name 192.168.0.0 Nairobi-Riverbed description riverbed network
name 192.168.11.0 Nairobi-wireless description Nairobi wireless users
name 192.168.6.0 Remote-VPN
name 192.168.8.0 AddisAbaba description AddisAbaba
dns-guard
!
interface Vlan1
nameif inside
security-level 100
ip address 192.168.3.1 255.255.255.0
!
interface Vlan2
nameif outside
security-level 0
ip address 197.155.233.22 255.255.255.252
!
interface Vlan100
no nameif
no security-level
no ip address
!
interface Vlan1867
no forward interface Vlan1
nameif voip
security-level 0
ip address 172.16.14.50 255.255.255.252
!
interface Ethernet0/0
switchport access vlan 2
!
interface Ethernet0/1
!
interface Ethernet0/2
!
interface Ethernet0/3
!
interface Ethernet0/4
!
interface Ethernet0/5
switchport access vlan 1867
!
interface Ethernet0/6
!
interface Ethernet0/7
switchport access vlan 12
!
boot system disk0:/asa822-k8.bin
ftp mode passive
clock timezone CAT 2
dns domain-lookup inside
dns domain-lookup outside
dns server-group DefaultDNS
domain-name ptabank.org
same-security-traffic permit inter-interface
same-security-traffic permit intra-interface
object-group network DM_INLINE_NETWORK_2
network-object Nairobi 255.255.255.0
network-object Nairobi-Voice 255.255.255.0
network-object Nairobi-Domain 255.255.255.0
network-object Nairobi-Riverbed 255.255.255.0
network-object Nairobi-wireless 255.255.255.0
network-object Remote-VPN 255.255.255.0
object-group network DM_INLINE_NETWORK_3
network-object Nairobi-Riverbed 255.255.255.0
network-object Nairobi-wireless 255.255.255.0
network-object 192.168.12.0 255.255.255.0
network-object Nairobi-Voice 255.255.255.0
network-object Remote-VPN 255.255.255.0
network-object Nairobi 255.255.255.0
network-object Nairobi-Domain 255.255.255.0
network-object Remotelink-ippools 255.255.255.0
object-group network DM_INLINE_NETWORK_4
network-object bujumbura 255.255.255.0
network-object 192.168.20.0 255.255.255.0
object-group network obj-192.168.3.1
access-list inside_nat0_outbound extended permit ip 192.168.3.0 255.255.255.0 object-group DM_INLINE_NETWORK_2
access-list inside_nat0_outbound extended permit ip 192.168.3.0 255.255.255.0 object-group DM_INLINE_NETWORK_4
access-list inside_nat0_outbound extended permit ip 192.168.3.0 255.255.255.0 Remotelink-ippools 255.255.255.0
access-list inside_nat0_outbound extended permit ip 192.168.3.0 255.255.255.0 192.168.5.0 255.255.255.0
access-list inside_nat0_outbound extended permit ip 192.168.3.0 255.255.255.0 192.168.12.0 255.255.255.0
access-list inside_nat0_outbound extended permit ip 192.168.3.0 255.255.255.0 192.168.25.0 255.255.255.0
access-list inside_nat0_outbound extended permit ip 192.168.25.0 255.255.255.0 192.168.3.0 255.255.255.0
access-list inside_nat0_outbound extended permit ip 192.168.3.0 255.255.255.0 bujumbura 255.255.255.0
access-list inside_nat0_outbound extended permit ip 192.168.3.0 255.255.255.0 Nairobi 255.255.255.0
access-list inside_nat0_outbound extended permit ip 192.168.3.0 255.255.255.0 AddisAbaba 255.255.255.0
access-list outside_1_cryptomap extended permit ip 192.168.3.0 255.255.255.0 bujumbura 255.255.255.0
access-list acl_out extended permit tcp any any eq domain
access-list acl_out extended permit udp any any eq domain
access-list acl_out extended permit tcp any any eq https
access-list acl_out extended permit tcp any any eq ssh
access-list acl_out extended permit udp any any eq dnsix
access-list acl_out extended permit tcp any any eq www
access-list acl_out extended permit tcp any any eq 993
access-list acl_out extended permit tcp any any eq 587
access-list acl_out extended permit tcp any any eq pop3
access-list acl_out extended permit tcp any any eq imap4
access-list acl_out extended permit tcp any interface outside eq imap4
access-list acl_out extended permit tcp any eq 587 interface outside eq 587
access-list acl_out extended permit tcp any interface outside eq https
access-list outside_access_in extended permit tcp any interface outside eq smtp
access-list outside_access_in extended permit tcp any interface outside eq https
access-list outside_access_in extended permit tcp any interface outside eq imap4
access-list outside_access_in extended permit tcp any interface outside eq 993
access-list outside_access_in extended permit tcp any interface outside eq www
access-list outside_access_in extended permit tcp any eq 587 interface outside eq 587
access-list outside_access_in extended permit tcp any interface outside eq 587
access-list outside_access_in extended permit icmp any any traceroute
access-list outside_access_in extended permit icmp any any
access-list outside_access_in extended permit ip bujumbura 255.255.255.0 192.168.25.0 255.255.255.0
access-list outside_3_cryptomap extended permit ip 192.168.3.0 255.255.255.0 192.168.5.0 255.255.255.0
access-list Riverbed_TCP_Option_76 extended permit tcp any any log
access-list Riverbed_TCP_Option_78 extended permit tcp any any log
access-list outside_4_cryptomap extended permit ip 192.168.3.0 255.255.255.0 object-group DM_INLINE_NETWORK_3
access-list inside_access_in extended permit ip any 192.168.25.0 255.255.255.0
access-list inside_access_in extended permit ip 192.168.25.0 255.255.255.0 interface outside
access-list inside_access_in extended permit ip 192.168.3.0 255.255.255.0 any
access-list inside_access_in extended permit ip 192.168.25.0 255.255.255.0 any
access-list outside_2_cryptomap extended permit ip 192.168.3.0 255.255.255.0 192.168.25.0 255.255.255.0
access-list outside_nat0_outbound extended permit ip Nairobi 255.255.255.0 192.168.3.0 255.255.255.0
access-list outside_cryptomap extended permit ip 192.168.3.0 255.255.255.0 192.168.5.0 255.255.255.0
access-list outside_cryptomap_1 extended permit ip 192.168.3.0 255.255.255.0 192.168.5.0 255.255.255.0
access-list outside_5_cryptomap extended permit ip 192.168.3.0 255.255.255.0 AddisAbaba 255.255.255.0
!
tcp-map Riverbed_TCP_Option_76_Tmap
tcp-options range 76 76 allow
!
tcp-map Riverbed_TCP_Option_78_Tmap
tcp-options range 78 78 allow
!
pager lines 24
logging enable
logging asdm informational
mtu inside 1500
mtu outside 1500
mtu voip 1500
ip local pool PTA-Remotelink-pool 192.168.4.1-192.168.4.254 mask 255.255.255.0
ip verify reverse-path interface inside
ip verify reverse-path interface outside
icmp unreachable rate-limit 1 burst-size 1
asdm location Nairobi 255.255.255.0 inside
asdm location bujumbura 255.255.255.0 inside
asdm location Nairobi-Voice 255.255.255.0 inside
asdm location Nairobi-Domain 255.255.255.0 inside
asdm location Nairobi-Riverbed 255.255.255.0 inside
asdm location Nairobi-wireless 255.255.255.0 inside
asdm location Remote-VPN 255.255.255.0 inside
no asdm history enable
arp timeout 14400
global (outside) 1 interface
nat (inside) 0 access-list inside_nat0_outbound
nat (inside) 1 0.0.0.0 0.0.0.0
nat (outside) 0 access-list outside_nat0_outbound outside
nat (voip) 0 access-list outside_nat0_outbound
nat (voip) 1 192.168.3.0 255.255.255.0
nat (voip) 1 0.0.0.0 0.0.0.0
static (inside,voip) tcp interface 3389 192.168.3.1 3389 netmask 255.255.255.255
access-group inside_access_in in interface inside
access-group outside_access_in in interface outside
route outside 0.0.0.0 0.0.0.0 197.155.233.21 1
route voip 0.0.0.0 0.0.0.0 172.16.14.49 2
route voip 172.16.12.0 255.255.255.0 172.16.14.49 1
route voip 192.168.3.6 255.255.255.255 172.16.14.49 1
timeout xlate 3:00:00
timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
timeout tcp-proxy-reassembly 0:01:00
dynamic-access-policy-record DfltAccessPolicy
dynamic-access-policy-record Remotelink-policy
description "PTA Remote link policy"
aaa-server PTA-AD protocol ldap
aaa-server PTA-AD (inside) host 192.168.3.6
timeout 120
ldap-base-dn DC=ptabank,DC=org
ldap-scope subtree
ldap-naming-attribute sAMAccountName
ldap-login-password Pass123
ldap-login-dn CN=firewall,CN=Users,DC=ptabank,DC=org
server-type microsoft
group-search-timeout 120
aaa authentication ssh console LOCAL
http server enable
http 192.168.3.0 255.255.255.0 inside
http Remotelink-ippools 255.255.255.0 outside
snmp-server host outside 192.168.1.116 community TDB version 2c udp-port 161
snmp-server host outside 192.168.1.127 community TDB version 2c udp-port 161
no snmp-server location
no snmp-server contact
snmp-server community TDB
snmp-server enable traps snmp authentication linkup linkdown coldstart
crypto ipsec transform-set ESP-AES-256-MD5 esp-aes-256 esp-md5-hmac
crypto ipsec transform-set ESP-DES-SHA esp-des esp-sha-hmac
crypto ipsec transform-set ESP-DES-MD5 esp-des esp-md5-hmac
crypto ipsec transform-set ESP-AES-192-MD5 esp-aes-192 esp-md5-hmac
crypto ipsec transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac
crypto ipsec transform-set ESP-AES-256-SHA esp-aes-256 esp-sha-hmac
crypto ipsec transform-set ESP-AES-128-SHA esp-aes esp-sha-hmac
crypto ipsec transform-set ESP-AES-192-SHA esp-aes-192 esp-sha-hmac
crypto ipsec transform-set ESP-AES-128-MD5 esp-aes esp-md5-hmac
crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
crypto ipsec security-association lifetime seconds 28800
crypto ipsec security-association lifetime kilobytes 4608000
crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set pfs group1
crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set transform-set ESP-AES-128-SHA ESP-AES-128-MD5 ESP-AES-192-SHA ESP-AES-192-MD5 ESP-AES-256-SHA ESP-AES-256-MD5 ESP-3DES-SHA ESP-3DES-MD5 ESP-DES-SHA ESP-DES-MD5
crypto map outside_map 1 match address outside_1_cryptomap
crypto map outside_map 1 set pfs
crypto map outside_map 1 set peer 197.157.194.210
crypto map outside_map 1 set transform-set ESP-3DES-SHA
crypto map outside_map 2 match address outside_2_cryptomap
crypto map outside_map 2 set pfs
crypto map outside_map 2 set peer 197.157.194.211
crypto map outside_map 2 set transform-set ESP-3DES-SHA
crypto map outside_map 3 match address outside_3_cryptomap
crypto map outside_map 3 set pfs group1
crypto map outside_map 3 set peer 197.227.52.50
crypto map outside_map 3 set transform-set ESP-3DES-SHA
crypto map outside_map 4 match address outside_4_cryptomap
crypto map outside_map 4 set pfs group1
crypto map outside_map 4 set peer 41.72.200.130 41.206.37.50
crypto map outside_map 4 set transform-set ESP-3DES-SHA
crypto map outside_map 4 set security-association lifetime seconds 120
crypto map outside_map 5 match address outside_cryptomap
crypto map outside_map 5 set pfs group1
crypto map outside_map 5 set peer 197.227.52.50
crypto map outside_map 5 set transform-set ESP-3DES-SHA
crypto map outside_map 5 set nat-t-disable
crypto map outside_map 6 match address outside_cryptomap_1
crypto map outside_map 6 set pfs group1
crypto map outside_map 6 set peer 197.227.52.50
crypto map outside_map 6 set transform-set ESP-3DES-SHA
crypto map outside_map 7 match address outside_5_cryptomap
crypto map outside_map 7 set pfs group1
crypto map outside_map 7 set peer 196.188.93.34
crypto map outside_map 7 set transform-set ESP-3DES-SHA
crypto map outside_map 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAP
crypto map outside_map interface outside
crypto isakmp enable outside
crypto isakmp policy 5
authentication pre-share
encryption 3des
hash sha
group 2
lifetime 86400
telnet timeout 5
ssh 192.168.3.0 255.255.255.0 inside
ssh Nairobi 255.255.255.0 inside
ssh 192.168.1.210 255.255.255.255 inside
ssh 41.206.37.50 255.255.255.255 outside
ssh Nairobi 255.255.255.0 outside
ssh Remotelink-ippools 255.255.255.0 outside
ssh 192.168.1.210 255.255.255.255 outside
ssh timeout 15
console timeout 0
dhcpd dns 4.8.8.8 4.2.2.2
dhcpd lease 4800
dhcpd auto_config outside
!
dhcpd address 192.168.3.40-192.168.3.254 inside
dhcpd dns 192.168.1.29 8.8.8.8 interface inside
dhcpd domain ptabank.org interface inside
dhcpd auto_config outside interface inside
dhcpd enable inside
!

threat-detection basic-threat
threat-detection statistics host
threat-detection statistics access-list
no threat-detection statistics tcp-intercept
webvpn
group-policy ptaremotelink internal
group-policy ptaremotelink attributes
dns-server value 192.168.3.6 4.2.2.2
vpn-tunnel-protocol IPSec
default-domain value ptabank.org
username admin password ulJ/dXY6FUsXkFX0 encrypted privilege 15
tunnel-group 41.206.37.50 type ipsec-l2l
tunnel-group 41.206.37.50 ipsec-attributes
pre-shared-key NairobiHarare
tunnel-group 197.157.194.210 type ipsec-l2l
tunnel-group 197.157.194.210 ipsec-attributes
pre-shared-key hararebujumbura
tunnel-group ptaremotelink type remote-access
tunnel-group ptaremotelink general-attributes
address-pool PTA-Remotelink-pool
authentication-server-group PTA-AD
default-group-policy ptaremotelink
tunnel-group ptaremotelink ipsec-attributes
pre-shared-key ptaremotelink
tunnel-group 41.76.46.18 type ipsec-l2l
tunnel-group 41.76.46.18 ipsec-attributes
pre-shared-key HarareMauritius
tunnel-group 41.72.200.130 type ipsec-l2l
tunnel-group 41.72.200.130 ipsec-attributes
pre-shared-key NairobiHarare
tunnel-group 197.157.194.211 type ipsec-l2l
tunnel-group 197.157.194.211 ipsec-attributes
pre-shared-key bujumburaDR
tunnel-group 197.227.52.50 type ipsec-l2l
tunnel-group 197.227.52.50 ipsec-attributes
pre-shared-key HarareMauritius
tunnel-group 196.188.93.34 type ipsec-l2l
tunnel-group 196.188.93.34 ipsec-attributes
pre-shared-key AddisHarare
!
class-map Riverbed_TCP_Option_76_Cmap
match access-list Riverbed_TCP_Option_76
class-map inspection_default
match default-inspection-traffic
class-map Riverbed_TCP_Option_78_Cmap
match access-list Riverbed_TCP_Option_78
!
!
policy-map type inspect dns preset_dns_map
parameters
message-length maximum client auto
message-length maximum 512
policy-map global_policy
class inspection_default
inspect dns preset_dns_map
inspect ftp
inspect h323 h225
inspect h323 ras
inspect rsh
inspect rtsp
inspect sqlnet
inspect skinny
inspect xdmcp
inspect sip
inspect netbios
inspect ip-options
inspect icmp
class Riverbed_TCP_Option_76_Cmap
set connection advanced-options Riverbed_TCP_Option_76_Tmap
class Riverbed_TCP_Option_78_Cmap
set connection advanced-options Riverbed_TCP_Option_78_Tmap
!
service-policy global_policy global
prompt hostname context
call-home
profile CiscoTAC-1
no active
destination address http https://tools.cisco.com/its/service/oddce/services/DDCEService
destination address email callhome@cisco.com
destination transport-method http
subscribe-to-alert-group diagnostic
subscribe-to-alert-group environment
subscribe-to-alert-group inventory periodic monthly
subscribe-to-alert-group configuration periodic monthly
subscribe-to-alert-group telemetry periodic daily
Cryptochecksum:bf86213df8e3e23be78dfcd5eea74578
: end

Review Cisco Networking for a $25 gift card