+ Reply to Thread
Results 1 to 10 of 10
Like Tree3Likes
  • 1 Post By onyxmoron
  • 1 Post By xPlozion
  • 1 Post By Dmitry_airhacks

Thread: Does testing a website through localhost use up bandwidth?

  1. #1
    onyxmoron is offline x10Hosting Member onyxmoron is an unknown quantity at this point
    Join Date
    Oct 2008
    Posts
    37

    Does testing a website through localhost use up bandwidth?

    I have apache on my computer to test websites. When I access something through localhost, does it use up bandwidth from the ISP, or does it not even go through my ISP at all?
    dinomirt96 likes this.

  2. #2
    Agenator is offline x10 Lieutenant Agenator is an unknown quantity at this point
    Join Date
    Sep 2007
    Posts
    341

    Re: Does testing a website through localhost use up bandwidth?

    I dont know much about this, but I suppose an easy test to see if it does is to unplug your internet cable from the back of your computer and see if you can still access localhost. Chances are that you will be able to since its hosted on your computer, but again I'm no expert... But in the long run, you really aren't eating up that much bandwidth by accessing localhost (or are you?)

  3. #3
    Livewire's Avatar
    Livewire is offline Abuse Compliance Officer Livewire is a glorious beacon of lightLivewire is a glorious beacon of light
    Join Date
    Jun 2005
    Location
    Behind a keyboard.
    Posts
    8,995

    Re: Does testing a website through localhost use up bandwidth?

    Quote Originally Posted by Agenator View Post
    I dont know much about this, but I suppose an easy test to see if it does is to unplug your internet cable from the back of your computer and see if you can still access localhost. Chances are that you will be able to since its hosted on your computer, but again I'm no expert... But in the long run, you really aren't eating up that much bandwidth by accessing localhost (or are you?)
    Doesn't require internet access to go to Localhost, so no, it doesn't use any of your ISP's bandwidth.


    Has something to do with your system knowing localhost == itself, so it never tries to go to the internet, it just hits your pc up for the data.


    TOS breakers will be suspended regardless of race, creed, national origin, hair color, or favorite food. Thanks for your understanding!

  4. #4
    tittat's Avatar
    tittat is offline x10 Spammer tittat is an unknown quantity at this point
    Join Date
    Sep 2007
    Location
    Kerala,India
    Posts
    2,479

    Re: Does testing a website through localhost use up bandwidth?

    Anything in your localhost wont be using any Bandwidth.Because as the word says every thing is locally accessible.
    But think about the case that you are having an embedded video in your webpage (say youtube video).In this case it will use your Bandwidth.
    As Agenator said if you have any doubt just unplug your internet Cable and look whats happening.
    PLAY ONLINE GAMES
    WWW.TMONDO.COM PlayFar Flash Games
    Former X10 Forum Senior Moderator(Retired)


  5. #5
    xPlozion's Avatar
    xPlozion is offline x10 Elder xPlozion is an unknown quantity at this point
    Join Date
    Mar 2008
    Location
    Delaware, USA
    Posts
    872

    Re: Does testing a website through localhost use up bandwidth?

    it doesn't leave your network so it doesn't use bandwidth. if you have content on that page that isn't on your server (images, flash videos, etc...), then that will, but a basic html page or one with content on the local server will not use bandwidth.
    verlmirt17 likes this.

  6. #6
    onyxmoron is offline x10Hosting Member onyxmoron is an unknown quantity at this point
    Join Date
    Oct 2008
    Posts
    37

    Re: Does testing a website through localhost use up bandwidth?

    Thanks everybody! I did notice when the modem was turned off I could still access localhost but I wanted to double check that it wasn't going through the modem when it was on.

  7. #7
    Smith6612's Avatar
    Smith6612 is offline <<< wants a Turkey Smith6612 has a spectacular aura about
    Join Date
    Dec 2007
    Location
    Exploded
    Posts
    6,483

    Re: Does testing a website through localhost use up bandwidth?

    Quote Originally Posted by onyxmoron View Post
    Thanks everybody! I did notice when the modem was turned off I could still access localhost but I wanted to double check that it wasn't going through the modem when it was on.
    If it were going through the modem, it would probably be much slower. If not, your modem may also be a router itself, it'll probably redirect itself using NAT back to your PC anyways.

    My signature likes cookies! Do you? :D

  8. #8
    supermix is offline x10Hosting Member supermix is an unknown quantity at this point
    Join Date
    Nov 2008
    Posts
    30

    Re: Does testing a website through localhost use up bandwidth?

    Definitely not. Any URL that is pointed to 127.0.0.1 in your hosts file will also not pass through your modem.

  9. #9
    Dmitry_airhacks is offline x10Hosting Member Dmitry_airhacks is an unknown quantity at this point
    Join Date
    Jun 2008
    Posts
    23

    Re: Does testing a website through localhost use up bandwidth?

    Quote Originally Posted by onyxmoron View Post
    I have apache on my computer to test websites. When I access something through localhost, does it use up bandwidth from the ISP, or does it not even go through my ISP at all?
    If you are unsure about ip then simply run a tracert test


    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.

    C:\Documents and Settings\dima>tracert 127.0.0.1

    Tracing route to localhost [127.0.0.1]
    over a maximum of 30 hops:

    1 <1 ms <1 ms <1 ms localhost [127.0.0.1]

    Trace complete.

    C:\Documents and Settings\dima>tracert google.ca

    Tracing route to google.ca [72.14.207.104]
    over a maximum of 30 hops:

    1 1 ms <1 ms <1 ms DD-WRT [192.168.1.1]
    2 45 ms 43 ms 44 ms lo-100.erx05.tor.packetflow.ca [206.248.154.105]

    3 42 ms 43 ms 43 ms 2120.ae0.bdr02.tor.packetflow.ca [69.196.136.66]

    4 44 ms 43 ms 43 ms gw-google.torontointernetxchange.net [198.32.245
    .6]
    5 44 ms 43 ms 43 ms 216.239.47.112
    6 58 ms 44 ms 43 ms 72.14.236.183
    7 54 ms 45 ms 44 ms 72.14.236.134
    8 46 ms 44 ms 43 ms eh-in-f104.google.com [72.14.207.104]

    Trace complete.

    C:\Documents and Settings\dima>
    If you see many lines like on the second example then it's probably using your internet connection.
    karimirt47 likes this.
    http://airhacks.exofire.net - My website about Modding of Airlink routers.


  10. #10
    onyxmoron is offline x10Hosting Member onyxmoron is an unknown quantity at this point
    Join Date
    Oct 2008
    Posts
    37

    Re: Does testing a website through localhost use up bandwidth?

    Quote Originally Posted by Dmitry_airhacks View Post
    If you are unsure about ip then simply run a tracert test
    Oh I didn't even think of that :laugh:

    C:\>tracert 127.0.0.1

    Tracing route to localhost [127.0.0.1]
    over a maximum of 30 hops:

    1 <1 ms <1 ms <1 ms localhost [127.0.0.1]

    Trace complete.
    Now I can reload 700 times to check something without feeling guilty.

    Thanks to everyone for not making me feel like a moron for asking a noobish question like this.

+ Reply to Thread

Similar Threads

  1. I'll design graphics for your website
    By Scott B in forum The Marketplace
    Replies: 19
    Last Post: 04-01-2009, 11:13 AM
  2. BandWidth Explained
    By teclanka in forum Tutorials
    Replies: 9
    Last Post: 10-13-2008, 07:47 AM
  3. Advertise your website!
    By Scott B in forum The Marketplace
    Replies: 10
    Last Post: 02-29-2008, 08:43 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers