Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any known way for asp.net to check if it runs on Intranet?

Edit

I need to show in my asp.net web page that the user runs in an intranet environment.

http://mysite/default.aspx

How can Default.aspx.cs tell me if he's running on intranet environment or in internet environment ?

share|improve this question
Please be more specific. – SLaks Dec 4 '11 at 15:02
As SLaks said; we need more info. What do you mean? What problem are you actually trying to solve here? – Andrew Barber Dec 4 '11 at 15:04
@AndrewBarber Edited. – Royi Namir Dec 4 '11 at 15:05

1 Answer

up vote 1 down vote accepted

You can check when someone ask your server if the IP is in a private IP class : 10.0.0.0/8 172.16.0.0/12 or 192.168.0.0/16. You can also add params in your configuration for intranet deployement (if you have multiple deployement).

share|improve this answer
The Ip of the server ( in my intranet ) is : 192.168.100.33 , does it fits the /16 thing ? – Royi Namir Dec 4 '11 at 15:06
192.168.0.0/16 correspond 192.168.0.0 to 192.168.255.255 . Your can be expose to internet if a router NAT a port to your server : you have this configuration if your server respond to intranet and internet, in this case you compare the IP of client with private class. (this answer is not valable if you use reverse proxy) – Julien Dec 4 '11 at 15:08
so /16 is .8.8 ? Can you reference me a to google for learn it ? thanks a lot. – Royi Namir Dec 4 '11 at 15:10
@RoyiNamir: en.wikipedia.org/wiki/Subnetwork – SLaks Dec 4 '11 at 15:10
@RoyiNamir In complements of SLaks link you have : en.wikipedia.org/wiki/Private_network – Julien Dec 4 '11 at 15:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.