Link to home
Start Free TrialLog in
Avatar of whankel
whankel

asked on

How can I allow access through our router for outlook for the web?

After our router (firewall) hardware went down, we are no longer able to access web outlook from outside our newly configured router.  What did we miss?  Web outlook works within the firewall but not outside.
ASKER CERTIFIED SOLUTION
Avatar of nodisco
nodisco
Flag of New Zealand 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
Avatar of rshooper76
rshooper76

You might also need to create a static NAT, or a route depending on your situation.
Is it cisco router? If yes, then:

Assume you have external address X.X.X.X on your router and your MAIL server has M.M.M.M address.
Add these lines to your router config:

ip nat inside source static tcp M.M.M.M 80 X.X.X.X 80
ip nat inside source static tcp M.M.M.M 443 X.X.X.X 443

Check addresses and ports.

Regards.