Welcome to MSDN Blogs Sign in | Join | Help

What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi folks, this is Troy Starr again from the Windows SharePoint Services Test team. Today I'd like to talk about one of the most powerful, but often one of the least understood, features in Windows SharePoint Services 3.0 and Microsoft Office SharePoint Server 2007. That feature is called Alternate Access Mappings. Around here, we just call it "AAM" for short.

At the most basic level, AAM tells SharePoint how to map web requests (for example, browsing to the homepage of a SharePoint site) to the correct web application and site so that SharePoint can serve the correct content back to you. It then tells SharePoint what URL the users should be taken to as they interact with SharePoint.

Seems simple enough, doesn’t it? Those of you who are familiar with developing web applications in Internet Information Services may be wondering right now why we need such a feature since IIS can tell you what the URL of an incoming web request is. The major reason we need this is that there are common Internet deployment scenarios where the URL of a web request received by IIS is not the same URL that the end user entered. These are most common in reverse proxy publishing and load balancing scenarios.

How is this possible? Let's consider a reverse proxy scenario. A reverse proxy is a device that sits between end users and your web server. All requests to your web server are first received by the reverse proxy device, and if those requests pass the proxy's security filtering, the proxy will forward the requests on to your web server. Reverse proxies can perform advanced functionality such as receiving a web request over the Internet via SSL (HTTPS), but forward the request to the your server via HTTP. This is referred to as off-box SSL termination. They can also forward the request to a different port number than it was originally received on and can even change the HTTP Host header field. If SharePoint were base its links off of the URL of the request it received, the links that end users click on could be the incorrect "internal" URL rather than the correct "public" URL.

SharePoint is compatible with a variety of reverse proxy servers, but for this example we'll take a look at a publishing rule from Microsoft's reverse proxy software - Internet Security and Acceleration Server 2006. ISA Server 2006 includes a SharePoint publishing wizard that walks you through creating a publishing rule for SharePoint. Once the rule is created, you can modify it at any time. (The following images show a slightly modified publishing rule where the "Forward the original host header" option is turned off to help demonstrate the flexibility of AAM. If we left the "Forward the original host header" option turned on, the public hostname would also serve as the internal hostname when configuring AAM.) The first two dialogs show the "listener" and "public name" properties of the rule, which define what URL users will use to access your SharePoint site. Remember that this URL is really the URL of your reverse proxy server, which will forward the request to your SharePoint server.
listener highlighted.PNGpublic name highlighted.png

The end user's URL is comprised of the public protocol, the public hostname, and the public port number.

Public Protocol

+

"://"

+

Public Hostname

+

":"

+

Public Port Number

=

Public URL

HTTPS

www.contoso.com

443

https://www.contoso.com

The next two dialogs show the "to" and "bridging" properties of the rule, which define what URL the reverse proxy server will use to forward the request to your SharePoint server.

bridging highlighted.pngto highlighted.png

The SharePoint server's URL is comprised of the internal protocol, the internal hostname, and the internal port number.

Internal Protocol

+

"://"

+

Internal Hostname

+

":"

+

Internal Port Number

=

Internal URL

HTTP

sharepoint.dmz.contoso.com

80

http://sharepoint.dmz.contoso.com

extend web application highlighted.png

Great - we've properly set up this reverse proxy server to receive web requests from end users at https://www.contoso.com and forward them to your SharePoint server at http://sharepoint.dmz.contoso.com. We're halfway there! The next step is to configure your SharePoint web application and AAM to match the publishing rule above. To do this, we'll extend an existing web application to an additional IIS Web site just for your reverse proxy's publishing rule. Note that you're also able to create a new web application from scratch for this publishing rule - the fields you'll need to fill out are the same in either case.

Browse to your WSS 3.0 Central Administration site and click on the Application Management tab. Next, click "Create or extend Web application" and then click "Extend an existing Web application." Select the web application that you wish to use, and then fill out the port, host header, and SSL fields based on the internal URL properties that we defined above. In the URL field, enter the public URL that we defined above. Finally, you'll want to select an AAM Zone to assign this extension of your web application to. There are a maximum of 5 zones available in each web application. We'll use the Internet zone in this example, but you're free to use any available zone. All of the zones provide the same functionality, although the Default zone will always be used for certain features such as sending administrative e-mail messages to site collection owners. When you're finished, click OK to create the IIS Web site.

Next, you'll want to verify that your public URL was created correctly in AAM and then add your internal URL. Unless your internal URL is the same as your public URL, this is an extra step that you must perform manually. To do this, browse to your WSS 3.0 Central Administration site and click on the Operations tab. Next, click "Alternate access mappings." Click the Alternate Access Mappings selector drop-down and select the web application that you're publishing through your reverse proxy server. You should now see the AAM URLs assigned to your web application.

AAM before.png

As you can see, the public URL from the reverse proxy publishing rule has been assigned to your web application's Internet zone. The final touch is to add the internal URL from the reverse proxy publishing rule to your web application's Internet zone. To do this, click "Add Internal URLs" in the AAM toolbar, type in the internal URL, and select the same zone that you used for the public URL. In this case, that was the Internet zone. When you're finished, click Save. You should now see the additional URL is assigned to your web application, in the same zone as the public URL of your reverse proxy publishing rule.

AAM after.png

All done! Now, when a user browses to https://www.contoso.com, the web request will be received by the proxy server and forwarded to http://sharepoint.dmz.contoso.com. SharePoint will then receive the web request, see that the URL of the request is http://sharepoint.dmz.contoso.com, find that this URL is assigned to the Contoso web application, and return the content from that web application. In addition, because the http://sharepoint.dmz.contoso.com URL is assigned to the Internet zone, SharePoint will also generate links on the pages using the public URL for that zone - https://www.contoso.com. This ensures that end users are taken to the proper URL when clicking on links on the page.

Load balancers work similarly, especially if they overwrite the end user's original URL with the URL of the individual web server that the request is being load balanced to. To address this, just add each individual web server's URL to AAM as an internal URL and associate them all to the same zone as end user's public URL.

I hope that this introduction to Alternate Access Mappings was helpful to you. Please feel free to post comments to this blog entry with any questions you may have about AAM. I will be posting another blog entry soon covering common AAM mistakes and how to avoid them.

 

Troy Starr

Published Tuesday, March 06, 2007 5:19 PM by sptblog

Comment Notification

If you would like to receive an email when updates are made to this post, please register here

Subscribe to this post's comments using RSS

Comments

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi Troy i have been waiting for this article for the last 6 months ! Great ! Be aware to ensure that the ISA Server passes through the host header from the client.  We recently had situation where a check box had not been checked on the ISA Server and the host header that was being passed by the ISA Server was in fact the internal IP address of the MOSS Server ! - Network Monitor to the rescue to diagnose the problem.

Nigel  

Tuesday, March 06, 2007 5:59 PM by Nigel

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Great post, thanks Troy

Regards,

Luis Du Solier G.

http://www.sharepointblogs.com/ldusolier

Tuesday, March 06, 2007 8:53 PM by Luis Du Solier G

# What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Wednesday, March 07, 2007 4:29 AM by harbar.net

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Nice post.. I have been experimenting with AAM for few other scenarios with little success

If I have an existing site say http://abcd.mydomain.com  in *scalable hosting mode*, Can AAM be of any help in acheiving the following?

Effectively rename http://abcd.mydomain.com to http://<someothername>.mydomain.com  after which i should be able to use http://abcd.mydomain.com for some other site?

Also, can AAM be used for the following?

I have a sitecollection at http://abcd.mydomain.com/site/

Can I access http://abcd.mydomain.com/site/default.aspx as http://<somename>.mydomain.com/default.aspx?

Please let me know

Rajesh CKR

Wednesday, March 07, 2007 6:18 PM by Rajesh

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi Rajesh -

Ah, good question about host-named site collections (what we used to call "scalable hosting mode" in WSS v2).  Host-named site collections short circuit much of the AAM functionality, including the URL remapping functionality.  They're always considered to be in the Default zone, and their URL is always the same URL you supplied when creating the site collection.  You cannot use host-named site collections with off-box SSL termination, port translation, or host header manipulation scenarios.

So no, you won't be able to use it to rename host-named site collection URLs.  However, you can take a site collection backup of your host-named site collection using the stsadm.exe -o backup command.  Then you can delete the original site collection and restore that backup to a new URL using the stsadm.exe -o restore command.  Be sure to include the -hhurl parameter to restore it as a host-named site collection.

For your second question, no, I'm afraid SharePoint doesn't support asymmetrical paths, so AAM cannot be used to perform path translation.  The path (i.e. "/site/default.aspx") must be the same from the end user's point of view and the SharePoint server's point of view.

If anyone is interested in learning more about SharePoint's host-named site collection feature, you might want to take a look at this blog post: http://weblogs.asp.net/hosterposter/archive/2007/01/31/sharepoint-for-shared-hosting.aspx.  It contains a link to a very helpful whitepaper for web hosters.  We'll also be publishing more information about this feature on TechNet in the coming weeks.

- Troy Starr

Wednesday, March 07, 2007 8:54 PM by Troy Starr [MSFT]

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Great Post Troy.

You set of the host header of the extended site to be the interal host name. Why is this not enought for sharepoint to workout that it should map requests to http://sharepoint.dmz.contso.com to that web application. Put it another way, why is the manual AAM required. So if I missed something.

Sunday, March 11, 2007 4:57 AM by Mark

# Alternate Access Mappings

With the new capabilities to support SSL termination provided since SP 2 of 2003/WSS 2.0 and out of the

Sunday, March 11, 2007 12:53 PM by Johnwe's SharePoint WebLog

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi Mark -

This would indeed be enough information for SharePoint to automatically add an internal URL, but we didn't end up taking it that far.  It's a little tricky to say we'll add an internal URL if you specify a host header, but not if you don't.  And to support IP-bound IIS Web sites, we require you to enter a temporary host header in that field and then remove it later.  Automatically adding it to AAM would mean you'd need to manually remove it as well.

Still, we'd like to hear your feedback for the next version of SharePoint.  Should we automatically add the internal URL if you fill out the host header field?  Let us know what you think!

- Troy Starr

Monday, March 12, 2007 10:34 PM by Troy Starr [MSFT]

# Alternate Access Mapping (AAM) With SharePoint

I was going to write a small article about alternate access mapping within SharePoint, but it was never

Thursday, March 15, 2007 8:43 PM by TheKid.me.uk

# What every SharePoint administrator needs to know about Alternate Access Mappings (Part 2 of 3)

In Part 1 of my blog series on Alternate Access Mappings, I gave a brief introduction to the feature

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi

  nice post buddy, well i have problem in AAM.like i have created a portal with the <sysname>:<portnum> now i want to change the name of that portal to <somename.net> is it possible to do like this.

Tuesday, April 03, 2007 1:05 PM by sarav

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi Sarav -

If all you need to do is change the URL that users browse to, without changing the IIS bindings (protocol binding, host header binding, or port number binding), then you can just go into AAM and modify the URL into a new URL.  However, if the IIS bindings need to be updated, then it is best to remove the web application from that zone and then re-extend the web application to that zone using the new URL and bindings.

- Troy Starr

Sunday, April 08, 2007 3:32 PM by Troy Starr [MSFT]

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi Troy,

Excellent article, but I do still have a question regarding this alternate access mappings.

Let's say you want to create an external URL that looks like this "http://www.troyrocks.com" and this internet address needs to point to your sharepoint site but you don't want users to see the sharepoint junk in the url that internal users can see("http://internal.troyrocks.com/pages/").  I guess what I'm asking is whether it's possible to set up the mapping down a level (if that makes sense).

Thanks in advance,

Ted

Tuesday, April 10, 2007 4:32 PM by Ted Vreeland

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi Ted -

Hmm... I'm not sure I follow your question.  My response to Rajesh in an earlier comment of this blog post might address your question, though.  Also, AAM applies to the whole web application, not a subset of it.  If that doesn't address your question, let me know. :-)

- Troy Starr

Wednesday, April 11, 2007 1:39 PM by Troy Starr [MSFT]

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Here's what I'm trying to do - I'm wondering if you can help.

I have a server "spserver1.mydomain.com" where I have MOSS 2007 installed.

I want end users to be able to go to "portal.mydomain.com" (instead of our internal naming convention of "spserver1").

So I set up a record in DNS for "portal.mydomain.com" to go to the same IP address as "spserver1".

Now "portal.mydomain.com" gets me to MOSS, but the URL in IE changes to "spserver1.mydomain.com".  I want

it to stay as "portal.mydomain.com".

So I went into Central Admin/Operations/Alternate Access Mappings and

changed the default URL to "portal.mydomain.com".

That seems to work from a user point of view.  Users can go to "portal.mydomain.com", and the browser address bar stays as "portal.mydomain.com".

However, now when I go into Central Administration and click on SharedServices1 to administer Shared Services, it challenges me for a login and password, and it will not accept even a valid login and password.  In the challenge window, the title

says "Connect to spserver1.mydomain.com", but in the window itself, it is referring to "portal.mydomain.com", which I am assuming is the source of the problem.

If I type in the URL "spserver1.mydomain.com/ssp/admin", it works properly - I can get into the Shared Services Admin.

Is there a way that I can make it use portal.mydomain.com, yet have Central Admin continue to work correctly?

Saturday, April 14, 2007 12:01 AM by Joe

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi Joe -

A couple of questions...

1. When you updated the AAM URL to be "portal.mydomain.com", did you do it for each web application, including the SSP Admin web application?

2. What kind of authentication is configured for the SSP Admin web application?  If it is Negotiate/Kerberos and you're using a domain account as the application pool account, you may need to register a new service principal name for the "portal.mydomain.com" domain name for authentication to succeed.  You could try temporarily switching the authentication from Negotiate/Kerberos to NTLM via the Authentication Providers page in Central Administration to see if that's the cause.

- Troy Starr

Sunday, April 15, 2007 4:06 PM by Troy Starr [MSFT]

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

I did eventually get it working (somehow) but to answer your questions:

1. I did not change each web application, but I don't see how that would help with the SSP Admin - it's not running on a separate port.  It's running on port 80 also (spserver1.mydomain.com/ssp/admin).  The only things I can change (in AAM) are the Sharepoint application itself (port 80), the My Sites application (running on port 8080) and the Central Admin application (running on port 43861).

2. It is Kerberos.

What I ended up with that works are two entries in AAM for the portal:

#1:

Internal URL: http://spserver1.mydomain.com

Zone: Default

Public URL: http://spserver1.mydomain.com

#2:

Internal URL: http://portal.mydomain.com

Zone: Intranet

Public URL: http://portal.lptdomain.com

I suppose my mistake was continuing to try to use spserver1.mydomain.com as the "Internal URL".

Monday, April 16, 2007 10:33 PM by Joe

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Thanks for the post Troy. Quick question. I'm running into a lot of confusion when ports othetr that port 80 are used in terms of AAM.

Specifically I have an internal site - http://server:6000/sites/intranet which I'd like to publish as http://sharepoint.company.com - is this possible drectly using AAM or must I move the site to a new web app on port 80 ?

Tuesday, April 17, 2007 9:46 PM by Ian Moran

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

This is great information, thanks you for taking the time.

My question is regarding the best way to add SSL to a site.  We have a WSS 3.0 site being used as an internet site.  Curently it doe snot use any SSL certificate.  We would like to enable SSL on the site without having to recreate everything nad hopefully set it up so that if users have already bookmarked http://oursite.com they will automatically be sent to https://oursite.com.  When we extend the site to add SSL, it creates a second IIS instance.  Does this have to be the case or is there a better way to do this?

Can you recomend the best way to accomplish this?

Thank you!

Wednesday, April 18, 2007 4:59 PM by Brian Gough

# What every SharePoint administrator needs to know about Alternate Access Mappings (Part 3 of 3)

In Part 1 of my blog series on Alternate Access Mappings, I gave a brief introduction to the feature

Wednesday, April 18, 2007 8:14 PM by Microsoft SharePoint Products and Technologies Team Blog

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Thanks for the great post, Troy! I'm a little be bit lost on the "extend web application highlighted.png" image though... If the site that I want to extend is http://sharepoint.dmz.contoso.com at port 80, then when I extend it, I will give it a different port and URL? If so, then which one will I use for the Internal Hostname and Port #? Thanks!!!

Monday, April 23, 2007 10:42 PM by Tiffany

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Here's what Im trying to do:

- The server with sharepoint services 3.0 is called (de-applserv).

- I want users to go to (wss.domain.com) instead of the netbios server name (de-applserv).

- I've setup a DNS record on DC to forward (wss.domain.com) to (de-applserv) ip address.

- Every time I go through (wss.domain.com) it asks me for credentials whitin domain environment but if I go through the netbios name (de-applserv) it doesn't ask me. Basically I don't want WSS to prompt for credentials if Im connecting whitin the domain using (wss.domain.com).

- I'm using NTLM, Windows Authentication and default application pool (local service), in host header I use the dns record I've setup (wss.domain.com) also if I setup the host header with (de-applserv) and the public url with (wss.domain.com) it doesn't work, when I type the domain in IE it popup 400Error.

- I've tried everything (creating different web applications with different settings) and didn't work, when I try to use kerbebos it prompts for l&p and even with correct credentials it doesn't authenticate me.

- Also I've try simply add an AAM (wss.domain.com) to an existing web application  but when I type the full address it comes with 400 Error.

Need help here, can you please tell me step by step what should I do 2 have it working.

Regards

Tuesday, April 24, 2007 7:25 AM by k0D

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi Troy thanks for the nice post!

Do you know, why sharePoint not just uses relative links?

Tuesday, April 24, 2007 1:31 PM by marc

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi Troy,

Do you have an example of setting up AAM when using a Cisco router. I have been trying to set alternate authentication for the same content. NTLM for internal and Basic for External.

I followed your example as best I could but evertime I connect to the new site it is returning the default name instead of the name accessible from outside.

Thanks

Friday, April 27, 2007 9:41 AM by Steve Cage

# How to configure Alternate Access Mappings (AAM) successfully

To avoid many questions and simplify troubleshooting, I would suggest this order when configuring AAM,

Friday, April 27, 2007 5:50 PM by Duray Akar's Blog

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

How can use this for Project Server.  I have created my Project Web Access site i.e.. http://intranet/pwa. I cannot edit the host header in the Project Web Access settings.  Is there a way around this where i can use AAM?

Tuesday, May 22, 2007 6:07 AM by PL

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi Troy

Thanks for the post, I have a question thou. Must we have a proxy server?

How will this work with a front end server?

Will all the links became https:// even if you are in the internal network.

Tuesday, May 22, 2007 8:23 AM by Jimmy

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

I still don't understand how to make http://xyz.com and https://xyz.com to work side by side without limitation to web content editor web parts barking about can't save changes or unsecure/secure content messages.

Using a reverse proxy for this.

Thanks

Thursday, May 24, 2007 11:10 PM by Dave

# Still having problems.

Thanks for all the info on this topic. I unfortunately am still having issues.

I have WSS installed on the DMZ interface of my Cisco firewall. I am trying to connect from the inside interface. I am using NAT to map 74.8.14.153 to 172.14.1.23 ( the IP of the sharepoint box). DNS is configured for gza-sharepointx.gza.com to 74.8.14.153.

AAM Mappings are as follows:

http://gza-sharepointx  Default http://gza-sharepointx.gza.com  

http://gza-sharepointx.gza.com  Default http://gza-sharepointx  

http://74.8.14.153  Default http://gza-sharepointx.gza.com  

I am getting "Unable to determine IP address from host name for gza-sharepointx.gza.com".

Any idea as to what I am doing wrong?

Tuesday, May 29, 2007 5:05 PM by dano88

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Nice article,

I like to have the same address both on the inside and the outside, say: http://page.company.se

So in SharePoint I have a web application called http://page.company.se and I have a extended I with the name http://extpage.company.se

In the ISA I have a rule translating external http://page.company.se to internal http://extpage.company.se

Until now everything works well beside some links on the outside is not correct so lets try to correct this by entering a rule in AAM solving this.

But this cant be done because it is not possible to add such a rule in AAM, it seams the external and internal name can not be the same or am I missing something?

Is there a solution for this scenario.?

Thursday, May 31, 2007 8:52 AM by Mats Larsson

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

I have SharePoint services 3 and ISA 2006.  I published the internal site http://server1 as">http://server1 as https://name.domain.com.  Everything else works great except for the Document Library.  If you mouse over the name of the document, the status bar shows the correct external name and the path to the document.  But, if you try to open the document, the url now shows as the internal server name, that is http://server1/folder/name.doc">http://server1/folder/name.doc, instead of https://name.domain.com/folder/name.doc.  So from an external URL, it goes back to an internal URL, which causes the opening of the document to fail.

I have the following in AAM:

Default: https://name.domain.com

Intranet: http://server1

Internet: http://server1ext

Custom: http://server1:2240

What could be going wrong?  In ISA, the "Forward the original host header..." is unchecked.  There is no additional manual link translation mapping configured, aside from the automatically created one when I created the SharePoint rule.

Thursday, May 31, 2007 7:13 PM by MarkB

# What every SharePoint and EPM administrator needs to know about Alternate Access Mappings

Thursday, June 07, 2007 4:50 PM by Christophe Fiessinger's Blog

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Great article-

   We have a website that we want to integrate with Sharepoint 3.0. http://test:8080/sites/ is the site that we created, but we need to get rid of the port number in the url. Is the scenerio above the best solution to accomplish this. We want http://server name/sharepoint and http://www.servername.conarc.com/sharepoint. Another question: In personal mode, can we have 1 web part where employees can change a url, such as www.yahoo.com. I noticed it only lets you change url's in shared mode. Any help would be appreciated. Thanks.

Tuesday, June 12, 2007 10:03 AM by DDuff

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Great article

Going kind of of topic but would I need to have my Sql server in the DMZ ?

Monday, June 18, 2007 2:51 PM by shive72

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Not sure if this Blog is still being monitored but I will say great post Troy.

My issue is that my internal Sharepoint site works just fine but my public facing site is having issues with the directory index files displaying.  Here is my post on several forums:

I have installed and configured my SharePoint Server 2007 successfully on my Windows 2003 Server Standard box (named server01) and works great on my local network (i.e. http://server01/site01 (subsite site01 used in this example)).  However, when attempting to access the site remotely on the web (i.e. http://www.somedomain.com/site01) I get the dreaded "The page cannot be displayed" error.  Yet when I call the site up adding the default.aspx to the end as http://www.mydomain.com/site01/default.aspx it comes up just fine.  I checked the documents setting on IIS for the site(s), I see default.aspx listed there as an accepted directory index file for the server to look for.  This issue would not be such a big deal except that a lot of the navigation links in Sharepoint rely on this working.

Anyone have any ideas and/or can you also point me to a good site that discusses preparing Sharepoint for access via the web??

Thursday, June 21, 2007 11:35 PM by gheatly

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hello,

Great post. Helped me out tons. I however, have one small problem. I am able to access my SharePoint server remotely and pretty much do what I want, however anytime I try to access MySite it points back to my internal address. This happens to everyone.  Not sure why. Any suggestions?

Also, I am using ISA 2000. I have read on some sites that publishing SharePoint 2007 through ISA 2000 will have some limitation.  I am not sure what it is exactly.  I was unable to find a SharePoint Publishing Wizard in ISA 2000.  Am I missing something?  Is the MySite issue I have related to this?  Anything would be great. Thanks in advance.

Tuesday, June 26, 2007 12:47 PM by Jeeves

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

We host web sites for a long list of external companies (> 100). They all have their own public url (www.customerA.com...). Now we want to use the same Sharepoint web application for them all since they share a lot of data. Since AAM only allows 5 public urls I cannot give each customer their own. I can give them their own internal url but then Sharepoint will redirect to and include links to the external url (www.mysharepoint.com) and not the customer url. How am I supposed to set AAM up to allow > 100 customers with their own host headers to access the same web application and have Sharepoint generate links (and so on) that points to the customer url and not our internal? // Mats

Wednesday, June 27, 2007 5:54 AM by Mats Boisen

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Mats I have the same requirement for our environment. I need more than 5 Public URL's, have you found a soultion for this?

Troy do you know a way to do this in MOSS?

Thanks

Tuesday, July 10, 2007 9:49 AM by Kevin

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

This is a great post. I configured my site as follow:

Default: http://server:4000/

Public URL: https://portal.abc.com/ (Internet Zone)

AAM Internal URL: http://moss.abc.local:4000/ (Internet Zone)

I have SharePoint publishing rule created as above.

However, when sps generate email alerts, the URL within the email is using "moss.abc.local" rather then "portal.abc.com". Therefore, those URLs are not accessible for internet users.

Did I miss configured something?

Thanks

Friday, July 13, 2007 6:08 AM by Alex Chow

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Is is a requirement that ISA Server 2006 be installed in conjunction with MOSS 2007 to be able to access it across the internet without errors and deadlinks?

Wednesday, August 08, 2007 1:21 PM by Jason

# too many authentication challenges

We have wss 3.0 environment. We have multiple domains, one server farm with basic authentication. Will alternate access mapping solve the situation where the user is required to enter user and login everytime a document is loaded from the document library

Friday, August 10, 2007 5:07 PM by sham

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

I have 2 sharepoint front ends load balanced by an F5 appliance.  I built the initial site on an IP published through F5 - http://server.college.edu, and this works great.  I extended it to a new IIS site (which I let sharepoint create- sharepoint also put in the AAM) called https://server2.college.edu and am publishing that through ISA.  However, sharepoint did NOT put a host header on this web application in IIS(even though I entered one where it asked for it when extending) and if both servers are in the pool the website times out.  Any ideas?  

Tuesday, August 14, 2007 10:23 AM by Sara Porter

# All you need to know about Alternate Access Mappings (AAM)

Troy Starr of the WSS Test Team has written an excellent 3-part article detailing AAM. The details can

Friday, August 17, 2007 4:04 PM by Mirrored Blogs

# Tips from Top Support Calls

I was in a thread recently where Gabe Bratton was looking through top support issues and looking at ways

Wednesday, August 29, 2007 6:12 PM by Joel Oleson's SharePoint Land

# re: AAM Lookup Column Problems in Datasheet View

Hello.  Thanks sooooooo much for the AAM article.  It has been very helpful in getting AAM working.  I have run into an issue that I haven't been able to resolve.  I have a List with a Column that does a lookup to another list within the same site.  Everything works fine internally using the //server address, but when I go outside to a FQDN that is relying on AAM, my Lookup Columns are populated, but there are no options to change the values and if any other field is modified, it gives "The text entered for FieldName isn't an item from the list.  Select an item from the list, or enter text that matches one of the listed items."  Again, this is ONLY in Datasheet view and ONLY from the FQDN that uses AAM.  I have a dedicated WSS box behind ISA 2004.  Any ideas where to start looking for a solution?

Friday, September 07, 2007 11:04 AM by Benjamin Hill

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Helo Troy.

Thanx for the article. I want to ask you if AAM works fine with a diffrent languages packs. I have an English site and "extended" for let say port 1818. Created site collection in french language. (previously installed).

When I go to let say  http://server:1818 french  language site is completely displayed and all magmt is also french. however when used a AMM and point to internet let say http://www.domain.com it does display site in french however mgmt tasks are in english.

Am I doing something wrong ???

Thanx

Friday, September 07, 2007 4:21 PM by Cezary

# Všetko o Alternate Access Mappings (AAM)

Troy Starr napisal velmi pekny 3-dielny serial o AAMČasť 1Časť 2Časť 3

Saturday, September 15, 2007 5:24 AM by Cvalik's blog

# WSS 3.0 & MOSS: Recopilación de enlaces interesantes (VII)

Retomando el clásico recopilatorio de recursos y enlaces que sobre WSS 3.0 &amp; MOSS venimos realizando

Monday, September 17, 2007 2:44 AM by Blog del CIIN

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

I created AAM for my central admin site. During that time I entered http://1server:5678 instead of http://server1:5678. Now I can't access the central admin. Central admin display error message. Need your help.

Thank you,

gi.

Saturday, October 13, 2007 2:18 PM by gi

# MSDN/TechNet forums for SharePoint at http://mssharepointforums.com - the place for Q&A and discussions!

Since the SharePoint 2007 products (WSS 3.0, MOSS 2007, and SPD 2007) released about 11 months ago, there

Monday, October 22, 2007 2:33 PM by Microsoft SharePoint Products and Technologies Team Blog

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Great Post Troy Starr!

It helped us to implement our intranet on public server.

Tuesday, October 23, 2007 3:05 AM by Pankaj Sharma

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Jumbo!!!

Nice reading the whole lot of information on this topic.

Thanks for starting the thread...Troy.

You are awesome !

I will love to have this implement in my environment.

Keep on going.

Tuesday, October 23, 2007 10:44 PM by zullu

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi Troy

Please answer the post. Lot of question are not answered and maps to common senerios. Appriciated.

Wednesday, October 31, 2007 5:57 AM by Sandeep Nahta

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hello,

Great post. Helped me out tons. I however, have one small problem. I am able to access my SharePoint server remotely and pretty much do what I want, however anytime I try to access MySite it points back to my internal address. This happens to everyone.  Not sure why. Any suggestions?

---------------------------------------------

The error listed below is the exact same situation as we experience...

We use ISA 2006 publishing with Alternate access mappings on sharepoint.

We have used the MS procedure found on MSDN and technet.

However we find that when a site is in a top-level site container as with the self service site creation /sites/ we are redirected to the internal link.

Please give me help on this.. We use HTTPS on the isa internet listener and the internal website is HTTP.

Arjan L.

Also, I am using ISA 2000. I have read on some sites that publishing SharePoint 2007 through ISA 2000 will have some limitation.  I am not sure what it is exactly.  I was unable to find a SharePoint Publishing Wizard in ISA 2000.  Am I missing something?  Is the MySite issue I have related to this?  Anything would be great. Thanks in advance.

Sunday, November 04, 2007 8:20 AM by Arjan

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

I am facing a situation where I will have multiple portals in an extranet dmz. They all require SSL.

Question:

1. Given that I do not have ISA and only F5 Switch, should I do SSL termination at the F5 layer? If so, what other steps would I need to perform in order to have all three portals set up correctly?

2. Are there any other options if I cannot do SSL termination at F5 layer?

Thanks for any feedback.

Thursday, November 15, 2007 12:47 PM by Jason Miller

# Troubleshooting WSS Search - EventID 2424 & 2436

Corpo: Olá pessoal, Bom, este é um artigo muito interessante ... basicamente por tratar de alguns detalhes

Monday, November 19, 2007 6:57 PM by Mirrored Blogs

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

This was helpful but I'm trying to use SQL 2005 Reporting Services in Sharepoint Integration mode. I'm running into an issue where the SQL Reporting Service webpart brings back an error "The request failed with an empty response." I've followed the above to setup ISA 2006 and Sharepoint for Alternative Access.

Has anyone got the following setup working?

isa 2006 + sharepoint 2007 *published via isa2006* using Alternative Access with Reporting Services in Sharepoint Integrated mode?

Tuesday, December 04, 2007 5:58 PM by Gavin Ramm

# What every SharePoint administrator needs to know about Alternate Access Mappings

I'm running into a lot of confusion when ports othetr that port 80 are used in terms of AAM.

Specifically I have an internal site - http://server:6000/sites/intranet which I'd like to publish as http://sharepoint.company.com - is this possible drectly using AAM or must I move the site to a new web app on port 80 ?

Tuesday, December 11, 2007 10:29 AM by ramin

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hello Troy I am a newbe at SharePoint 2007, I loaded the software and every thing when great until I went to login, I got an unexpected error occured, and my default web site will not start in IIS.

HELP Please.

Darryel

Wednesday, December 12, 2007 10:08 AM by Darryel

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi! I've just installed WSS 3.0 on my server and can't figure out how to have the main site with a short url - like it was before with WSS 2.0 ->http://companyweb

Is there a kind soul to help or direct me to the right answer (steps) to have something more friendly than http://server:port/site/sharepoint.

Thanks in advance

Sunday, January 06, 2008 9:02 PM by Matthew Mueller

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

I have setup a MOSS Site. I have been attempting to open it up externally. I have added a DNS record that points sharepoint.smartonline.com to the public IP address. I have also added that site as internet in AAM. For some reason i can not access this site externally. The server hosting this site is secured but we have openned it up for http/https only. Any insight?

Thursday, January 10, 2008 1:26 PM by Nikhil Shah

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Should users be prompted to logon again when editing or creating new documents?  Users are accessing Sites over the Internet via ISA 2006 Forms Based Authentication via AD (SSL Termination and AAM configured) with SSO enabled.  We have the ISA rule Authentication Delegation configured for Negotiate (NTLM\Kerberos).   Users can navigate from one web application to another without being prompted until they try and edit or create a new document in a document library.

Tuesday, February 05, 2008 10:41 AM by brent.flesner@illinois.gov

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Is it possible with AAMs to have the one URL redirects to a sub site path of another URL

For Example

I have two domains x.com and y.com

x.com is a WSS site. Under x.com I create a subsite x.com/y_site. Can I configure sharepoint to redirect requests to y.com to x.com/y_site if the IP of both are the same without the browser showing the redirect?

Thursday, February 07, 2008 11:29 PM by bbeer

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

So a huge hurdle we've never figured a way around is how to put both MySites and the "main" web app both on port 80 and yet on their own individual web apps, BEHIND ISA, without using the expensive kludge of a "wildcard SSL Cert."

I guess that this post (if it's still open) would be among the rare few that would know what that sentence above even means. I have applied link translation, and the links still come through with the HH URL of the mysites virtual server, not the translated / AAM URL.

One intriguing idea that Troy posted above was to stsadm -o restore and "Be sure to include the -hhurl parameter to restore it as a host-named site collection." But would this be a good idea with thousands of MySites?

Eagerly awaiting any thoughts anyone might have on this topic.

Sunday, February 24, 2008 7:38 PM by AlexM

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

I have a portal wich have a lot of sites... one of them http://www.myportal.com/subsite1/ have to be open by a diferent name. for example when I type http://www.other.com has to open http://www.myportal.com/subsite1/  ,... how I can do that??? That a diferent domain opens a subsite?

Monday, February 25, 2008 12:11 PM by AAM

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

If I turn off "Forward the original host header" option in ISA, KPI List View (KPIListViewPage.aspx) will fail with "Value does not fall within the expected range". Do you know how to resolve it without have to turn the forward option On

Wednesday, March 05, 2008 4:30 PM by Son Dao

# Whatever happened to parts 2 & 3 ?

Whatever happened to parts 2 & 3 ?

where can I find them.

Your title after all was "What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)"

Monday, March 10, 2008 3:06 PM by Mark Mills

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi Troy, great piece of information. I was reading thru this blog and found this part: "...For your second question, no, I'm afraid SharePoint doesn't support asymmetrical paths, so AAM cannot be used to perform path translation.  The path (i.e. "/site/default.aspx") must be the same from the end user's point of view and the SharePoint server's point of view..."

is this for real? disappointing my question is how people implement MOSS in their organizations I pretty much have problem seeing our users typing path like http://servername.domain.com/sites/home/pages/default.aspx it's crazy don't you think? I tried to create HTML redirect page and place it on IIS in MOSS website under Documents - Enable default content but this gets ignored in sharepoint configuration any other web application we use it will read default doc but sharepoint.. do you have any ideas how to make MOSS recognize http://server.domain.com and redirect to /sites/home/pages/default.aspx ?

since I get bad request page cannot be displayed I try to use URL /sites/home/pages/default.aspx instead of default IE error this did not work either.

Wednesday, March 12, 2008 4:48 PM by RW

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi,

We test MOSS 2007 on Windows 2K8 for an extranet project for an university.

We have a lot of problème with AAM. The configuration is the same you described.

Default : http://www.sitemire.net (anonymous possible)

ISA server route to http://www.ext.sitemire.net (web application extension in Internet zone, farm url https://www.sitemire.net, no anonymous)

Internal Adresse added http://www.ext.sitemire.net (Internet zone, https://www.sitemire.net)

Here is the sum-up of the problems :

A> On the site with anonymous logon on http, none in https :

1> When we made a postback via https (in administrative tasks for example), we are redirected to http://www.sitemire.net (with an display error) but the code behing the postback is executed. If we modified in url, http:// by https://, it's ok.

2> When we connect from ISA with https://, we are also redirected to http://. We must click on connection in the top right.

B> Other Problems from Internet

1> when we have a subject in discussion with accent, it is impossible to reply. In Intranet, no problem.

2> it's impossible to setup a personal site form Internet. In Intranet, all goes well.

Does someone can help us ?

Monday, March 17, 2008 11:01 AM by ISAMBERT Patrick

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Good post, maybe someone can help. We have a MOSS 2007 site in our DMZ and want to make it our internet server. After Network guys changed DNS, the www.homesite.com resolved to http://servname/ as opposed to www.homesite.com and get access denied. Internally we could type www.homesite.com and it would chnage to http://servername and worked fine.

Any ideas on what to do?

Thanks

Monday, March 31, 2008 9:33 AM by Tim Niemann

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

This article gets referred to quite a bit as a reply to a question we've been stuck on. Alas, it's not quite specific to our case.

We're using off-farm SSL termination (Netscaler) which then communicates with the MOSS farm via HTTP.

What, exactly, are we supposed to have in AAM to handle this?

Is the AAM supposed to handle the rewriting of HTTP links into HTTPS for us? Or is that something the load balancer (which has the SSL certificate) is supposed to do?

I see mention of host-named site collection issues. We ARE using host names for the web application, but not site collections themselves, so I don't know if that's the issue we're having or not.

Wednesday, April 02, 2008 2:11 PM by Darrel

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

How does AAM work with the MOSS Enterprise Search?

Thanks

Wednesday, April 02, 2008 3:50 PM by t niemann

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

What about those of us who need to do exactly this (Because we are using the same IIS Server to push mail.domain.com/owa and portal.domain.com) out to the public internet? It breaks OWA every time we get it mapped out but leaves portal.domain.com working.

We do not use ISA Server.

Thursday, April 03, 2008 4:01 PM by smith kennedy

# Microsoft SharePoint Products and Technologies Team Blog : What every SharePoint administrator needs to know about Alternate Access Mappings

A series of three posts regarding configuring and understanding one of the top reasons that SharePoint

Wednesday, April 09, 2008 9:14 AM by SharePoint Thinks, Links and Clinks

# How to publish sharepoint site with ISA 2006

Body: If you&#39;re have trouble to handle Alternate Access Mappings and configure them so that outside

Tuesday, May 06, 2008 11:34 AM by MCPBlog

# MOSS Form Based Authentications

Wednesday, May 21, 2008 12:35 AM by Man On The Way

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

I have MOSS running with My Sites but there is a problem with the config somewhere giving me trouble with the My Sites link.

From the LAN when I click on the My Sites link it sends me out to the public address.

I reviewed the AAM's and have the public ip set as extranet. It was formerly Internet but we had the same issue.

I removed this link last week and put it back the next day. All worked fine for a day then it started happening again.

Removing and putting the external AAM back did make a difference but it didn't last.

Is this an AAM problem or should I be looking elsewhere?

Wednesday, May 28, 2008 7:35 PM by Pete

# Zones, Alternate Access Mappings, and Internal URL's...Oh My!!!

Zones, Alternate Access Mappings, and Internal URL's...Oh My!!!

Friday, May 30, 2008 8:45 PM by Blog-Mania

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

I have a sharepoint 2007 server with 2 IPs. I used one IP for a web site with SSL. It works fine. Then I used the other one for two web sites. Both the web sites work fine on my computer, all the computers in our office (~10) and some computers on other subnet(i.e. x.x.133.x), but we couldn't access the two sites through other subnets(even some PCs on x.x.133.x). I don't know it is a web site configuration issue or a network issue.

Thanks in advance.

Wednesday, June 11, 2008 8:57 AM by yd

# Great post... the DMZ name and mapping are key!

Great post on a very confusing and sparsely documented area of MOSS administration. Those screenshots are gold.

Very important to follow the steps exactly. The first time through I thought I could skip the additional dmz entry and instead just map directly to the machine site (http://sharepoint). I then stumbled on the problem discussed in part 2 of where if the additional dmz entry is not created, you get random pages not returning correctly. For me these pages (Publishing site) were Manage Content and Structure and trying to start a workflow on a document added to the doc library. Also, the http://sharepoint url was showing up in emails e.g. added to approval group, click here to view workflow status, etc.

For the additional dmz entry (sharepoint.dmz.contoso.com) what I did was to add an entry to the hosts file on the ISA and Sharepoint server that pointed to the address of the Sharepoint server so that I would not have to add an IP to DNS. It seems to work just as well. All the problems I had initially are working now.

Tuesday, June 24, 2008 4:12 PM by Mike Knowles

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi, congratulations for the post. I have this situation: I want that my sharepoint reply to requests for some documents that reside in a Sharepoint Library. This requests are made from servers in a different newtork, that cannot authenticate in my Active Directory.

How can I accomplish this? Any ideas?

Regards

John

Tuesday, July 01, 2008 11:13 AM by John

# Alternate Access Mappings Unvieled

Wanna know what SharePoint is doing when you change and/or use the Alternate Access Mapping Feature?

Tuesday, July 29, 2008 9:34 AM by Coding Times of a .Net Developer from Yard

# AAM and Cisco Load Balancing

For those of you looking for answers to the Cisco Load Balancing question I posted this: http://blogs.catapultsystems.com/matthew/archive/2008/08/05/aam-and-ssl-termination-1.aspx

HTH

Tuesday, August 05, 2008 4:02 PM by Matthew McDermott

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

OK, newbie here to MOSS 2007, but have worked with WSS 2.0 for a few years now.  I am working on upgrading to MOSS 2007, and I need this to be accessible to our users from home via the Internet.  In the past, it was as simple as pointing a public IP to the server and connecting.  Now, I run into an issue with the site.  I have the public IP poiting to the server, and it will connect, but only if I use the full address.  So, if I try to go to http://publicIP, I get a page can not be diaplyed.  If I enter http://publicIP/default.aspx, I am able to get the login screen and then into the site.  Trouble is the navigation in the bread crumbs does not point to the full address, but only the http://publicIP.  Is this where the mappings help me out?  Thansk to anyone who can help!

Wednesday, August 06, 2008 10:23 PM by Marc

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

I have a load balancer on the front that is terminating SSL and things weren't working right until I configured things as you described here.  This is the only place I have been able to find the answer.  Thanks for this post.  It saved my life...

Wednesday, August 20, 2008 6:55 PM by Bryan

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

we have internet facing portal and using AAM we have used a custom name to portal.  Entire Portal works perfectly except the search results.

They still show the sitecollection name in their URL. Due to this we are unable to browse search results. To Avoid that we have created a Redirector in IIS even, but still the search pages dont get redirected as expected.

What mistake could have happened. please let me know so that issue can be solved at the latest.

Monday, September 15, 2008 10:19 PM by Murali

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hello,

I had configured the AAM feature. now I can access sharepoint correctly from inside and outside...but I can't create new websites and access the usage log reports.

Sharepoint throws an error about File Not Found. If I try to create the site using the internal URL, then it works fine..

have any thoughts on this?

thanks,

Felipe Ferreira < felipe.ff at msn.com >

Friday, September 19, 2008 8:58 AM by Felipe Ferreira

# Hey please help me regarding this issue

Please give me answer to my following issue:

There is a link to another website in my portal. If i open my portal as intranet site, then the link should also open as intranet site and if i open my portal as internet site,then the link should also open as internet site.

Tell me how to do this?

Tuesday, September 23, 2008 1:38 AM by Bhuvana

# Распространенные ошибки при настройке Sharepoint

Очень интересный пост , в котором приведены наиболее частые проблемные вопросы при обращениях в службу

Sunday, October 19, 2008 3:48 AM by Bong's Blog

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Thanks, it works perfect. appreciate it. Impressive article.

Monday, December 01, 2008 11:18 PM by Frost

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

*** BUMP ***

So has anyone found a solution to the mysite problem???

*****

So a huge hurdle we've never figured a way around is how to put both MySites and the "main" web app both on port 80 and yet on their own individual web apps, BEHIND ISA, without using the expensive kludge of a "wildcard SSL Cert."

I guess that this post (if it's still open) would be among the rare few that would know what that sentence above even means. I have applied link translation, and the links still come through with the HH URL of the mysites virtual server, not the translated / AAM URL.

One intriguing idea that Troy posted above was to stsadm -o restore and "Be sure to include the -hhurl parameter to restore it as a host-named site collection." But would this be a good idea with thousands of MySites?

Eagerly awaiting any thoughts anyone might have on this topic.

Wednesday, February 11, 2009 4:10 PM by knrfmd

# Understanding extranet setup for MOSS 2007

Links: Design extranet farm topology (Office SharePoint Server) Downloadable book: Planning an Extranet

Wednesday, March 04, 2009 12:08 PM by SharePoint

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Hi Troy,

Your article was very helpful. We are configuring our shpt farm with the offbox SSL on an f5 device. I have question about IP addresses for each of the urls listed above

: Public URL : Virtual IP address on F5

: Internal URL : Can this share the same iP address as public URL

: MOSS web application: what should the ip address be ?

THe issue is the web applications are hosted out of 3 load balanced web front ends - which are currently loadbalanced using the f5 device

I would really appreciate your input.

Thanks

Saumya

Thursday, May 14, 2009 1:05 PM by sparames

# Useful Sharepoint Links

Useful Links · MOSS Video Demos (Total 14 Modules) · Before You Begin with SharePoint Server 2007 · MOSS

Tuesday, June 16, 2009 10:45 AM by a blog or 2

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

sesli sohbet ses sohbeti - sesinizi açın sesli sohbetler - sesli sohbet siteleri.

Wednesday, July 01, 2009 6:28 PM by sohbeti

# web tasarım

super thank you http://www.parcakontorbayiniz.com mıracle

Sunday, August 09, 2009 11:12 AM by web tasarım

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Turkiyenin en kaliteli sesli chat sitesi.

Wednesday, December 23, 2009 1:41 PM by tekzalim

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Turkiyenin en kaliteli kameralı chat sitesi.

Wednesday, December 23, 2009 1:42 PM by tekzalim

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Turkiyenin en kaliteli motosiklet sitesi.

Wednesday, December 23, 2009 1:43 PM by tekzalim

# re: What every SharePoint administrator needs to know about Alternate Access Mappings (Part 1 of 3)

Turkiyenin en kaliteli ruya tabir sitesi.

Wednesday, December 23, 2009 1:44 PM by tekzalim

Leave a Comment

(required) 
required 
(required) 

  
Enter Code Here: Required
 
Page view tracker