01-05-2017 11:29 PM - edited 03-08-2019 08:49 AM
Hi,
Here is my problem :
I can send emails with exchange but I do not receive any mail and I do not have access to owa from the outside ..
Do you have any idea of the problem?
01-05-2017 11:53 PM
is this the static NAT? Are you getting emails from outside on port 587?
ip nat inside source static tcp 192.168.0.205 25 217.11.45.106 587
01-06-2017 12:06 AM
01-06-2017 12:20 AM
Hi,
I would first suggest to take capture or test acl on outside interface in ingress direction on port 587 with log keyword and see if the traffic is coming. The NAT will only work if smtp traffic coming from outside is in dst port 587.
Tx
01-06-2017 01:09 AM
Hello
To add to Pranay comments
ip nat inside source static tcp 192.168.0.205 25 217.11.45.106 587 extendable
ip access-list extended DATA
permit icmp 192.168.0.0 0.0.0.255 any
permit tcp 192.168.0.0 0.0.0.255 any eq www 443 587 smtp 9233 389 443 587 1434 <---- Should be above
ip access-list extended LAN
permit icmp any any
permit tcp 192.168.0.0 0.0.0.255 192.168.20.0 0.0.0.255 eq www 443 587 smtp 9233 389 443 587 1434 <---- Should be above
route-map PBR permit 10
match ip address DATA
set ip next-hop 217.11.45.105 <---- what is this?
You have PBR going to 217.11.45.105 but your inside gloabl nat is 217.11.45.106, and these access-lists are the wrong way around, the more specific ACEs needs to be higher up in the stanza
First of all try amending your acl
ip access-list extended DATA
no 10
30 permit icmp 192.168.0.0 0.0.0.255 any
exit
ip access-list extended LAN
no 10
30 permit icmp any any
exit
ip access-list resequence DATA 10 10
ip access-list resequence LAN 10 10
res
Paul
01-06-2017 01:35 AM
01-06-2017 01:36 AM
01-06-2017 05:55 AM
Hello
You have a next-hop address of 217.11.45.106 however in you PBR stanza next hop is stating 217.11.45.105
route-map PBR permit 10
match ip address DATA
set ip next-hop 217.11.45.105 <---- what is this?
res
paul
01-06-2017 06:03 AM
The 105 is the ip address of the modem and the 106 is that of the router
01-06-2017 08:27 AM
Hello
so your next hop is .106 -
can you please try changing the route-map next hop statement to .106
res
paul
01-06-2017 09:32 AM
Hello
Thank you for your response.
I also have to change that of the default route? ip route 0.0.0.0 0.0.0.0 217.11.40.105 to ip route 0.0.0.0 0.0.0.0 217.11.40.106 ?
01-06-2017 09:53 AM
Hello
please revert those changes - I have just noticed your attched file of router3
it shows two outside interfaces with one dhcp enabled and two default static with no preference between them
once you have reverted those changes can you do your this:
No ip route 0.0.0.0 0.0.0.0 192.1681.1
ip route 0,0,0,0 0.0.0.0 dhcp
then can you confirm which default if any should be the preferred path
res
paul
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide