Dentro de tu página web, por ejemplo index.asp o index.php puedes acceder a variables el sistema:
response.write "<br>Host : " & Request.ServerVariables("HTTP_X_FIREWALL_HOST")
response.write "<br>IP : " & Request.ServerVariables("HTTP_X_FIREWALL_IP")
response.write "<br>País : " & Request.ServerVariables("HTTP_X_FIREWALL_COUNTRY")
echo "<br>Host : " . $_SERVER["HTTP_X_FIREWALL_HOST"];
echo "<br>IP : " .$_SERVER["HTTP_X_FIREWALL_IP"];
echo "<br>País : " .$_SERVER["HTTP_X_FIREWALL_COUNTRY"];
Debes activar el "Modulo IIS" para tener acceso a estas variables del sistema.