Advertisement

07.11.2005 at 06:30AM PDT, ID: 21487038
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.8

Configuring PIX-to-PIX-to-PIX IPSec (Hub and Spoke)

Asked by decoleur in Network Software Firewalls, Enterprise Firewalls, Cisco PIX Firewall

Tags: , , ,

I am trying to set up a PIX Hub and Spoke configuration as shown in the cisco document of the same name at: http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_configuration_example09186a0080093bd3.shtml

I have configured three pixes so far and added an access list to allow pinging using:
access-list ping_acl permit icmp any any
access-group ping_acl in interface inside

Pix Central was configured like this:

ip address outside 10.10.10.177 255.255.255.224
ip address inside 172.16.25.1 255.255.255.0
dhcpd address 172.16.25.129-172.16.25.142 inside
hostname pix-central
route outside 0.0.0.0 0.0.0.0 10.10.10.225 1
access-list ping_acl permit icmp any any
access-group ping_acl in interface inside
isakmp enable outside
isakmp identity address
isakmp policy 5 authentication pre-share
isakmp policy 5 encryption aes-256
isakmp policy 5 hash md5
isakmp policy 5 group 1
isakmp policy 5 lifetime 1000
isakmp key pix1 address 10.10.10.169 netmask 255.255.255.255 no-xauth no-config-mode
isakmp key pix2 address 10.10.10.193 netmask 255.255.255.255 no-xauth no-config-mode
!--- Do not do Network Address Translation (NAT) on traffic to other PIXes.
access-list 100 permit ip 172.16.10.0 255.255.255.0 172.16.20.0 255.255.255.0
access-list 100 permit ip 172.16.10.0 255.255.255.0 172.16.25.0 255.255.255.0
!--- This is traffic to PIX 2.
access-list 120 permit ip 172.16.10.0 255.255.255.0 172.16.20.0 255.255.255.0
!--- This is traffic to PIX 3.
access-list 125 permit ip 172.16.10.0 255.255.255.0 172.16.25.0 255.255.255.0
crypto ipsec transform-set myset esp-3des esp-md5-hmac
!--- This is traffic to pix1.
crypto map hub-spoke 20 ipsec-isakmp
crypto map hub-spoke 20 match address 120
crypto map hub-spoke 20 set peer 10.10.10.193
crypto map hub-spoke 20 set transform-set myset
!--- This is traffic to pix2.
crypto map hub-spoke 25 ipsec-isakmp
crypto map hub-spoke 25 match address 125
crypto map hub-spoke 25 set peer 10.10.10.169
crypto map hub-spoke 25 set transform-set myset
crypto map hub-spoke interface outside
!--- Do not do NAT on traffic to other PIXes.
nat (inside) 0 access-list 100
sysopt connection permit-ipsec

Pix1 was configured like this:
ip address outside 10.10.10.169 255.255.255.224
ip address inside 172.16.25.1 255.255.255.0
dhcpd address 172.16.25.129-172.16.25.142 inside
hostname pix1
route outside 0.0.0.0 0.0.0.0 10.10.10.225 1
access-list ping_acl permit icmp any any
access-group ping_acl in interface inside
isakmp enable outside
isakmp policy 10 authentication pre-share
isakmp policy 10 encryption aes-256
isakmp policy 10 hash md5
isakmp policy 10 group 1
isakmp policy 10 lifetime 1000
isakmp key pix1 address 10.10.10.177 netmask 255.255.255.255
access-list 100 permit ip 172.16.25.0 255.255.255.0 172.16.10.0 255.255.255.0
access-list 110 permit ip 172.16.25.0 255.255.255.0 172.16.10.0 255.255.255.0
crypto ipsec transform-set myset esp-3des esp-md5-hmac
crypto map hub-spoke 1 ipsec-isakmp
crypto map hub-spoke 1 match address 110
crypto map hub-spoke 1 set peer 10.10.10.177
crypto map hub-spoke 1 set transform-set myset
crypto map hub-spoke interface outside
nat (inside) 0 access-list 100
sysopt connection permit-ipsec


Pix2 was configured like this:
ip address outside 10.10.10.193 255.255.255.224
ip address inside 172.16.20.1 255.255.255.0
dhcpd address 172.16.20.129-172.16.20.142 inside
hostname pix2
route outside 0.0.0.0 0.0.0.0 10.10.10.225 1
access-list ping_acl permit icmp any any
access-group ping_acl in interface inside
isakmp enable outside
isakmp identity address
isakmp policy 10 authentication pre-share
isakmp policy 10 encryption aes-256
isakmp policy 10 hash md5
isakmp policy 10 group 1
isakmp policy 10 lifetime 1000
isakmp key pix2 address 10.10.10.177 netmask 255.255.255.255 no-xauth no-config-mode
access-list 100 permit ip 172.16.20.0 255.255.255.0 172.16.10.0 255.255.255.0
access-list 110 permit ip 172.16.20.0 255.255.255.0 172.16.10.0 255.255.255.0
crypto ipsec transform-set myset esp-3des esp-md5-hmac
crypto map hub-spoke 1 ipsec-isakmp
crypto map hub-spoke 1 match address 110
crypto map hub-spoke 1 set peer 10.10.10.177
crypto map hub-spoke 1 set transform-set myset
crypto map hub-spoke interface outside
nat (inside) 0 access-list 100
sysopt connection permit-ipsec


from behind Pix central I can ping devices behind either pix1 or pix2 but I am unable to ssh into the servers or access their web pages.

I see no activity on the hitcounts for any of the access lists when I do anything other than ping from a device with the IP address 172.16.10.199 to a device behind Pix1 or Pix2

I want to limit access to one of two IP addresses 172.16.10.194 and 172.16.10.199 from behind Pix Central to have the free run of the devices behind the other pix. Eventually I want to add client to Pix configurations to each of these Pix, but I would like to get this restricted Hub and Spoke configuration working first.

Any thoughts of what to do to troubleshoot this config would be appreciated.

-t
Start Free Trial
 
Loading Advertisement...
 
[+][-]07.11.2005 at 11:12AM PDT, ID: 14414681

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.11.2005 at 12:06PM PDT, ID: 14415166

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.11.2005 at 12:26PM PDT, ID: 14415363

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Network Software Firewalls, Enterprise Firewalls, Cisco PIX Firewall
Tags: hub, ipsec, pix, spoke
Sign Up Now!
Solution Provided By: grblades
Participating Experts: 1
Solution Grade: A
 
 
[+][-]07.11.2005 at 12:30PM PDT, ID: 14415412

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.11.2005 at 12:45PM PDT, ID: 14415533

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.11.2005 at 12:50PM PDT, ID: 14415565

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.11.2005 at 12:50PM PDT, ID: 14415570

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.11.2005 at 01:19PM PDT, ID: 14415805

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.11.2005 at 01:28PM PDT, ID: 14415892

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.11.2005 at 01:33PM PDT, ID: 14415941

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.11.2005 at 02:05PM PDT, ID: 14416191

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.12.2005 at 12:48AM PDT, ID: 14419227

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.12.2005 at 03:16AM PDT, ID: 14419985

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32