Thomas’ Developer Blog

April 4, 2008

Setting up web server behind router (WRT54G2)

Setting up a server behind a router really isn’t that difficult, in theory, but in practice it can be a pain in the but.  It took me about 1 1/2 to get it up and running.  I’m going to go over the basics with you and share some of the biggest issues I had with setting up everything.

First off it’s important to note that I am using a WRT54G2 router.  I have a small apartment so I really didnt need much in the line of wireless, this setup was more just to configure the server correctly without using a cross over cable, which I will explain that method later on in another blog.

To begin make sure you have done the following:

– Have the router setup and working with internet connectivity.
– Have your server pre-configured to host your site. (If not search google, or view my next post for a brief)

Alright now that everything is working just fine by itself and you had the server working fine before you had the router setup, it’s time to go into some basic configuration.

First thing first is to go into the modem setup (you may have to do a direct connect to access this).  The IP may depend on your ISP.  In my case it was 192.168.1.254 for a DSL Westell modem.  If not go into CMD (command prompt) and type ipconfig to check your gateway IP, and type that into the browser.  Next, go into expert or advance setup and check to make sure you have no NAT settings in the way.

This is important since your router will control everything!  As far as IP Passthrough, you shouldn’t need to set it up to the server, but if you did before just leave it.  I left mine alone.  Once done go back and jot down your DNS information, both primary and secondary.

Next after making sure nothing is blocking your connection in the modem you can rig back up your network and make sure everything is working fine again, and you can connect to the internet.

Now in order to setup your server we need a static IP.  This is no big deal since you should already have a static IP on your ISP connection.  It’s basically the same theory, you need a static IP on your server (local machine on your network).  To do this some routers allow you to just go in and configure this.  In the WRT54G2 linksys router it doesnt work that way.  You have to just go ahead and manually configure it.  Which is actually a lot easier.

For more help on setting up the static IP for your router visit my other post:
https://sanzon.wordpress.com/2008/04/09/wrt54g2-static-ip-configuration-and-reconfiguring-router/

Now, simply go onto the server and go into your TCP/IP settings, if in XP under network connections, and properties for your connection.  If under Vista you’ll have to go into network sharing center, and click manage network connections and follow the same steps as XP.

(NOTE: If you already have a static IP Skip this step!!! Or write down all information shown before continuing!)

Now in properties you’re going to go ahead and manually configure your IP.  You’ll have to check with your router to figure out which IP to use.  In our case of the linksys router, we’ll use 192.168.0.99

You can use anything from 2-99 technically, you can even go higher, but for now just use 99.  0.1 is your router so that is already in use.  I use 99 to make it easier in case you add more devices to the network later that required static IPs.  If you are using a WRT54G you can set it to 192.168.1.11 since .0.99 will not work on a WRT54G.

For subnet mask type 255.255.255.0 which is almost always the case.

Default gateway should be your gateway for the router.  If you’re not sure just go into command prompt and check IP configure to get your gateway.  Same step as for the modem setup!

Now for your DNS you’ll use the DNS information you gathered from from your modem configuration.

After you type in those DNS addresses you can imply click OK.  At this point you should be able to connect just fine to the internet.  If not you can restart and see if you can connect again.  If nothing works, you’ll have to trouble shoot your modem/router connection.  Reference your router manual, or modem manual.  You may have to connect your router tech support or as I suggest use the online forum.  You can attempt to call your ISP, but trust me they won’t help! lol I used to work as a cable internet tech, I know this all to well. (Yes I’m well aware I’m using DSL now!)

Anyway assuming you have a connection setup and everything is fine working, now it’s time to move onto the fun part!

NAT and Port forwarding are methods used to send request from certain ports from the router to a local machine.  In our case the local machine is the server, and our port is 80 which is used for HTTP.  You may have to enable 8080 potentially, but try not to! (You’ll understand in a while)

Now before we configure NAT/Port Forwarding, we need to make sure that your router security doesn’t block anonymous connections.  Also make sure you don’t have remote access enabled!!!  ALWAYS HAVE THIS DISABLED FOR SECURITY REASONS!  If you are really wanting to do this then set it to port 8080!  This is why I told you to avoid using 8080 before, just in the case you really get annal or have blown a gasket and feel it’s a good idea to enable remote router access.  Ok you may have a legit reason, so if you do I appoligize, but you really should avoid using this if at all possible.

Now that I’m done stressing the importance of security, it’s time to move onto actually configuring NAT/Port forwarding.  In our case it’s called port forwarding.  Simply open Applications and Gaming under your router setup, and click port range forwarding.

Name the application HTTP1 or Web, or w/e you want.  It’s just for a reference.  Next enter 80 for to and from ports since we only want 80 to be allowed through.  I just used both for TCP and UDP connections, but you should really just use TCP is possible.  I’ll just say to use both to help trouble shoot.

For IP address, type in your static IP you setup on your server.  If you’re not sure just reverse the steps for using IP configure and find the local IP.  Now next is to simply enable it!  For NAT it’s the same steps, except there is only one port to choose.  Otherwise it’s pretty much the exact same.

After you enable it by clicking the checkbox click save, and your router should complete the setup.

At this point you should be good to go!

Go onto another computer on your network and try to access your domain or public IP, and see if you connect.  If not, try to connect using the machine’s local IP.

If you can connect then… skip this next paragraph.

If you can’t connect to a local IP, this was my lame issue.  You probably have a firewall.  So yes, while your firewall maybe disabled, also make sure you have proper access.  This shouldn’t be a problem if your server was already working before!  But I was setting up a new server in the process so I had some issues.

Ok, now to finalize your check I suggest going to the following site to check port 80 for access:

http://www.canyouseeme.org/

Just type in 80 and see if it works.  You can check all your ports technically.  Great little site!

Now after you check port 80 go to another site like:

http://www.google.com/language_tools

Now even though we don’t want to translate your page, you can atleast tell if someone from the outside world can access your site.  In the translation option choose english to japanese or w/e you want!  Leave as is to not translate it.

It should go through just fine!  If not, you have a server issue with IIS or w/e server management program you use.  Otherwise everything is working fine and you’re good to go!

In case you had some issues here are some ways to trouble shoot:

– remove ALL firewalls
– close any antivirus
– You can try enabling IP passthrough on the modem to the server at first then go back and try again with the router
– You can use IP passthrough to the router IP, this normally isn’t really useful, but if you have issues accessing your modem setup from behind the router, this trick will allow you to access it.
– Otherwise, check google/forums.  Worse comes to worse call up tech support for your router, then your ISP.  If all else fails just play around and in the process learn a lot of new stuff!  Or be the lazy business owner type and pay someone.

Anyway I hope this helps.  My next post will be for setting up a cross-over cable connection to configure two units on the same internet connection without a router!  And host your site at the same time!  Well good luck and happy coding!

  In our case we are using HTTP port 80.  Since you have already setup your server stand alone, there is no reason to check to make sure 80 isn’t blocked by your ISP.

In your NAT/Port forwarding section, port forwarding in the linksys WRT54G2

Now when going into NAT/Port forwarding on your router you will have to

90 Comments »

  1. Thank you for the info. I do want to add that if you try to point your browser to the internet IP address (address provided by ISP) within your firewall, it does not find the site. http://canyouseeme.org is a good resource. Otherwise, you’ll have to use an external connection to hit the web server for additional confirmation of your web server connectivity. I used my iPhone without my WiFi connection to do the test.

    Comment by Rich — August 15, 2008 @ 2:31 pm

  2. Hi, I´ve bougth a WRT54G2 router and I can´t make it work. I have a Toshiba Satellite Pro laptop with a built-in wireless card, which runs windows vista. It works perfect when wired to the modem.
    But every time i tried to install it the computer didn’t recognize it. Error 322 is launched and I don’t know what to do.
    Can you tell me where to begin?
    Thanks in advance

    Comment by Eufederico — August 20, 2008 @ 6:03 pm

  3. If your router is not working correctly, you can try installing the CD on another computer. I used my desktop to configure mine.

    You may need to download an update for vista if it’s having problems. Also with vista you can now right click on the steup.exe file on the CD and run in compatiabliity mode. Set it to XP service pack 2 and see if that works.

    I know some people sometimes have issues with linksys when connecting to DSL. You may need to go into your modem internal settings to configure it.

    Worse comes to worse try exchanging the router for another one at the place you bought it if you continue to have issues.

    Comment by sanzon — August 21, 2008 @ 6:38 am

  4. Hi,

    I am currently having problems with my linksys (WRT54G2) router. I am using bit commet torrent download and it said that my i should check my firewall NAT configuration. Where and how can I setup my linksys router(WRT54G2) so that I can do my usual downloads using bit commet?

    Thanks

    Comment by Paolo — August 31, 2008 @ 5:46 am

  5. If your torrent is not working due to a firewall, you can try going into your firewall settings and allow the port that bittorrent uses to bypass the firewall.

    If I get the chance I’ll go more into NAT configuration and other firewall settings on a later post, but that won’t be until sometime next week, asuming power is back up from the storm.

    Comment by sanzon — September 2, 2008 @ 4:02 pm

  6. Thank you very much Sir ,You simply rock

    Comment by hari — March 15, 2009 @ 10:41 am

  7. Hi

    I have got a static IP and router has been configured.

    Should I mention the static IP in the Server?

    when I access the static IP from IE, its asking user ID and password. and if given, its showing router page .

    1. How to access the website from the webserver

    I am using Windows server 2003.

    Thanks
    Pugal
    Chennai

    Comment by Pugal — November 18, 2009 @ 11:13 am

  8. hey my friend !!! thx for the info, i was trying different ways to do this, but you clear my path, thx a lot man

    Comment by camilo — September 12, 2010 @ 4:39 am

  9. hey there,i want to ask a question……..how can we access a server through router??? without having any ip route ??

    Comment by amu — July 9, 2011 @ 7:19 am

  10. I actually Think posting, “Setting up web server behind router
    (WRT54G2) Thomas Developer Blog” ended up being really good!
    I actuallycouldn’t see eye to eye with u more! Finally appears like Iuncovered a web site really worth reading. Thanks for the post, Normand

    Comment by http://tinyurl.com/hfccpack44046 — February 7, 2013 @ 6:11 am

  11. Great choice of subject stock investment online.

    Your weblog Setting up web server behind router (WRT54G2) | Thomas’ Developer Blog has inspired me sufficiently to want to write more myself. Thanks!

    Comment by Patricia — April 10, 2013 @ 5:15 am

  12. Howdy! Do you use Twitter? I’d like to follow you if that would be ok. I’m definitely enjoying your blog and
    look forward to new posts.

    Comment by Kim — April 19, 2013 @ 1:00 am

  13. With havin so much content and articles do you ever run into
    any problems of plagorism or copyright violation?
    My website has a lot of unique content I’ve either written myself or outsourced but it seems a lot of it is popping it up all over the internet without my agreement. Do you know any techniques to help prevent content from being stolen? I’d definitely appreciate it.

    Comment by Justhost coupon Justhost coupon — April 26, 2013 @ 5:44 am

  14. What’s up to every one, the contents existing at this web site are in fact amazing for people knowledge, well, keep up the good work fellows.

    Comment by blogs.nls.uk — May 4, 2013 @ 11:26 am

  15. Hey would you mind letting me know which hosting company you’re using? I’ve loaded your blog in 3 completely different internet browsers and
    I must say this blog loads a lot quicker then most.
    Can you suggest a good web hosting provider at a fair price?
    Thanks, I appreciate it!

    Comment by Nadine — May 10, 2013 @ 6:38 pm

  16. A report last year by the neonatal nurse job uk U.
    Sieger knew that leaving her husband after 24 years, decided to shut neonatal nurse job
    uk down their brains and they do not agree. That is the current national tide of protests which began in Soweto and have spread to
    other urban centers. Kufanya utafiti wa misitu.

    Comment by what do you need to become a neonatal nurse — May 23, 2013 @ 7:36 pm

  17. There, the financial team, headed by Todd neonatal nurse practitioner programs colorado Lindsey, begins
    the class, the human resource development institutes for building Entrepreneurship Development Facilitators EDF s.
    The fungus was also found in 41 other patients, but there are also
    plenty of opportunities for a practicing chartered accountant to enhance his reputation, claiming India’s first tri-series triumph in Australia.

    Comment by neonatal nurse practitioner — May 23, 2013 @ 11:33 pm

  18. Certified Nursing Assistant or a Paralegal was very popular in the latter part of the curriculum was that
    nursing was a profession. There will be lots of information given out that will pertain to the job medical
    assistant certification online exam such as scheduling, taking
    and receiving phone calls, mail them articles they may like,
    and send little gifts.

    Comment by registeredmedicalassistant.info — June 30, 2013 @ 4:36 pm

  19. Hi there, You’ve done an excellent job. I’ll certainly
    digg it and personally recommend to my friends. I am confident they’ll be benefited from this web site.

    Comment by InMotion Coupon — July 23, 2013 @ 11:13 am

  20. “Laser hair removal works by a principle called Selective Photothermolysis. Laser hair removal techniques have been refined through years of research and experiments to make it the most effective way of hair removal. Then, a technician will make sure that there are no lotions, cosmetics or creams on the area to be treated.

    Comment by http://jmb.tw/ — August 10, 2013 @ 3:44 am

  21. Hi are using WordPress for your site platform? I’m new to
    the blog world but I’m trying to get started and set up my own.

    Do you need any coding knowledge to make your own blog?
    Any help would be greatly appreciated!

    Comment by phone ottawa — November 9, 2013 @ 6:42 am

  22. Νo matter if some one searches for hіs vitаl thing, thereforе he/she needs to be avaіlable that in detail,
    thus that thing is maintained over here.

    Comment by Yucca Valley Realty — December 14, 2013 @ 9:28 am

  23. I know anything you write is technically copyrighted, but I’m not sure how you could prove that it was your original material..

    Comment by ckibwwej@gmail.com — May 24, 2014 @ 2:24 am

  24. Wow, that’s whatt ӏ was searching for, what a informɑtion! existing Һere at tjis
    webpage, tɦanks admin of tɦiѕ web site.

    Comment by blogger theme free — May 31, 2014 @ 6:29 pm

  25. I have a blog made with Blogger and it has Blogger logos at the top.. I’ve seen Blogger blogs without them, and it makes them a lot cooler..

    Comment by eveywdlxbv@gmail.com — June 3, 2014 @ 3:23 pm

  26. It’s a shame you don’t have a donate button! I’d most certainly
    donate to this excellent blog! I suppose for now i’ll settle for
    bookmarking and adding your RSS feed to my Google account.
    I look forward to fresh updates and will share this blog with my Facebook group.
    Chat soon!

    Comment by how to configure best best docsis 3 buy cable modem for comcast — June 15, 2014 @ 3:23 pm

  27. I’m trying to start up a small blog, primarily to hold a few short stories I’ve written and get feedback, but also for various other blog-type activities. This won’t do me any good if I can’t get my words where people can read them.. . Blogspot is preferred, but anything allowing advertising would be fine. I might want to monetise eventually, and wordpress seems to discourage that, as I understand their terms of use..

    Comment by wvfuasflezo@gmail.com — June 21, 2014 @ 10:17 pm

  28. Is there a website that makes it easy to follow blogs and podcasts? I don’t have an iPod, does that matter?.

    Comment by sdskkgutbar@gmail.com — June 24, 2014 @ 10:38 pm

  29. I use firefox and some nights at 12:00 exactly or 12:30 exactly, firefox stops working and does not load a page. The internet connection is perfectly fine though because it says excellent. I am connected to a home router and the signal strength is always excellent. I do not know why this happens at exactly 12:00 or 12:30 on my desktop time but it’s a pain. I’ve tried “ping”ing and everything looks fine..

    Comment by mcdqqvr@gmail.com — June 28, 2014 @ 3:45 am

  30. I’ve found it a little difficult to find computer parts without having to buy whole computers and tearing them apart myself. . I want to start my own business using the computer parts, but where can I get the computer parts (the small parts)? I have tried my local recycle center and no success.. I’m on the verge of contacting an established computer craftsperson and cosigning to their business. . . Anyone with ideas or advice?.

    Comment by ehhqtuhs@gmail.com — June 29, 2014 @ 6:24 am

  31. Hi I’m interested in computer courses to study, today I spoke to someone from one of the unis I was interested in one of the courses were more about designing and the other practical and more technical fixing and support the system. I’m really interested in that. Its called computer enterprising. .. . But I want to apply to more but I get confused as every university calls the computer courses a different name. So i’m unsure if its software , or computer science , IT , IS with business. I think it could be IS with business what I’m interested in but I’m unsure. In some of the modules in the enterprise one has : information systems,computer programming ,data management , software testing , human computer interaction. developing internet applications supporting the systems kinda thing. . Which computer course would include that sort of things? Its one of the practical and technical I want I’m not interested in designing. And can anyone tell me from this which computer courses is more like the one i described is it Information technology with business or something else? And is Computer science based on designing the applications? and not the more practical.

    Comment by wtiudectlca@gmail.com — July 1, 2014 @ 3:15 am

  32. Where or what would I have to do? And what’s the cost?.

    Comment by barpxfd@gmail.com — July 2, 2014 @ 1:14 pm

  33. When installing Joomla on my computer in order to update a preexisting site, do I need my client to give me the Host Name, MySQL User Name, MySQL Password, MySQL Database NAme and MySQL Table Prefix? I already have their FTP information, and the Joomla admin control panel login information..

    Comment by xoyrbxjv@gmail.com — July 2, 2014 @ 1:20 pm

  34. If somebody like Julia Roberts or Natalie Portman had a personal blog where they posted pictures of their vacations or something, would you still take them seriously as actors? Do you think celebrities with personal blogs are less credible and taken less seriously than those who don’t? Furthermore, would you visit their blogs to see what they are up to?.

    Comment by wtiudectlca@gmail.com — July 3, 2014 @ 3:02 am

  35. Hi,. I have a question that I hope will have a simple answer. I have a wordpress blog and right now my side navigation menu is on the right side. I would like for the menu to be on the left side. Can someone please tell me how I would go about doing this, in simple terms, please? . . Or point me in the direction of a resource that tells me how to do it?. . Thanks so much ya’ll!.

    Comment by nwsvrzl@gmail.com — July 7, 2014 @ 10:09 am

  36. I’m looking to start a food blog and i would like for my friends to be able to log on and comment through their facebook accounts so they don’t need to make an account on the chosen blogging site to comment. What are some FREE blogging sites that allow you to use your facebook to comment?.

    Comment by wtiudectlca@gmail.com — July 9, 2014 @ 12:16 pm

  37. I have a blog made with Blogger and it has Blogger logos at the top.. I’ve seen Blogger blogs without them, and it makes them a lot cooler..

    Comment by xoyrbxjv@gmail.com — July 13, 2014 @ 3:43 pm

  38. I always used to think that, while, the first word meant a person who blogs, the second word stood for a blog hosting site! Now, I am utterly confused because my uncle tells me, that both of them are the same hosting site for those who blog with Google using blogger/blogspot! Can somebody with authentic knowledge please help me resolve my doubt? Please take my question seriously and “I earnestly request” Y!A members to respond with discreet academic answers, following community guidelines..

    Comment by xoyrbxjv@gmail.com — July 16, 2014 @ 1:42 pm

  39. Excellent post. Keep writing such kind of information on your site.
    Im really impressed by it.
    Hello there, You have done an incredible job.
    I will certainly digg it and in my opinion recommend to my friends.
    I am sure they will be benefited from this website.

    Comment by how to configure best best dsl cable modem for xbox — July 17, 2014 @ 6:34 am

  40. It is not my first time to visit this site, i am browsing this web
    site dailly and obtain pleasant facts from here all the
    time.

    Comment by how to configure best cable best best dsl modem for xbox — July 18, 2014 @ 2:32 pm

  41. I would like to change my blogger archive frequency from 1 month to longer, like 3 months. How do I do this?.

    Comment by lmblbtz@gmail.com — July 18, 2014 @ 4:04 pm

  42. Hi there everybody, here every one is sharing these kinds of experience, therefore it’s good to read this blog, and I
    used to go to see this webpage daily.

    Comment by Junko — July 22, 2014 @ 8:47 am

  43. First of all I want to say excellent blog! I had a quick question that I’d like
    to ask if you do not mind. I was curious to find out
    how you center yourself and clear your head before writing.
    I’ve had a tough time clearing my thoughts in getting
    my ideas out there. I do take pleasure in writing however it just seems like the first 10 to 15 minutes tend to be wasted simply just trying to
    figure out how to begin. Any suggestions or tips? Many thanks!

    Comment by how to configure best best dsl cable modem for xbox — July 22, 2014 @ 5:09 pm

  44. What are the core or basic lessons taught Writing classes? One of the first things I learned about was Freytags Pyramid. I was told that isn’t an across the board learning device. So what is? I’m really curious. In poetry I was taught, ‘if it means too many things to too many people it misses it’s mark’. I have since learned that good writing tends to bring out different reactions in different people and different interpretations. How can learning about creative writing (creativity is so individualized) be standardized?.

    Comment by jrmxwgfwuza@gmail.com — July 24, 2014 @ 4:01 am

  45. Either double major with journalism and creative writing, or a “good” school in an urban area where I could major in journalism and minor in creative writing? I’m only a sophmore in high school but I know I love to write and I don’t know what I’d enjoy more as an actual career, journalism or creative writing. What would be the best college for someone like me?.

    Comment by jipfjmafk@gmail.com — July 30, 2014 @ 1:33 pm

  46. I have a song [mp3 file] and i want it to automatically play when you enter my wordpress blog. On all the pages if possible but preferably just on the homepage if simpler. I’m new to wordpress so it might be tough but if anyone can confirm it’s possible and perhaps tell me how it would be greatly appreciated.. . Also i installed firebug if that’s any help..

    Comment by ugvqelptoez@gmail.com — August 4, 2014 @ 11:56 pm

  47. Asking questions are genuinely good thing if you are not understanding something entirely,
    but this post presents nice understanding yet.

    Comment by how to configure best best wireless best docsis 3 cable modem — August 5, 2014 @ 5:46 pm

  48. Nice post. I learn something new and challenging on websites
    I stumbleupon everyday. It will always be useful to read
    through articles from other authors and practice something from their
    web sites.

    Comment by how to configure best arris tg862g \/ct arris tg862g\/ct — August 13, 2014 @ 2:31 am

  49. Greetings, I do think your site could be having web browser compatibility
    problems. When I look at your web site in Safari, it looks fine however, if opening in I.E., it’s got some overlapping issues.
    I simply wanted to give you a quick heads up!
    Other than that, great site!

    Comment by how to configure best best wireless modem for comcast cable — August 13, 2014 @ 7:00 am

  50. I think everything said made a lot of sense.
    But, think about this, what if you typed a catchier title?
    I ain’t suggesting your information is not good, but what if you
    added a title that makes people desire more?
    I mean Setting up web server behind router (WRT54G2) | Thomas’ Developer Blog
    is kinda boring. You might peek at Yahoo’s home page and
    watch how they create news titles to get people to open the links.
    You might try adding a video or a pic or two to grab people excited about what you’ve written. In my opinion, it would bring your posts a little bit more interesting.

    Comment by how to configure best buy buying a cable modem for — August 14, 2014 @ 7:19 pm

  51. This post is worth everyone’s attention. Where can I find out more?

    Comment by how to configure best cable best cable modem for gaming — August 15, 2014 @ 8:19 am

  52. I have Joomla and a Joomla template(rt_refraction_j15) installed on my website. But i want the same template and css styling, as a basic HTML template, so i don’t have to use Joomla for editing. Is there an easy way to convert the template to basic HTML/CSS template?.

    Comment by mwjminjmql@gmail.com — August 17, 2014 @ 2:42 am

  53. Magnificent beat ! I wish to apprentice whilst you amend your web site, how can i subscribe for a blog website?
    The account aided me a acceptable deal. I had been tiny bit familiar of this your broadcast offered shiny transparent
    concept

    Comment by how to configure best cable best cable modem for xbox — August 18, 2014 @ 12:21 pm

  54. Whenever I open firefox, it instantly crashes. I’ve tried opening it in safe mode and still it doesn’t work. I even tried changing my homepage. When my friends give me a link in my msn messenger, it opens up firefox and it works fine, I’m able to browse the internet normally. What do I do? I already uninstalled and reinstalled it..

    Comment by rqsmbpsgbfq@gmail.com — August 18, 2014 @ 7:58 pm

  55. We absolutely love your blog and find the majority of your post’s
    to be exactly what I’m looking for. Do you offer guest writers to write content available for you?
    I wouldn’t mind composing a post or elaborating on most of the subjects you write with regards to here.
    Again, awesome weblog!

    Comment by how to configure best cable how to configure modem linux — August 18, 2014 @ 9:04 pm

  56. Excellent post however , I was wondering if you could
    write a litte more on this topic? I’d be very grateful if you could
    elaborate a little bit further. Bless you!

    Comment by how to configure best comcast dsl cable modem for xbox — August 20, 2014 @ 6:02 am

  57. If you desire to improve your familiarity only keep visiting this web site
    and be updated with the most up-to-date news update posted
    here.

    Comment by how to configure best cable modem for comcast internet and — August 22, 2014 @ 6:19 pm

  58. Hello there! This is my first visit to your blog!
    We are a group of volunteers and starting a new initiative in a community in the same niche.

    Your blog provided us useful information to work on. You have done a wonderful job!

    Comment by how to configure beetel adsl modem for bsnl broadband — August 22, 2014 @ 8:39 pm

  59. Hi there, after reading this amazing article i am
    as well glad to share my know-how here with mates.

    Comment by how to configure best fastest cable modem for comcast — August 23, 2014 @ 12:21 am

  60. I just couldn’t go away your website before suggesting
    that I actually enjoyed the standard information a person provide on your visitors?
    Is gonna be again continuously in order to check out
    new posts

    Comment by how to configure best comcast do you i need a modem for — August 28, 2014 @ 7:59 pm

  61. If some one wants to be updated with most up-to-date technologies
    after that he must be pay a quick visit this site and be up to
    date daily.

    Comment by how to configure best cable the the best modem for xbox — August 30, 2014 @ 12:02 am

  62. Hello! Do you use Twitter? I’d like to follow you if that
    would be okay. I’m undoubtedly enjoying your blog and look
    forward to new updates.

    Comment by how to configure best comcast do you why do i need a modem — August 31, 2014 @ 3:45 am

  63. Hello my family member! I want to say that this post is awesome, great
    written and come with approximately all significant infos.
    I’d like to see more posts like this .

    Comment by how to configure best buy buy cable modem for comcast — September 1, 2014 @ 10:19 pm

  64. Hi! I’ve been following your site for some time now and finally got the courage to
    go ahead and give you a shout out from Porter
    Texas! Just wanted to tell you keep up the excellent job!

    Comment by how to configure best buying a wireless cable modem for — September 2, 2014 @ 2:05 pm

  65. It’s actually a nice and helpful piece of info. I’m happy that
    you just shared this helpful info with us. Please keep us informed like this.
    Thanks for sharing.

    Comment by how to configure best best wireless arris cable modem for comcast — September 4, 2014 @ 10:17 am

  66. What’s up friends, how is all, and what you desire
    to say regarding this piece of writing, in my view its genuinely amazing designed for me.

    Comment by how to configure best arris wireless cable modem for — September 4, 2014 @ 10:14 pm

  67. Nice blog here! Also your website loads up very fast!
    What host are you using? Can I get your
    affiliate link to your host? I wish my web site
    loaded up as fast as yours lol

    Comment by how to configure best cable dsl modem for xbox live — September 5, 2014 @ 2:27 am

  68. My spouse and I stumbled over here coming from a different web address and thought I might as well check things out.

    I like what I see so now i’m following you. Look forward to looking at
    your web page for a second time.

    Comment by how to configure best comcast best comcast modem for xbox — September 6, 2014 @ 12:11 am

  69. WOW just what I was searching for. Came here by searching for how to configure best comcast best how to connect xbox 360

    Comment by how to configure best comcast dsl cable modem for xbox — September 6, 2014 @ 1:07 am

  70. I don’t know whether it’s just me or if perhaps everyone else encountering issues with your site.
    It appears as if some of the written text within your posts are running off the screen. Can somebody else please provide feedback and let me know
    if this is happening to them as well? This might be a problem with
    my browser because I’ve had this happen before.
    Kudos

    Comment by how to configure best best cable dsl modem for xbox live — September 7, 2014 @ 3:01 am

  71. Hello there! Do you use Twitter? I’d like to follow you if that would be okay.

    I’m undoubtedly enjoying your blog and look forward to new posts.

    Comment by how to configure best comcast best cable modem for mediacom — September 11, 2014 @ 6:02 am

  72. I think the admin of this web site is really working hard in favor of
    his website, as here every data is quality based data.

    Comment by how to configure best buy buying a cable modem for — September 18, 2014 @ 5:21 pm

  73. Hello just wanted to give you a brief heads up and let you know a few of the pictures aren’t
    loading correctly. I’m not sure why but I think its a linking issue.

    I’ve tried it in two different web browsers and both show the same results.

    Comment by how to configure arris wireless cable modem for — September 19, 2014 @ 11:40 pm

  74. Hello There. I found your blog using msn. This is an extremely well
    written article. I will be sure to bookmark it and come back to read more of your useful information. Thanks for the post.

    I will certainly comeback.

    Comment by how to configure dlink adsl modem for bsnl broadband — September 20, 2014 @ 7:41 am

  75. Fabulous, what a web site it is! This webpage provides valuable information to us, keep it up.

    Comment by how to configure best cable best comcast modem for gaming — September 21, 2014 @ 3:08 pm

  76. Hi there! Do you know if they make any plugins to assist with Search Engine Optimization? I’m trying to get my
    blog to rank for some targeted keywords but I’m not seeing very good results.
    If you know of any please share. Appreciate it!

    Comment by how to configure best buying a cable modem for comcast internet — September 24, 2014 @ 2:21 am

  77. I was wondering if you ever thought of changing the page layout of your site?
    Its very well written; I love what youve got to say.
    But maybe you could a little more in the way of content so people could
    connect with it better. Youve got an awful lot of text for
    only having one or 2 images. Maybe you could space it out better?

    Comment by stingy how to make a man love you — September 25, 2014 @ 5:04 am

  78. Hello! Quick question that’s entirely off topic.
    Do you know how to make your site mobile friendly? My site looks weird when viewing from my iphone4.
    I’m trying to find a theme or plugin that might be able to fix this problem.
    If you have any suggestions, please share. Thanks!

    Comment by how to configure best buy buy modem for comcast internet — September 27, 2014 @ 1:59 am

  79. I am regular visitor, how are you everybody?

    This post posted at this web page is actually
    nice.

    Comment by how to configure best best wireless modem for comcast internet — September 30, 2014 @ 6:17 pm

  80. What’s up friends, good post and good arguments commented here, I am actually enjoying by these.

    Comment by how to configure best best best wireless cable modem — September 30, 2014 @ 10:26 pm

  81. When I initially commented I clicked the “Notify me when new comments are added” checkbox and now each time a comment is added I get four emails with
    the same comment. Is there any way you can remove people from that service?
    Thanks!

    Comment by how to configure best comcast do you do you need a modem — October 1, 2014 @ 7:15 am

  82. I’m really enjoying the theme/design of your website.
    Do you ever run into any browser compatibility issues?

    A number of my blog audience have complained about my blog not operating
    correctly in Explorer but looks great in Safari.
    Do you have any solutions to help fix this problem?

    Comment by rovine barcelona vs real madrid 2014 — October 14, 2014 @ 11:05 pm

  83. GREAT AND AWESOME

    Comment by Tisha Farinas — April 1, 2015 @ 7:32 pm

  84. matching hair

    Setting up web server behind router (WRT54G2) | Thomas’ Developer Blog

    Trackback by matching hair — September 3, 2015 @ 9:58 pm

  85. synthetic lace wig

    Setting up web server behind router (WRT54G2) | Thomas’ Developer Blog

    Trackback by synthetic lace wig — September 4, 2015 @ 11:24 pm

  86. Hey, you used to write wonderful, but the last several posts have been kinda boring… I miss your tremendous writings. Past several posts are just a bit out of track! come on!

    Comment by one dollar seo — September 9, 2015 @ 7:16 pm

  87. modern furniture washington il

    Setting up web server behind router (WRT54G2) | Thomas’ Developer Blog

    Trackback by modern furniture washington il — January 13, 2016 @ 12:51 am

  88. I am planning on being a creative writing teacher for my Senior project. The problem is, I can’t think of a grade that kids start creative writing. I would rather deal with younger kids than older ones because in the end I want to give them a book of the classes collected works. I was thinking 3rd Grade, but I can’t remember when I started creative writing. Any and all help would be much appreciated. Thank you. :).

    Comment by technology blog — January 18, 2016 @ 10:49 pm

  89. It’s really a nice and helpful piece of info. I’m happy
    that you simply shared this helpful info with us. Please stay us informed like
    this. Thanks for sharing.

    Comment by tarquinio il superbo biografia de pablo neruda em — May 23, 2016 @ 6:37 am

  90. Usamos repuestos de electrodomésticos de las primeras marcas en todas sus reparaciones a domicilio. Más de 18 años de experiencia nos avalan como una de las mejores empresas de servicio técnico y asistencia técnica de lavadoras Bosch en Altea aunque no somos el servicio técnico oficial de la marca Bosch. Más de 18 años de experiencia nos avalan como una de las mejores empresas de servicio técnico y asistencia técnica de lavadoras Bosch en Muros aunque no somos el servicio técnico oficial de la marca Bosch.

    Comment by Ignacia Manire — July 20, 2016 @ 3:25 am


RSS feed for comments on this post. TrackBack URI

Leave a comment

Blog at WordPress.com.