somebigguy
Programmer
Hi everyone, I have a problem with what should be a simple Pix config.
I have an internal subnet in the range of 10.62.0.0/16 behind a Pix which has one valid external IP address assigned, let's say 99.99.99.1.
I need a mail server with an IP address of 10.62.1.1 on the internal subnet to accept Internet email through the pix.
The related PIX commands are as follows:
With this configuration, the mail server can browse the Internet, but I cannot get any incoming email. The hit count on the Access-list remains at zero. I have no other external IP addresses I can use. Most of the examples I've seen include using secondary natted IP addresses for this purpose.
TIA.
I have an internal subnet in the range of 10.62.0.0/16 behind a Pix which has one valid external IP address assigned, let's say 99.99.99.1.
I need a mail server with an IP address of 10.62.1.1 on the internal subnet to accept Internet email through the pix.
The related PIX commands are as follows:
Code:
ip address outside 99.99.99.1 255.255.255.0
ip address inside 10.62.1.2 255.255.0.0
global (outside) 1 interface
nat (inside) 1 0.0.0.0 0.0.0.0 0 0
static (inside,outside) tcp interface smtp 10.62.1.1 smtp netmask 255.255.255.255 0 0
access-list inbound permit tcp any interface outside eq smtp
access-group inbound in interface outside
With this configuration, the mail server can browse the Internet, but I cannot get any incoming email. The hit count on the Access-list remains at zero. I have no other external IP addresses I can use. Most of the examples I've seen include using secondary natted IP addresses for this purpose.
TIA.