cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
661
Views
0
Helpful
1
Replies

UC560 and SBS2003 webmail and remote workplace functionality stopped

Todd Boley
Level 1
Level 1

Hello,

I have recently installed  a UC560 in a simple SBS environment and when my users go to http://webmail.theirdomain.com or remote.theirdomain.com it brings them to the SSL VPN login page.  How do I change it so they get to their webmail or remote workplace sign on page again? The network goes:

ISP->UC560->ESW540 splits phones(spa525) and data.  One site to site vpn but no SSL VPN sign ons needed.  I do not want to change the default port settings on the SBS for webmail etc. as we were sold on the idea that the UC integrates seamlessly into a SBS environment.

Thanks in advance

1 Reply 1

Brandon Buffin
VIP Alumni
VIP Alumni

If you're familiar with CLI, you will basically need a static NAT and an ACL to allow the traffic such as:

1.1.1.1 = Inside IP address

2.2.2.2 = Outside IP address

ip nat inside source static tcp 1.1.1.1 80 2.2.2.2 80

access-list 104 permit tcp any host 2.2.2.2 eq 80

interface FastEthernet0/0
ip access-group 104 in

Obviously, the above configuration is not exhaustive, but these are the basics you need to make this work.

I'm fairly certain you can do the same thing using CCA. I believe it's under Configure > Security > NAT. Take a look at the administrator's guide here:

http://www.cisco.com/en/US/docs/net_mgmt/cisco_configuration_assistant/version3_0/administration_guide/cca_30_sbcs_admin_guide.pdf

Hope this helps.

Brandon