Announcement

Collapse
No announcement yet.

external ip address

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    external ip address

    Hi,
    I noticed that in the /abhs system information page, that Hs displays the external ip address. Does Hs have a script function that will get that info ? I want to be able to send myself an email with the ip address in it. But I dont want to go off to an external site to get the info.
    Thanks
    Stuart

    #2
    For HS1 you can get the HTTP header with

    sRaw = request.ServerVariables("ALL_RAW")

    The Referer: and Host: tags are your most likely pieces of info of interest.

    I don't know what server support is provided in HS2

    Comment


      #3
      Michael,
      Thanks, will look into it, looks like Hs2 does have this support
      Stuart


      PATH_INFO
      REMOTE_ADDR
      REMOTE_HOST
      HTTP_SERVER_SOFTWARE
      ALL_RAW
      HTTP_SERVER_PROTOCOL
      HTTP_USER_AGENT
      AUTH_USER

      Comment

      Working...
      X