Hi there Experts-
I am trying to set up a PIX to PIX VPN that limits access accross the VPN while still allowing remote Cisco VPN clients to access the network behind the Pix that they accessed. This is part of a hub and spoke configuration, which i can get working by ip, but I am intersted in limiting it to ports for three specific servers at the hub to and from the spoke networks...
Right now I have set up
Network Diagram:-
Hub Pix(10.1.1.229)---------In
ternet----
------(10.
1.1.230)Sp
oke Pix
| |
172.16.1.34 Internal Network
172.16.1.195 (172.16.21.0/24)
172.16.1.199
Here is what I am interested in setting up...
in this case 172.16.1.0/24 is the hub and 172.16.21.0/24 is the spoke
hub to spoke:
172.16.1.195 -> 172.16.21.0/24 tcp port 22
172.16.1.199 -> 172.16.21.0/24 any port
spoke to hub:
172.16.21.0/24 -> 172.16.1.34 tcp port 25
172.16.21.0/24 -> 172.16.1.199 udp port 514
I have been instructed by Cisco TAC to install the ACLs on the outside interface like so:
Access List for Hub Pix
access-list 111 permit udp 172.16.21.0 255.255.255.0 host 172.16.1.199 eq 514
access-list 111 permit tcp 172.16.21.0 255.255.255.0 host 172.16.1.34 eq 25
access-list 111 permit tcp 172.16.21.0 255.255.255.0 host 172.16.1.195
Access List for Spoke Pix
access-list 222 permit tcp host 172.16.1.195 172.16.21.0 255.255.255.0 eq 22
access-list 222 permit tcp host 172.16.1.199 172.16.21.0 255.255.255.0
access-list 222 permit tcp host 172.16.1.34 172.16.21.0 255.255.255.0 eq 25
I would like some help understanding some of the hows and whys for this config:
- why I should put these ACLs on the outside interface and not the inside.
- what is the point of these ACLs:
access-list 111 permit tcp 172.16.21.0 255.255.255.0 host 172.16.1.195
I only want device 172.16.1.195 to be able to ssh to 172.16.21.0/24
and
access-list 222 permit tcp host 172.16.1.34 172.16.21.0 255.255.255.0 eq 25
I only want 172.16.21.0/24 to be able to send mail to 172.16.1.34
-Also when I impliment this config my syslog server reports errors from the hub pix that it is blocking the UDP 514 traffic from the spoke pix:
%PIX-2-106006: Deny inbound UDP from 172.16.21.1/514 to 172.16.1.199/514 on interface outside
Thoughts?
Thanks in advance,
-t
Start Free Trial