Create public facing web site of SharePoint intranet portal with Public IP Address

Hi,
I did below steps to create public facing URL and to access outside domain network (Internet).
1. Got a public IP Address.
2. Created an extending web application to existing Web Application (default zone - intranet) and Zone selected to Internet and host header given test.contoso.com.
3. Went to IIS and edit binding of Internet site. Provided public IP Address in 'IP Address' textbox and given host name as test.contoso.com. 
Above are the 3 steps used to get access http://test.contoso.com in internet. But unable to access it and not seen any relavant message.
Please help me and provide me steps to achieve.

Did you actually register the contoso.com address on the Internet?  And is it associated with the public IP Address?  To access SharePoint from the Internet you are going to use http://test.contoso.com.  The Internet DNS servers need to be
able to resolve that to your Public IP in order to find the SharePoint server.
Second, did you bind your external IP address to one of the network cards on your SharePoint server?  Or is your Firewall or other gateway device forwarding traffic to the SharePoint server at that address?
Another problem you may have is whether that Internet IP address is even reachable on your internal network from the Internet.  Most companies have Firewalls inplace to keep external users from accessing addresses inside your network.
It sounds like you've done all the SharePoint configuration correctly, but you also need to make sure that TCP/IP is correctly configured.
Paul Stork SharePoint Server MVP
Principal Architect: Blue Chip Consulting Group
Blog: http://dontpapanic.com/blog
Twitter: Follow @pstork
Please remember to mark your question as "answered" if this solves your problem.

Similar Messages

  • Can I create a muse web site for someone else and allow them to make edits to site. Example to update gigs for a musician web site.

    Can I create a muse web site for someone else and allow them to make edits to site. Example to update gigs for a musician web site.

    Yes, you can. Sites published with BusinessCatalyst or to an FTP host can be edited by clients. Here is a short tutorial about the new In-Browser Editing feature: In-browser Editing | Adobe Muse CC tutorials

  • Migrate the SharePoint 2007 Site containing SharePoint Designer Workflows with Infopath forms to SharePoint 2013

    Hi,
    We have a requirement to migrate the SharePoint 2007 Site containing  SharePoint Designer Workflows with Info path forms to SharePoint 2013.
    Can somebody please guide us as to what could be the best approach to go ahead?
    Thanks in advance.
    Regards,
    Vijay

    Use STSADM
    backup and
    restore to migrate SharePoint 2007 site
    containing  SharePoint Designer Workflows with Info path forms to SharePoint 2013. 

  • Why can I not get my user ID to "stick" when visiting web sites that I am registered with?

    Why can I not get my user ID to "stick" when visiting web sites that I am registered with?

    Look in settings, safari.  There are two setting that might help, depending on how the website wants to see you.  If they are using cookies, make sure your accept cookies switch is on.
    Then look at the autofill setting.  You can turn names and passwords on or off.

  • Create PDF From Web Page - Authenticated SharePoint Sites generate "Authorization Failure" error

    We have several authenticated sharepoint sites on our intranet, and we are trying to create a PDF of a site (x levels down) using the Acrobat create PDF from web page feature.  When you try to create a PDF from a non-sharepoint, authenticated website, a login prompt appears asking for login credentials.  However, when you try to use the same feature on an authenticated sharepoint site, you do not get prompted for credentials and instead get an Authorization Failure error.  the popup says "Error: Nothing Done".  We have successfully PDF'd anonymous sharepoint sites on the WWW.  Has anyone successfully PDF'd an authenticated SharePoint site? 
    Thanks in advance,
    -Richard.

    I am having the same issue AND none of my pages or files require a UserID or Password. My issue appears to be something with the domain because a and b work just fine and produce a PDF file while item c does not work and produces the error msg.
    http://www.dot.wi.gov/projects/neregion/151/index.htm works just fine and produces a PDF file.
    http://www.dot.state.wi.us/projects/neregion/151/index.htm works just fine and produces a PDF file.
    http://www.wisconsindot.gov/projects/neregion/151/index.htm produces an error msg. ‘Nothing done’.Error info. - Authorization Failure    http://www.wisconsindot.gov/projects/neregion/151/index.htm
    [email protected]

  • Thread was being aborted Exception while creating large number of Sites in SharePoint 2013

    Hi All,
    I am getting threading exception while creating a large extent of sites in SharePoint 2013. I am reading data from an excel file and then looping each row. The sites are creating for first two rows then i am getting exception. This code working fine in dev
    server but not in UAT server. I tried with changing maxRequestLength in web.config but not working. And also followed the below link.
    http://support.microsoft.com/kb/928756
    My code as follows-
    private void CreateSites(DataRow dr)
                try
                    using (SPSite site = new SPSite(OtherSiteCollection)) // I am creating sites in another site collection
                        using (SPWeb web = site.OpenWeb())
                                SPWeb newWeb = null;
                                SPWebTemplateCollection templates = site.RootWeb.GetAvailableWebTemplates(1033);
                                SPWebTemplate template = (from SPWebTemplate m in
                                                              templates
                                                          where m.Title == "SiteTemplate"
                                                          select m).FirstOrDefault(); //Here i am using custom template
        string siteName = dr["Site Name"].ToString();
                                newWeb = web.Webs.Add(siteTitle, siteTitle, siteDescription, 1033, template, true, false); //Getting exception here.
                                newWeb.Update();
                                newWeb.Dispose();
                catch (Exception ex)
                    lblMsg.Text = "Exception in create sites : " + ex.Message + ";" + ex.StackTrace + ";" + ex.ToString()
    I am getting error as-
    Exception in create sites: Thread was being aborted.;   at Microsoft.SharePoint.Library.SPRequestInternalClass.ApplyWebTemplate(String bstrUrl, String bstrWebTemplateContent, Int32 fWebTemplateContentFromSubweb, Int32 fDeleteGlobalListsWithWebTemplateContent,
    String& bstrWebTemplate, Int32& plWebTemplateId)
       at Microsoft.SharePoint.Library.SPRequest.ApplyWebTemplate(String bstrUrl, String bstrWebTemplateContent, Int32 fWebTemplateContentFromSubweb, Int32 fDeleteGlobalListsWithWebTemplateContent, String& bstrWebTemplate, Int32& plWebTemplateId)
       at Microsoft.SharePoint.SPWeb.ProvisionWebTemplate(SPWebTemplate webTemplate, String webTemplateToUse, SPFeatureWebTemplate featureWebTemplate)
       at Microsoft.SharePoint.SPWeb.ApplyWebTemplate(SPWebTemplate webTemplate)
       at Microsoft.SharePoint.SPWeb.CreateWeb(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean bCreateUniqueSubweb, Boolean bConvertIfThere, Guid appInstanceId)
       at Microsoft.SharePoint.SPWeb.SPWebCollectionProvider.CreateWeb(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean bCreateUniqueSubweb, Boolean bConvertIfThere, Guid appInstanceId)
       at Microsoft.SharePoint.SPWebCollection.Add(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean useUniquePermissions, Boolean bConvertIfThere, Guid appInstanceId)
       at Microsoft.SharePoint.SPWebCollection.Add(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, SPWebTemplate WebTemplate, Boolean useUniquePermissions, Boolean bConvertIfThere)
       System.Threading.ThreadAbortException: Thread was being aborted.
       at Microsoft.SharePoint.Library.SPRequestInternalClass.ApplyWebTemplate(String bstrUrl, String bstrWebTemplateContent, Int32 fWebTemplateContentFromSubweb, Int32 fDeleteGlobalListsWithWebTemplateContent, String& bstrWebTemplate, Int32&
    plWebTemplateId)
       at Microsoft.SharePoint.Library.SPRequest.ApplyWebTemplate(String bstrUrl, String bstrWebTemplateContent, Int32 fWebTemplateContentFromSubweb, Int32 fDeleteGlobalListsWithWebTemplateContent, String& bstrWebTemplate, Int32& plWebTemplateId)
       at Microsoft.SharePoint.SPWeb.ProvisionWebTemplate(SPWebTemplate webTemplate, String webTemplateToUse, SPFeatureWebTemplate featureWebTemplate)
       at Microsoft.SharePoint.SPWeb.ApplyWebTemplate(SPWebTemplate webTemplate)
       at Microsoft.SharePoint.SPWeb.CreateWeb(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean bCreateUniqueSubweb, Boolean bConvertIfThere, Guid appInstanceId)
       at Microsoft.SharePoint.SPWeb.SPWebCollectionProvider.CreateWeb(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean bCreateUniqueSubweb, Boolean bConvertIfThere, Guid appInstanceId)
       at Microsoft.SharePoint.SPWebCollection.Add(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean useUniquePermissions, Boolean bConvertIfThere, Guid appInstanceId)
       at Microsoft.SharePoint.SPWebCollection.Add(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, SPWebTemplate WebTemplate, Boolean useUniquePermissions, Boolean bConvertIfThere)
    Thread was being aborted.;   at System.Threading.ThreadAbortException: Thread was being aborted.
    Can anyone please help. Thanks!
    dinesh

    If you do this from a Console application, does it succeed?
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Creating web sites that don't suck with Aperture and iWeb

    My goal was to create a web site that combined a few pages created in iWeb with Aperture web galleries. For something that should be trivial, it's actually rather difficult.
    Results:
    http://www.yank.to
    Only the LA gallery at the top uses the Aperture style; the others are legacy galleries. One thing at a time.
    Instructions:
    http://www.yank.to/Downloadsfiles/ApertureiWeb.txt
    Cheers,
    Andreas
    MacBook Pro 2.0 GHz   Mac OS X (10.4)  

    My goal was to create a web site that combined a few pages created in iWeb with Aperture web galleries. For something that should be trivial, it's actually rather difficult.
    Results:
    http://www.yank.to
    Only the LA gallery at the top uses the Aperture style; the others are legacy galleries. One thing at a time.
    Instructions:
    http://www.yank.to/Downloadsfiles/ApertureiWeb.txt
    Cheers,
    Andreas
    MacBook Pro 2.0 GHz   Mac OS X (10.4)  

  • Creating a new web site -- updating an old one

    Hi all,
    I have a web site that I haven't updated in maybe five years. I didn't have the Mac then. I created it with Microsoft FrontPage.
    How would I go about updating this site from my Mac?
    I might just want to start completely over with a new design and content. What tool/program do you recommend? Is there a way to see what I can do with it before buying anything? Is there a free program that I can get started with?
    Thanks!
    Message was edited by: Bruce Delaplain1

    Hi Bruce,
    Yes, you can keep your domain name to use with iWeb. After completing it, publish your completed site to a folder instead of .Mac and then use an ftp program to load to your personal domain. Obviously you would need to remove the original folders that you created in FrontPage. You do loose some of the functions of iWeb by doing it this way though.
    You can also go to your .Mac account and add your personal domain and then use a CNAME alias to point iWeb to your personal domain. This might be the easier way to do it.
    I don't think iWeb and iLife 08 are compatible with OS 10.3. You would have to upgrade to at least OS 10.4. I had an old iMac with 10.3 and I never had iLife on it. I did however have a MacBook with 10.4 and that had iLife 06 on it. I now have iLife 08 which is even better.
    Good luck. I am also in the process of updating a website of mine that I originally created with FrontPage on a PC with iWeb. I have two websites and decided to do this for the sake of uniformity but with different colours. I think you will be pleased with the result. My new iWeb site looks fresher in comparison to my now dull and boring FrontPage site. iWeb certainly looks more professional than FrontPage.

  • General Error" when I create pdf of web site

    Using Acrobat XI
    I get a "General Error" error code when I am creating a pdf of a web site. It always happens after page 4 has been converted.  (the Web site has several hundred pages and I have plenty of memory).
    How do I avoid this?

    Hello Laura,
    The error ""Source type \CLASS=CL_CRM_BOL_ENTITY is not compatible, for the purposes of assignment, with target type \CLASS=CL_BSP_WD_VALUE_NODE" is casting error.
    When we create person / account it is value node untill mandatory fields are entered in account details screen. When "Grouping" value can be changed it is value node, when it is disabled it is model node. So if there is a variable declared CL_CRM_BOL_ENTITY and it want to get value node there can be type casting error.
    Please check in ST22 with more details, there can be custom coding.
    Thanks
    Krish

  • Getting error while creating a new web app saying "The password supplied with the username domainname\username was not correct. Verify that it was entered correctly and try again"

    Hi ,
    I am trying to create a new web app using Central Administration in Sharepoint 2010 and getting an error "The password supplied with the username  was not correct. Verify that it was entered correctly and try again".
    I tried running this command also "stsadm -o updatefarmcredentials -userlogin <domain\username> -password <newpassword>" but when it got executed it showed me "Access Denied".
    What should i do ??
    Thanks in advance.
    Regards, Anurag

    HI,
    right click on command icon and click run as administrator then use above stsadm commend to update credential. If still you face same issue then try with powershell as mention in below link: (make sure that you open sharepoint powershell as run as administrator)
    http://smartrider.wordpress.com/2010/07/15/powershell-script-to-create-web-application-and-site-collection-in-sharepoint-2010/
    let us know your result
    Hemendra: "Yesterday is just a memory,Tomorrow we may never see"
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • SharePoint Foundation 2013 - Can we use the foundation for intranet portal with high availability ( medium farm)

    Today I had requirement, where we have to use the SharePoint Foundation 2013 (free version) to build an intranet portal ( basic announcement , calendar , department site , document management - only check-in check-out / Version).
     Please help me regarding the license  and size limitations. ( I know the feature comparison of Standard / Enterprise) I just want to know only about the installation process and license.
    6 Server - 2 App / 2 Web / 2 DB cluster ( so total license 6 windows OS license , 2 SQL Server license and Guess no sharepoint licenes)

    Thanks Trevor,
    Is load balance service also comes in free license... So, in that case I can use SharePoint Foundation 2013 version for building a simple Intranet & DMS ( with limited functionality).  And for Workflow and content management we have to write code.
    Windows Network Load Balancing (the NLB feature) is included as part of Windows Server and would offer high availability for traffic bound to the SharePoint servers. WNLB can only associate with up to 4 servers.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Web sites using BEA Weblogic Portal

    Hello,
    Can anyone point me to any site using BEA Weblogic Portal 7.0? I just
    want to see a web site on the internet (no intranets) that actually
    uses this on a production environment to show our management that
    there are sites that are actually using this product.
    Thanks.

    Same question here.
    Someone said www.orbitz.com. That looks like it could be WLP but how
    can I be sure?
    Is www.orange.ch really WLP? I don't see any of the signs, like the
    string 'framework/skins' in 'View Page Info'. Is there some infallible
    signature of WLP?
    Here's the only two I have found so far. (They are not very impressive).
    http://www.bankruptcyclearinghouse.com/
    http://owl.org/
    "Niels Ull Harremoes" <[email protected]> wrote:
    "Ray" <[email protected]> skrev i en meddelelse
    news:[email protected]..
    Hello,
    Can anyone point me to any site using BEA Weblogic Portal 7.0? I just
    want to see a web site on the internet (no intranets) that actually
    uses this on a production environment to show our management that
    there are sites that are actually using this product.
    Thanks.
    Try www.orange.ch--
    Larry Mulcahy Address email to [email protected] only
    PGP public key at:
    http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0x2C4C5A03
    AIM id: FleshMonster

  • Cannot open Webi documents from Sharepoint integration portal

    We have installed Sharepoint integration portal integration kit for BO. But when the web part is included into the page to a particular Webi document we are getting the page not found error! The document is not diaplayed.
    Also when we select a report / webi document from the report explorer web part, the opendoument method fails to display any document.
    Are we missing something here. Need some help.
    Thanks
    Edited by: Bhaswar Ghosh on Oct 22, 2008 8:00 PM

    Hi
    Did you receive any error message when you try to open the documents?
    We recommend you start your Internet Explorer in compatibality mode, and follow the advice in the article below:
    http://blogs.technet.com/b/asiasupp/archive/2011/06/13/error-message-quot-your-client-does-not-support-opening-this-list-with-windows-explorer-quot-when-you-try-to-quot-open-with-explorer-quot-on-a-sharepoint-document-library-in-office-365-site.aspx
    In addition here's a thread for your reference:
    http://social.technet.microsoft.com/Forums/en-US/3cbe6b22-e307-485b-a1af-1699cdf5ba86/office-2013-applications-are-not-able-to-open-sharepoint-2007
    Thanks,
    Tylor Wang
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here
     

  • A web wiget using java acript in my web site does not show up with Firefox but does with ie; how can I fix it?

    I have inserted a java script web wiget on my web site by copy and paste. It works fine in IE (shows, updates data etc). In FFox it does not even show up and no error messages are given. If I look at the code in FFox, it is shown. Is there a problem with my web site or am I short something in FFox?

    To avoid confusion:
    *http://kb.mozillazine.org/JavaScript_is_not_Java

  • How can I see Web sites using Adobe Flash Player with my IPad?

    I've realised that it's not possible to visit web sites using Adobe Flash Player.
    Is There a program by which Apple allows you to solve this problem?

    Not from Apple, no, and probably never will be. You can try one of the third-party app/service combinations for playing Flash such as Skyfire , Puffin, or iSwifter. One of those might work for you, though they all have limitations and do not work with all Flash-based sites and services. You may find other suggestions for apps in the many other threads on Flash in this forum.
    Regards.

Maybe you are looking for

  • How to delete a Customer in its SALES AREA?

    Hi All, I've deleted a Customer by t.code OBR2. But it exists again in its SALES AREA. Could anyone tell me how to delete it in the sales area too? Thanks

  • How to use live type in motion 4

    how to use live type in motion 4

  • Display black

    My laptop display has gone black and I cannot find any means of getting it turned back on. This problem has occurred intermittently in the past and I have been able to get it back on by closing the laptop and then reopening it and all is well. I was

  • Black Bars on Imported Frames

    Hi, I have a QT movie (720 X 480) that I exported some still frames using the Movie to Picture option with compression set to None. When I import the stills into iMovie, the pictures are squeezed vertically with black bars at the top and bottom. I ha

  • Function to call spry textfield validation

    Hi every body. I've a question for you. I'm using a filed spry text field validation. It works perfectly when y press submit, but I need to do this: I put some text in a textfield using PHP, the validation is only maked when I click the text field, o