Reputation: 14204
I have an ASP.NET 2.0 application that I am deploying to an IIS 6.0 web server. My ASP.NET application is being deployed as a virtual directory. Currently, this ASP.NET application is publicly visible on the internet. However, I need the ASP.NET application to run only inside of my corporate firewall.
How do I configure my application so that individuals outside of my company canNOT access/use the web application?
Thank you,
Upvotes: 2
Views: 833
Reputation: 63244
I suggest,
Upvotes: 1
Reputation: 71
I would do one of the following:
if your app is standalone 1: create separate site for your application with DNS host name that is internal
if not 2: apply security to your virtual directory (windows auth can be seamless)
Upvotes: 1
Reputation: 10395
Probably a question best suited for ServerFault but you will need to have an IP address that is only internally viewable from the corporate firewall. You probably have an IT department so ask them for a internal only IP address and then assign the IP address they give you in IIS.
Upvotes: 0