I have a webserver in a DMZ on a PIX. Here is the config from the PIX for the webserver;
access-list dmz2-out deny ip any 192.168.1.0 255.255.255.0
access-list inside-out permit tcp 192.168.1.0 255.255.255.0 host 192.168.11.200 eq www
access-list inside-out permit ip any any
static (dmz2,outside) xx.xx.xx.xx 192.168.11.200 netmask 255.255.255.255 0 0
access-group dmz2-out in interface dmz2
access-group inside-out in interface inside
192.168.1.0 is the main office. I have another office 192.168.2.0 that I want to be able to access this webserver. The two sites are connected via 2 T1's. If I add the following to the PIX config, 192.168.2.0 cannot access the webserver;
access-list dmz2-out deny ip any 192.168.2.0 255.255.255.0
access-list inside-out permit tcp 192.168.2.0 255.255.255.0 host 192.168.11.200 eq www
What am I missing? Thanks in advance for any assistance.