I've got two internet accessible /24 subnets, lets say 11.22.33.0/24 and 44.55.66.0/24 which I want to pass to servers using a private 10.0.0.0/24 subnet behind a PIX 506E
e.g. requests to 11.22.33.99 and 44.55.66.99 either both get sent to 10.0.0.99 or one gets sent to 10.0.0.99 and the other to 10.0.0.98 (don't need to use all 254 IPs internally, can reconfigure as 10.0.0.0/23 in future if that changes).
The 11.22.33.99/24 subnet is already configured and working, but I can't get the PIX to do anything with the 44.55.66.99/24 addresses.
Configuration is as follows.
INTERFACES
- name / ip / vlan / hardware
- inside 10.0.0.4/24 native eth1
- outside 11.22.33.4/24 native eth0
- outside2 44.55.66.4/24 vlan1 eth0
TRANSLATION RULES
- inside 10.0.0.99/32 > static 11.22.33.99/32
- inside 10.0.0.99/32 > static 44.55.66.99/32
STATIC ROUTE
- outside 0.0.0.0/0 11.22.33.1
Access rules allow all ip and icmp traffic on 44.55.66.0/24 (will lock those down later)
Any suggestions for where I should be looking, or further information I need to provide? Thanks.