Link to home
Start Free TrialLog in
Avatar of dat5904
dat5904

asked on

After upgrading ios from 6.3 to 7.0 i am not able to receive email on exchange from outside

Recetly i have upgraded my cisco PIX ios to 7.0 but i got one problem now i can't receive any email on exchnage server from outside . Please help me it's urgent
Avatar of stuknhawaii
stuknhawaii
Flag of United States of America image

CHeck to make sure you still have a rule allowing SMTP inbound. Also check for your static NAT statement (if you were using one). If you post a sanitized config I can take a look at it.
Avatar of dat5904
dat5904

ASKER

This is access list and NAT config and my mail server IP address is 192.168.1.5


access-list 101 extended permit ip 192.168.1.0 255.255.255.0 192.168.100.0 255.2
55.255.0
access-list outside_access_in extended deny ip any any
access-list 80 extended permit ip any 192.168.1.0 255.255.255.0
access-list smtp extended permit tcp any host 201.201.201.201 eq smtp
access-list smtp_in extended permit tcp any host MailServer2 eq smtp

nat-control
global (outside) 1 interface
nat (inside) 0 access-list 101
nat (inside) 1 0.0.0.0 0.0.0.0
static (inside,outside) tcp 201.201.201.201 smtp MailServer2 smtp netmask 255.255
.255.255
access-group smtp in interface outside
ASKER CERTIFIED SOLUTION
Avatar of stuknhawaii
stuknhawaii
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Is esmtp inspection disabled? If not try disabling it.

Yet having the problem, then post the config.

Cheers,
Rajesh
Avatar of dat5904

ASKER

Now problem is solved one of the my freind suggest me solution

Could you please issue the following commands:
  no static (inside,outside) tcp <public_ip> smtp MailServer2 smtp
 netmask 255.255.255.255
  static (inside,outside) tcp interface smtp MailServer2 smtp netmask
 255.255.255.255

If you're using the interface IP address on static NAT entry, you're
 required to use the "interface" keyword instead of the IP address (as you
 can see in the command reference:
http://www.cisco.com/en/US/docs/security/asa/asa70/command/reference/s.html#wp1540284)
"Note You must use the interface keyword instead of specifying the
 actual IP address when you want to include the IP address of an interface
 in a static PAT entry."
:-) that is the reason I asked to post the config. Not just there, you need to make changes to the acl as well;

Your acl should read as below;

access-list smtp_in extended permit tcp any host interface outside eq smtp


Cheers,
Rajesh