Help all my visiters have this 172.16.10.1 ip

Discussion in 'Site & Server Administration' started by scriptreseller, Jul 6, 2007.

  1. #1
    Hi

    i moved my site to a new server and there where a few problems installing the database . i think its all done now but i have just seen that all my tvisiters have the ip 172.16.10.1 even me.

    i did a look up onit and it belongs to Internet Assigned Numbers Authority any help on why this is happening would be gr8 as i dont have a clue.


    also what problems wil come form this if any
     
    scriptreseller, Jul 6, 2007 IP
  2. ecentricNick

    ecentricNick Peon

    Messages:
    351
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Have you checked if that is your ip address?

    Maybe you are the only visitor so far? Quite likely if you've just moved server?
     
    ecentricNick, Jul 6, 2007 IP
  3. scriptreseller

    scriptreseller Active Member

    Messages:
    323
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    58
    #3
    lol no thats not my ip that ip belongs to Internet Assigned Numbers Authority and i have had over 500 visiters and 50 new sign ups its defo not just me
     
    scriptreseller, Jul 6, 2007 IP
  4. CallMeDPit

    CallMeDPit Member

    Messages:
    16
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #4
    Did you ever figure this out? I'm having the same issue.
     
    CallMeDPit, Mar 17, 2008 IP
  5. Agent_Dweeb

    Agent_Dweeb Peon

    Messages:
    5,607
    Likes Received:
    384
    Best Answers:
    0
    Trophy Points:
    0
  6. boltok

    boltok Active Member

    Messages:
    257
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    78
    #6
    That is a private IP address. That is, it can't be routed on the Internet and must be on the same network as your server. How and where are you seeing these IPs? Maybe you're logging the web server's own IP? Maybe your'e behind a proxy that has this IP?
     
    boltok, Mar 17, 2008 IP
  7. fosforito

    fosforito Peon

    Messages:
    234
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Where did you got that address from?
    I mean, where are you seeing that all your visitors come from that address?
     
    fosforito, Mar 18, 2008 IP
  8. Ladadadada

    Ladadadada Peon

    Messages:
    382
    Likes Received:
    36
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Most probably your new host has a load balancer or proxy server in front of your web server and that is its IP address.

    Try looking at HTTP_X_FORWARDED_FOR in the headers of a request and you will probably find the original IP address.

    You can do this in PHP with
    echo("Your IP address is ".$_SERVER['X_FORWARDED_FOR']." !<br />\n";
    PHP:
    (Of course, this code contains an XSS vulnerability so you will not want to echo it to the page like that. Stick it in a file on your server or in the database or something... but validate it first.)

    There's a list of assigned IP address ranges here: http://www.iana.org/assignments/ipv4-address-space

    Your IP address range has a note:
    172/8 Administered by ARIN 1993-05 whois.arin.net LEGACY [7]
    [7] 172.16.0.0/12 reserved for Private-Use Networks [RFC1918]
     
    Ladadadada, Mar 18, 2008 IP