Hosting ASP.Net on the Internet

  • Thread starter Thread starter Linno Hak
  • Start date Start date
L

Linno Hak

Hi all,

I've written an ASP.NET application that is running fine on the Intranet.
I'd like to make this application accessible via the Internet.

Can anyone please recommend any good book or guide on how I can set
up/configure my ASP.Net application to be accessed on the Internet?.

Thanks
LH
 
Linno said:
Hi all,

I've written an ASP.NET application that is running fine on the
Intranet. I'd like to make this application accessible via the
Internet.

Can anyone please recommend any good book or guide on how I can set
up/configure my ASP.Net application to be accessed on the Internet?.

Thanks
LH

As you app is already working fine, you don't need adjustments on the ASP.Net side.
To have this site available publicly, you need to do some network things,
such as:
- get an internet IP address (no local address like 10.0.*.*)
- attach it to a hostname
- change firewall config to allow http access to your server.
- you might want to move your server to a "demilitarized zone" (DMZ)
to protect your internal network.
Ask your internal network manager or your provider for details.

Hans Kesting
 
Back
Top