jump to navigation

Local DNS Cache for Faster Browsing August 2, 2006

Posted by Carthik in administration, guides, packages, ubuntu.
trackback

A DNS server resolves domain names into IP addresses. So when you request “google.com” for example, the DNS server finds out the address for the domain, and sends your request the right way.

You can run a DNS cache on your computer. This will speed up the process of looking up domain names when browsing. The difference is about 30-60 ms for me. Multiply that difference by the number of websites you visit a day for an approximate estimate of the speed improvement. Of course, all this would be worth it if it weren’t for the fact that setting this up is way too easy.

The following instructions are for someone with a cable (broadband) internet connection, where the computer gets it’s local IP address using DHCP from the router in your house/office:

The package we will be using for caching nameserver lookups is called dnsmasq. So first, install it using:
$sudo apt-get install dnsmasq
(If you can’t find then, then you probably haven’t added the Universe repository to your list of repositories.)

No uncomment the following line (that is edit the line to NOT have a “#” in the beginning) in the file /etc/dnsmasq.conf:
listen-address=127.0.0.1

Now edit /etc/dhcp3/dhclient.conf and make sure the section below exactly like this, especially the line that says “prepend domain-name-servers 127.0.0.1;”

#supersede domain-name "fugue.com home.vix.com";
prepend domain-name-servers 127.0.0.1;
request subnet-mask, broadcast-address, time-offset, routers,
domain-name, domain-name-servers, host-name,
netbios-name-servers, netbios-scope;

Explanation for the above change: In the normal case, when you get a new dhcp lease, the dhcp3 client (tool) on your computer gets a new lease, and updates the /etc/resolv.conf file on your computer with the right values for the DNS servers to use (usually some machine in the network of your hosting provider). Adding the “prepend” option as we did above ensures that “127.0.0.1” will appear on the top of the list of DNS servers. That magic number refers to your own computer. So in the future, whenever your computer needs to resolve a domain name, it will forward that request to dnsmasq (which is running at 127.0.0.1 – your computer). If the details for the domain name are already in you cache, well and good, dnsmasq will serve it up and make the process real fast. If it is not in the cache, then dnsmasq will look at the /etc/resolv.conf file and use the nameservers listed below the “127.0.0.1”. I hope that explains things.

Now open the file /etc/resolv.conf in your text editor. It probably looks like:

search yourisp.com
nameserver 217.54.170.023
nameserver 217.54.170.024
nameserver 217.54.170.026

The 127.0.0.1 is missing right now since you haven’t renewed your lease after you edited the /etc/dhcp3/dhclient.conf file. So, let us add that in manually this one time. After you do, your /etc/resolv.conf file will look like the following:

search yourisp.com
nameserver 127.0.0.1
nameserver 217.54.170.023
nameserver 217.54.170.024
nameserver 217.54.170.026

Don’t worry if the numbers are different – if they are not, then hey – we must be neighbours 😉

Okay. We are almost done here. All we have to do now is to restart dnsmasq so that the changes we made to the configuration file take effect. You can do that using the command:
$sudo /etc/init.d/dnsmasq restart.

Now you are running a local DNS cache. If you want to measure your speed improvement, type the command:
$dig google.com
You will see something like “;; Query time: 38 msec” there.
Now type the command again, and you should see something like:”;; Query time: 2 msec”

See, the first time, since google.com’s details were not in your cache (you are using it for the first time), the query took 38 ms. The second time, the cache speeds up the lookup. I have been using this for over a month now, and haven’t had a problem.

The following is ONLY for dsl customers
Note: If you have a dsl connection, the following may work:
Basically, the differences are in how the “conf” files are edited and used.
Copy the /etc/resolv.conf file to /etc/resolv.dnsmasq.conf
Then, edit the /etc/dnsmasq.conf file as follows:

# Change this line if you want dns to get its upstream servers from
# somewhere other that /etc/resolv.conf
resolv-file=/etc/resolv.dnsmasq.conf

You also have to uncomment the line that says listen-address=127.0.0.1
Now, edit /etc/resolv.conf to have ONLY the following line in it:
nameserver 127.0.0.1
Next, edit /etc/ppp/peers/dsl-provider and change the line:
usepeerdns to
#usepeerdns
(that is, comment out that line)
The ppp client does not allow you to prepend the 127.0.0.1 entry to your /etc/resolv.conf file. So what we did in the above was to create a copy of your previous resolv.conf for dnsmasq to use for lookups, update the file to use a local cache, and then prevent the ppp client from overwriting the resolv.conf file the next time. Now you can restart the dnsmasq service as I explained above, and start enjoying faster name resolution.
I don’t have a dsl connection, and so all the above is to the best of my knowledge.

To those of you still on dial-up – THANK YOU for visiting my blog! (I’m too ignorant to know how to change things to get dnsmasq to work on dial-up 🙂 )

Comments»

1. Limulus - August 2, 2006

That’s neat that you’re getting a roughly 95% reduction in DNS lookup time… but that’s far too scary for the average user 😉 Fortunately, I was able to replicate your success without the intimidating command line 😉 Based on your instructions:

– Install dnsmasq with Synaptic
– go System -> Administration -> Networking
– click the DNS tab
– press the Add button and type 127.0.0.1 and press enter
– click on a different entry so that 127.0.0.1 isn’t highlighted and then click and drag 127.0.0.1 to the top of the list
– press OK and you’re done! 🙂

Test with the dig command as you demonstrated.

BTW, you might consider using opendns.com instead of your local ISP’s DNS.

2. Hubidubi - August 2, 2006

pdnsd provide similar features and it also provides permanent caching (it saves the cache to disk on shutdown)

3. Jesse Jarzynka - August 2, 2006

Limulus, that works perfect! Thanks!

4. ubuntonista - August 2, 2006

Limulus, Jesse,

The GUI method works great, except the change will vanish when the DHCP lease is renewed. So please do edit the /etc/dhcp3/dhclient.conf file as I mentioned above. Otherwise, the 127.0.0.1 will be gone with your next dhcp lease renewal.

5. skippy dot net » Got the bluez - August 3, 2006

[…] I use dnsmasq as a local DNS resolver (see here for an Ubuntu-specific guide to dnsmasq). If you're not using a local DNS cache, modify the ms-dns line above to define the IP address of your DNS server. […]

6. Limulus - August 3, 2006

ubuntonista: Oh well, I had hoped I could do it without the command line; thanks for the correction though, I’ve added it to my tips page 🙂

7. Limulus - August 3, 2006

crud; looks like the DHCP renewed and my opendns IP addresses got removed. On the plus side, 127.0.0.1 is still there on top 🙂 Looks like I’ll have to just knuckle-down and use the command line 😉

Hmm… maybe I should file a bug on this.

8. Gostei : Blog Archive : Local DNS Cache for Faster Browsing - August 3, 2006

[…] Via: [Ubuntu Blog] […]

9. Jabbalabba - August 3, 2006

Thanks from Italy, great tutorial Ubuntonista!!

10. Mike Procario - August 3, 2006

Just tried it. It worked fine. I had setup a caching dnsserver under fedora, but I forgot to look into it when I switched to ubuntu.

11. Ozgur Alaz - August 4, 2006

Nice tutorial
i dugg the story
If you are digg user, add your diggs to make it frontpage story
http://digg.com/linux_unix/Super_Fast_Internet_for_Ubuntu

12. Limulus - August 4, 2006

Ah, ok, I understand it now (just a little bit of a learning curve 😉

To get OpenDNS working, I just have to add its IP addresses to the prepend line in dhclient.conf and I can take a shortcut past the other steps if I restart networking; thus:

– install dnsmasq in Synaptic
– sudo gedit /etc/dhcp3/dhclient.conf
and change the prepend line to read:
prepend domain-name-servers 127.0.0.1, 208.67.222.222, 208.67.220.220;
– check Networking to see if the DNS server IP address changes applied correctly
– test a URL with dig twice to see if DNSmasq is working right; e.g.:
dig cnn.com

13. Limulus - August 4, 2006

Ack! I misses a step in there after changing the prepend line:

– sudo /etc/init.d/networking restart

14. Hieu Dang - August 5, 2006

Nice post. However, all of this for a few msec of speed improvement?? This is only for fun, no sensible person would ever do it just to speed things up a few msec. You remind me of those Gentoo fan-boys who said Gentoo “is so much faster”.

Graham - May 23, 2010

You probably don’t realise how often your web browser queries DNS. All those “few msec” add up to quite a lot over the course of a few web pages,

15. Dr K - August 5, 2006

Did exactly as Limulus said and it worked perfectly… nice work by all.

16. The Infinite Loop » Blog Archive » Lokální DNS cache za rychlejší surfování - August 5, 2006

[…] Ubuntu blog informuje o tom, jak urychlit prohlížení internetu pomocí lokální DNS vyrovnávací paměti. Posted by Oldřich Šmehlík Filed in Ubuntu […]

17. Good - August 5, 2006

This is extremely useful since my ISP’s DNS server sometimes screws up and I remain connected (e.g. to IRC) but webpages do not resolve correctly. That’s how you can tell you are having a DNS problem.

18. Christian 'Snyke' Decker - August 5, 2006

Thanks for the tip ubuntonista, although I’m not currently using Ubuntu I could get dnsmasq to work in about 3 minutes with your guide.
And yes I’m actually considering to switch to Ubuntu, the community is just great ^^

19. elton lus minetto » Blog Archive » Cache de DNS para navegao mais rpida - August 5, 2006

[…] dig ubuntu.org pela primeira vez ele levou 300 msec para encontrar o endereo IP. Nas prximas vezes isso caiu para 35 msec. No site original pode-se encontrar mais alguns exemplos que no testei porque no refletem meu ambiente. […]

20. portait - August 5, 2006

good to know, thanks

21. ss0007 - August 5, 2006

Thx for the tutorial , useful
I wonder y did u copy resol.conf to resolv.dnsmasq.conf !!
Wht if the nameservers are changed ? wont tht bring the connection to halt or that it may make dnsmasq useless with old dns servers id ????

22. Ezequiel - August 5, 2006

Hi, I think it’s working fine with my dsl conection. The only problem is you have a typo in your instructions:

It says you should edit one line to be
resolv-file=/etc/dnsmasq.resolv.conf

But the correct file is resolv.dnsmasq.conf
You should correct this if you don’t want people all over the world cursing you after screwing their connection 😀

23. Udo - August 5, 2006

Hi,

thanks for the idea. I just installed dnsmasq and set up static IPs for Networking.

Works fine too.

24. Qwerty Maniac - August 5, 2006

Am a bit scared to try this out but does it work on ADSL connections too? Reply a Yes and i’ll try it out instantly :]

25. Wrong Planet » Blog Archive » Super Fast Internet for Ubuntu - August 5, 2006

[…] “You can run a DNS cache on your computer. This will speed up the process of looking up domain names when browsing. The difference is about 30-60 ms for me.”read more | digg story […]

26. Jonas - August 5, 2006

I don’t know if it is the placebo effect, but unlike some other browser tweaks I tried before, surfing the web seems noticably faster now.. 😀 Thank you for posting an easy to follow guide.

27. Ed - August 5, 2006

If you’re using any modern browser, its already caching the dns replys.

In firefox go to about:config and then find network.dnsCacheExpiration and increase the value from whatever is in there to start with (30secs I think is standard).

Don’t forget that there is large downside to DNS Caching – it will take even longer for changes to get to you if someone changes the DNS settings on their domains.

28. typhoid - August 5, 2006

so… synaptic and apt-get both say that there is no such package as dnsmasq…
I know, i know how to find it but… perhaps the how-to should be updated to reflect this?

thanks!

29. stonyhill - August 5, 2006

This is a godsend for satellite users. A dns lookup takes about a second, due to the time delay from the thousands of miles that a request has to travel. Thank you!

30. tribe.net: ubuntu.wordpress.com - August 5, 2006
31. despuesdegoogle » Archivo del weblog » Acelera tu conexión en Linux con dnsmasq - August 5, 2006

[…] Ubuntu Blog (Vía Digg) […]

32. Austoon Daily » Local DNS Cache for Faster Browsing - August 5, 2006

[…] A DNS server resolves domain names into IP addresses. So when you request “google.com” for example, the DNS server finds out the address for the domain, and sends your request the right way. […]

33. Bora G. - August 5, 2006

hey is there way for using this with windoze?

34. ubuntonista - August 5, 2006

ss0007, you copy the file since otherwise the changes will be lost when the dsl connection is “renewed” and no, upstream Nameservers hardly ever change. Each ISP should have their own Nameserver, and changing that is a rare event. In the event of such a change, you will find out soon, and doing a simple dhcp lease renewal after undoing the edits suggested here will tell you what the new IPs are. I asked a few more knowledgeable sysadmins, and thus I know 🙂 I was wondering about the same thing. Ideally, it should be possible to have the dhcp client to write the NSes to the new file, instead of resolv.conf, but I haven’t figured out a way to do that just yet.

Thanks for all your comments, folks, I made a couple of quick edits above to the post.

35. Shane - August 5, 2006

would this affect my samba shares? i followed this guide and everything was good, but later i found i couldn’t access my network. may be something else..just wanted to see if maybe this caused my issue.

36. Keith - August 5, 2006

This is very good! I followed your instruction and managed to set it up on my Ubuntu server in a matter of a minute. I have heard of DNS cache, but never to realise that it can be so much useful. Thanks!

37. Max Kelley - August 5, 2006

If you use bind, you just have to change /etc/resolv.conf’s first NS to 127.0.0.1 (or the server’s ip). I’d leave a backup entry below 127.0.0.1, just incase bind goes down.

38. shilgia - August 5, 2006

Testing to see whether my post will turn up. Sorry to abuse your blog for this. Feel free to delete this comment.

39. eug2k - August 5, 2006

Wouldn’t this work if you just

– install dnsmasq

– add “nameserver 127.0.0.1” (no quotes) to /etc/resolv.conf right above the first line that says nameserver

– make /etc/resolv.conf immutable:
$sudo chattr +i /etc/resolv.conf)

This way ever time you get a lease resolv.conf will not change and so your change will remain in effect.

Also what comes after “nameserver 127.0.0.1” should optimally be:

nameserver 208.67.222.222
nameserver 208.67.220.220

(the opendns servers: safer, faster, and smarter)

40. transcendental - August 5, 2006

nice

41. Stoffe - August 5, 2006

This should be the default, anybode filed a bug/feature request?

42. SigT - August 5, 2006

Cómo montarse un servidor DNS-Cache con dnsmasq

A raíz de Local DNS Cache for Faster Browsing he descubierto una pequeña joya llamada dnsmasq. No es la primera que monto un servidor DNS únicamente para realizar tareas de cache pero tener un BIND solamente para esto me parecía excesivo, veamos un…

43. Corvillus » Blog Archive » How to set up a local DNS cache for faster browsing on Ubuntu - August 5, 2006

[…] Tutorial here: Ubuntu Blog » Local DNS Cache for Faster Browsing [via Digg] […]

44. ciscosurfer - August 5, 2006

Bravo!!! Went from a 12ms query to (I’m not lying here) 0ms
My lookups are absolutely ridiculous! Excellent tutorial; excellent program.

45. gregster - August 6, 2006

is it true that dnsmasq does not support permanent caching?

46. chuza.org - August 6, 2006

Acelerando a navegación en Ubuntu…

Pequeno tutorial que indica os pasos a seguir para instalar un servidor de DNS na túa máquina Ubuntu e así acelerar a carga das páxinas no teu navegador….

47. Like Your Work » Blog Archive » links for 2006-08-07 - August 6, 2006

[…] Ubuntu Blog » Local DNS Cache for Faster Browsing (tags: dns ubuntu) […]

48. typhoid - August 6, 2006

hey there…

I just wanted to say, I’m a noob… I’m still getting the hang of the apt-get application, and… sad to say I still had universe repository commented out…

for all of you other noobs out there reading this..
1)edit : /etc/apt/sources.list

2)once inside,
uncomment these two lines:
deb http://ca.archive.ubuntu.com/ubuntu/ dapper universe
deb-src http://ca.archive.ubuntu.com/ubuntu/ dapper universe

3) run sudo apt-get update

4) now, run sudo apt-get install dnsmasq

5) continue to follow directions in original post

thanks for this! For some reason, my isp’s dns servers are really slow for me.. this speeds up all my communications which involve resolving of domain names…

49. polarizer - August 7, 2006

What about nscd?

It is a one-liner

apt-get install nscd

50. lemasney.com » Blog Archive » links for 2006-08-06 - August 7, 2006

[…] Ubuntu Blog » Local DNS Cache for Faster Browsing You can run a DNS cache on your computer. This will speed up the process of looking up domain names when browsing. The difference is about 30-60 ms for me. Multiply that difference by the number of websites you visit a day for an approximate estimate of t (tags: opensource reference) […]

51. -hwh - August 7, 2006

Hm, I still think that dnsmasq is overkill if only used on one station. DNS caching is a lot easier: just run “nscd”. (see “man nscd” and “man nscd.conf”)

52. apt-get install » links for 2006-08-04 - August 7, 2006

[…] Ubuntu Blog » Local DNS Cache for Faster Browsing Ultra-cool howto for setting up a caching nameserver on an Ubuntu machine. (tags: ubuntu howto dns) […]

53. GueRReRo - August 8, 2006

Could this be done by squid?.

Thanks in advance.

54. soccerPMN’s Happenings » Speed up your browsing time in Ubuntu with a DNS Cache - August 8, 2006

[…] Here is an interesting guide on how you can speedup the time in which your computer gets the IP address of websites, by saving those IPs on your computer.  Check out the guide at the Ubuntu blog. […]

55. Just [invaleed] » Local DNS Cache for Faster Browsing - August 8, 2006

[…] Read More… […]

56. kanenas.net - August 9, 2006

Nice tutorial !
But you must keep in mind that I would NOT recommended for a Server… and I will explain why.
Unfortunately, everyone that uses the server for HOSTING or DNS resolution will experience problems, even just for sending e-mails – if the Cached Components have been kept for a long time. So you must check the TTL(Time To Live) in that server !
Why am I telling you all this ?
Because recently I have changed the DNS Zones for a domain and all worked smooth (that was what I thought at the beginning…), but the DNS Server I used for my mail server had kept the old Cached Components. Why ? Because the server had a 2 months TTL !!!

57. Hot iPod News - August 9, 2006

Bora G :

A solid windoze equililant would be TREEWALK DNS which can be found at http://www.ntcannuck.com

local DNS serving/caching does make for a much more responsive browser overall …. and far fewer timeouts or 404 errors.

58. Hot iPod News - August 9, 2006

sorry … the proper URL for Treewalk DNS is

http://www.ntcanuck.com (only ONE n in canuck …)

59. LUX.ET.UMBRA - August 10, 2006

Local DNS cache for faster browsing

A local DNS cache can help tremendously for faster browsing since you’re caching the DNS request instead of attempting that request multiple times. The Ubuntu blog has a nice tutorial on how to create a local DNS cache through dnsmasq….

60. The CodeMode Chronicles / links for 2006-08-13 - August 13, 2006

[…] Ubuntu Blog » Local DNS Cache for Faster Browsing A DNS server resolves domain names into IP addresses. So when you request “google.com” for example, the DNS server finds out the address for the domain, and sends your request the right way. (tags: linux dns howto) […]

61. Billy Bowinkel - August 14, 2006

Holy crap that’s fast!

62. The Inveterate Observer » Blog Archive » Super Fast Internet for Ubuntu - August 15, 2006

[…] “You can run a DNS cache on your computer. This will speed up the process of looking up domain names when browsing. The difference is about 30-60 ms for me.”read more | digg story […]

63. Rockmessiah Multi-user weBlog featuring DJ Scimitar - August 16, 2006

Looking Up…

Is what my brower Firefox always says for an exorbitant amount of time on my Linux machine. I set up a dns server, and occasionally it seems to be working, but not often enough.

Here’s the lowdown.

Without the dns server, I hook up with the web …

64. Lost in… whatever » Super Fast Internet for Ubuntu - August 17, 2006

[…] read more | digg story […]

65. Attack of the Rob Bot! - proof that I use the internet » links for 2006-08-09 - August 18, 2006

[…] Local DNS Cache for Faster Browsing » Ubuntu Blog (tags: ubuntu hacking) […]

66. RAdams - August 28, 2006

This, in addition to disabling the ipv6 check, allowed me to use Linux in my workplace without the 5-10 second delays for domain name resolution. (ipv4 ftw!)

Thanks!

67. btdown - August 28, 2006

Whats the difference between bind9 and dnsmasq? I followed a separate tutorial for bind9 and I thought I was accomplishing the same thing…

68. EveryDigg » Blog Archive » Super Fast Internet for Ubuntu - August 30, 2006

[…] "You can run a DNS cache on your computer. This will speed up the process of looking up domain names when browsing. The difference is about 30-60 ms for me."read more | digg story […]

69. meneame.net - August 31, 2006

HowTo. Montarse un un servidor DNS-Cache con dnsmasq y navegar más rapido

Gracias a dnsmasq puedes montar un pequeño servidor DNS en tu pc, de forma que guarde las ips asociadas a cada dominio en tu propio pc y no necesite pedirlas al servidor DNS de tu proveedor de Internet. Muy fácil de montar y muy recomendado para cual…

70. Linux Unix » Super Fast Internet for Ubuntu - September 1, 2006

[…] “You can run a DNS cache on your computer. This will speed up the process of looking up domain names when browsing. The difference is about 30-60 ms for me.”read more | digg story […]

71. Howto : Faster internet speed by locally caching DNS « Ubuntu OS - September 6, 2006

[…] Local DNS Cache for Faster Browsing August 2, 2006 […]

72. Muthu Veerappan - September 11, 2006

If a person is on proxy or firewall can he use this ?

I hope no ! But what other options are left with ?

73. Stefan da Silva Billieri - September 16, 2006

Thank you very much for this tip. It really works! My pages are loading faster now in my browser.
Actually I configured pdnsd, which is capable of saving the dns cache to disk.
I configured pdnsd with opendns.com servers:
208.67.222.222
208.67.220.220
I had to adapt my firewall rules so as to allow communication between local clients and local dns server.
Advantages in having a dns cache:
1)performance.
2)less network traffic; decreased load on remote dns servers.
3)less dependance on remote dns servers; you’d still get name resolution if they all went down 🙂

74. Roshan Shariff - September 20, 2006

I don’t know if it’s worth commenting so late, but this entire guide can be replaced with one step:

$ sudo apt-get install dnsmasq resolvconf

This should “just work” with DHCP, PPPoE (DSL), and normal PPP over a modem line.

The resolvconf package acts as an intermediary between programs that provide nameserver information (dnsmasq, dhcpcd, ppp, etc.) and programs that use said information (the glibc resolver, among others.)

75. Greg - September 24, 2006

My ISPs DNS servers are awful (cox in kansas). When I do two consecutive digs the first lookup is between ~730 and [no joke] 2100 ms. With this they are 0-2 ms lookups. Thanks! No permanent caching though?

76. dw - September 27, 2006

apt-get install bind9 resolvconf – works just fine, and doesn’t need any configuration job 🙂

77. Criptograma - » Dnsmasq: caché local de DNS - October 21, 2006

[…] Local DNS Cache for Faster Browsing […]

78. gatito.co.uk » DNS Caching - October 24, 2006

[…] Local DNS Cache for Faster Browsing « Ubuntu Blog […]

79. Robert Synnott » Blog Archive » Server Move - October 27, 2006

[…] So far, all seems well. The extra latency isn’t really noticeable. DNS resolution is VERY slow, but now that I’m using this (a DNS caching thing) I don’t really notice. The server is very similar to the old one; it’s an Athlon XP instead of some form of P4 Celeron, but the differences end there. […]

80. MaxInfo - November 5, 2006

Yes.. i love your idea. Going to start the process.

Thanks.

81. Faster Browsing !? « the minds of a tuxian - November 10, 2006

[…] Now, disconnect your Internet connection and connect again. Check out the resolve.conf file whether you have the entry for “127.0.0.1″ at the top of the list. If you have, then you have done everything fine. If not, then you have messed up somewhere. You can also check this blog, which is the one I used up to set dnsmasq […]

82. tech.twomadgeeks.com » Blog Archive » Local DNS Cache for Faster Browsing - November 11, 2006

[…] Link: Ubuntu Blog […]

83. diego sevilla’s weblog » Cach de DNS en dos minutos con Linux (Ubuntu) - November 15, 2006

[…] Local DNS caching for faster browsing […]

84. links for 2006-11-17 at molgar.net - November 17, 2006

[…] Local DNS Cache for Faster Browsing « Ubuntu Blog How to setup a local DNS cache under Ubuntu. (tags: ubuntu linux dns howto internet cache) No Tags […]

85. Patentás, Vertés, Calentás » Blog Archive » Red Hat no cede por el momento. - November 17, 2006

[…] Por suerte GNU/Linux es muy superior a sus competidores, por ejemplo se puede configurar un servidor dns que acelera nuestra navegacion en un minimo del 200% en un periquete (vía Diego Sevilla) , o incluso, gracias a la filosofia del Sofware Libre, tunear el sistema hasta unos niveles insospechados. […]

86. mohammad - November 29, 2006

yes yes yes yes yes

87. web-ology.com » links for 2006-11-30 - November 30, 2006

[…] Local DNS Cache for Faster Browsing « Ubuntu Blog Quick easy and handy. (tags: ubuntu linux dns howto tips networking dnsmasq)   […]

88. Fird’s Domain » Blog Archive » GMail 007 & 008 Error Messages and MTU Settings - December 1, 2006

[…] First, I’m guessing the big problem is that the DNS resolving is not done right, after all I configured my connection to request for DNS queries via the router (as in DNS entry points to 192.168.0.1). After looking around for a while, I figured out how to enable local-DNS caching in uBuntu, as well as make use of the TMnet’s DNS servers, DiGi DNS servers and a whole bunch of OpenDNS servers. […]

89. Jonh - December 6, 2006

With all of this talk I still can’t set up a DIAL UP connection.
I’ve tried to follow everything written in various websites.The whole thing is frustrating as I really don’t want to use windows anymore.
You say do this do that without ever saying where to access each of those applications from.It’s really sad.I can’t even play videos or mp3.
Someone should please come up with a clear and executable explanation.

90. Siv Chand - December 7, 2006

Simple and very useful guide and thanks. I having facing problems with broken DNS Servers where ever I go.

No longer from now.

91. alejandro - December 11, 2006

m…
This was what I got when I followed this tutorial:

ale@ale-desktop:~$ sudo apt-get install dnsmasq
Password:
Reading package lists… Done
Building dependency tree
Reading state information… Done
E: Couldn’t find package dnsmasq
ale@ale-desktop:~$ sudo apt-get install dnsmasq
Reading package lists… Done
Building dependency tree
Reading state information… Done
E: Couldn’t find package dnsmasq
ale@ale-desktop:~$

92. BLOG@JayXie.COM » Blog Archive » Ubuntu下的DNS caching - December 13, 2006

[…] 今天找了一下 原来非常简单 就是装一个dnsmasq 原文在这儿 然后把/etc/dnsmasq.conf里面把”listen-address=127.0.0.1″写上 […]

93. links for 2007-01-11 « WhilelM little Wor(l)d - January 11, 2007

[…] Local DNS Cache for Faster Browsing « Ubuntu Blog (tags: blog browser dns documentation firefox ubuntu linux howto cache networking lang:en) […]

94. ZenLinuxNH Blog » Blog Archive » Running a Local DNS Cache - January 26, 2007

[…] you an Ubuntu Linux-using internet junkie looking for a productivity boost? This blog post on running a local DNS cache with dnsmasq is trivially easy to follow and it really makes a […]

95. copperhead - January 30, 2007

this want work on windows 2000 it want let you type 127.0.0.1 in any one ,it dont matter if your and adim. or not still want let you.

96. HDL Friends and Feeds » Blog Archive » Running a Local DNS Cache - January 31, 2007

[…] you an Ubuntu Linux-using internet junkie looking for a productivity boost? This blog post on running a local DNS cache with dnsmasq is trivially easy to follow and it really makes a […]

97. Nick - February 4, 2007

Works very nicely and easily with kubuntu 6.06 Dapper.

98. poco_logico - February 7, 2007

Hi guys,

Is it possible this procedure in windows xp??

Please, send me instructions for newcomer

Thanks

99. No - February 7, 2007

Thanks for the tip – worked like a charm on Kubuntu 6.10

Query time dropped to 0ms on the second dig 😉

100. Tvler - February 11, 2007

A local DNS cache can help very well for a better browsing since you’re catching the DNS request instead of attempting that request multiple times. The Ubuntu blog has a fine tutorial .

101. Sam - February 13, 2007

Well this is much easier than setting up bind. FWIW, you can point all the computers on your home network to the dnsmasq server and use fixed ip addresses in your /etc/hosts file (unless your router has dnsmasq built in – then assign names with that).

Also for people talking about marginal speed boost, your full of crap. If you have a high latency wireless conection just watch your status bar in firefox next time you load a page. It says ”looking up domain.com” for quite a while and will do this on EVERY page load. It can be like 2-3 seconds if the hotspot is busy. Install dnsmasq and save that 2-3 seconds on every page load.

I just did it 10 minutes ago on my laptop because the public library hotspot I’m at was awefully slow. It really does shave seconds off page loads in these situations. Great for laptops!

102. Rand - February 14, 2007

When I try to start dnsmasq, I get the following error message:

dnsmasq: failed to create listening socket: Address already in use

Has anyone else seen this?

103. Paul - February 15, 2007

I think it’s great fun to use DNS cache like this, but most DNS server already do caching so if you don’t use local DNS caching and use dig google.com it’s about 38msec and if you do it again it’s about 8msec because your DNS server got it from his own cache so the difference between dnsmasq and non-dnsmask is about 6msec and that is only for domainswitch, if you brows pages in the same domain you don’t have to query the DNS so there is no profit. But like all things here, it’s great fun and we’re getting smarter and smarter….

104. zerogrounding - March 20, 2007

Great,, my internet access become faster because of this
Bravo for you and ubuntu

105. garrett - March 27, 2007

Fantastic tutorial! Worked perfectly in feisty 7.04 first try.

106. Yet Another Linux Blog » Blog Archive » nscd vs local caching DNS - April 12, 2007

[…] is, you DO need a local caching DNS server to handle DNS requests, (e.g. https://ubuntu.wordpress.com/2006/08/02/local-dns-cache-for-faster-browsing/),and you can’t just use nscd as some of the comments […]

107. Cache Local de DNS usando o dnsmasq « [ *gnu/linux… ] - April 20, 2007

[…] Arquivado em: Dicas, HowTo, Mundo GNU/Linux — usucapiao @ 1:46 am Baseando-me em um artigo que explica como fazer o cache em conexões usando DHCP resolvi postar um de como fazê-lo com IP […]

108. Sión, el último refugio » Blog Archive » Monta tu propio servidor de DNS - April 20, 2007
109. Ubuntu Performance Guides : lxpages.com blog - April 24, 2007

[…] Local DNS Cache for Faster Browsing – Nice article explaining how to use DNS caching to speed up internet browsing on your Ubuntu install. […]

110. Ubuntu Performance Guides « Linux and Open Source Blog - April 25, 2007

[…] Local DNS Cache for Faster Browsing – Nice article explaining how to use DNS caching to speed up internet browsing on your Ubuntu install. […]

111. myNothing » Blog Archive » Ubuntu Perfomance - April 25, 2007

[…] Local DNS Cache for Faster Browsing – Nice article explaining how to use DNS caching to speed up internet browsing on your Ubuntu install. […]

112. Peacemaker ~ Kumaran » Ubuntu Performance Guides - April 25, 2007

[…] Local DNS Cache for Faster Browsing – Nice article explaining how to use DNS caching to speed up internet browsing on your Ubuntu install. […]

113. it’s about time» Blog Archive » links for 2007-04-25 - April 25, 2007

[…] Local DNS Cache for Faster Browsing « Ubuntu Blog You can run a DNS cache on your computer. This will speed up the process of looking up domain names when browsing. Easy and speedy! (tags: ubuntu linux dns howto networking internet tips network desktop debian computer browser client blogs blog) […]

114. Ubuntu Performance Guides « Going Gnu - April 26, 2007

[…] Local DNS Cache for Faster Browsing – Nice article explaining how to use DNS caching to speed up internet browsing on your Ubuntu install. […]

115. My LifeXperience » Ubuntu Performance Guides - May 2, 2007

[…] Local DNS Cache for Faster Browsing – Nice article explaining how to use DNS caching to speed up internet browsing on your Ubuntu install. […]

116. grindz - May 4, 2007

Thanx for the hint. It’s really helpful.

117. shirish - May 22, 2007

I have made a query on the same thing at http://ubuntuforums.org/showthread.php?t=451123 . Lemme know if something can be done.

118. Local DNS Cache for Faster Browsing using dnsmasq | Sirius Stuff - June 26, 2007

[…] for a way to speed up recurring DNS lookups on my Ubuntu box. I found a reference to Local DNS Cache for Faster Browsing on Ubuntu Blog. Works like a champ. I like that dnsmasq allows me to configure the size of the […]

119. aQd - June 28, 2007

has anyone done this for EVDO connections (specifically Sprint)? If so, any improvement ?

thanks

120. 101 Ubuntu Tips, Tricks and Tutorials : lxpages.com blog - July 11, 2007

[…] Super Fast Internet for Ubuntu […]

121. Local DNS for Faster Browsing « Helpful Linux Tidbits - July 18, 2007

[…] DNS for Faster Browsing This is copy of Carthik Sharma’s awesome post, except for Gentoo. Carthik writes one of my favorite blogs, the Ubuntu (you’ll see it in the […]

122. Ubuntu Life » Blog Archive » 101 Trucos y tutoriales para Ubuntu - July 19, 2007

[…] Super Fast Internet for Ubuntu […]

123. Blux 2.0 » Blog Archive » 101 Tips, trucos y tutoriales de Ubuntu - July 20, 2007

[…] Super Fast Internet for Ubuntu […]

124. How To Speed Up Ubuntu « Lin and Win - July 20, 2007

[…] Local DNS Cache for Faster Browsing – Nice article explaining how to use DNS caching to speed up internet browsing on your Ubuntu install. […]

125. Ubuntu Life » Blog Archive » ¿Tu Ubuntu lento?...Acelera tu ubuntu... - July 20, 2007

[…] Local DNS Cache for Faster Browsing […]

126. Argh Bananas - July 26, 2007

First, I prefer dnscache to dnsmasq. Second, speed gain is marginal no matter what others say above.

What? Yes, marginal. First, if you are using your ISP as your DNS then they have a cache and you save yourself root lookups everytime.

Second, to the guy who thinks it will save you “seconds” if you are on a wireless, that is junk. My wireless gets results in 11 msec. Not bad!

Nope, a slow wireless hot spot suffers from being slow. If they run a DNS cache then it doesn’t matter.

Finally, CACHES EXPIRE! If you lookup google.com you’ll discover a 15 minute expiry. After 15 minutes you have to lookup google again! If you run a recursive server expect 3 to 5 seconds to query root, authoritative and get an answer. If you query your ISP and they run a cache that is regenerated thanks to mondo traffic then you’ll get it in the time your network connection takes. Mine is about 60 msec.

If you have a router out front with a dnscache and resolver you can save 11 msec or so. If you get info from your ISP and they are a decent size, and you surf popular websites, then you can save 60 or so. If you have a recursive and you have to lookup results as they expire (most of us) then you save nothing.

And no, you don’t save 3-5 seconds on every page load BECAUSE you don’t lookup from the root and authoritative on every request! You lookup from the nearest cache – usually your router or your ISP.

Lot’s of misinformation out there. Learn to read output from “dig”.

127. Ubuntu Performance Guides « alll about linux - July 28, 2007

[…] Local DNS Cache for Faster Browsing – Nice article explaining how to use DNS caching to speed up internet browsing on your Ubuntu install. […]

128. Speed Up Web Browsing by Caching DNS to Your Hard Drive in Ubuntu - July 28, 2007

[…] by locally caching DNS name resolution results using dnsmasq. That article is great and it is here: Local DNS Cache for Faster Browsing. I like it because it is equally simple to do and works, but the results (of DNS lookups) are not […]

129. ernie.cz » Archiv » 101 ubuntu tips, tricks and tutorials - July 28, 2007

[…] Super Fast Internet for Ubuntu […]

130. Craig - July 30, 2007

Great post. All up and running

For Info to get Cache working with dialup I cheat and put a script in /etc/ppp/on ip up

that overwrites /etc/resolv.conf with

search home
nameserver 127.0.0.1
nameserver x
nameserver y

and then sudo /etc/init.d/dnsmasq restart

Which works fine on dialup and leaves my WIFI alone.

131. Night Hacker :: How To Speed Up Ubuntu :: August :: 2007 - August 5, 2007

[…] Local DNS Cache for Faster Browsing – Nice article explaining how to use DNS caching to speed up internet browsing on your Ubuntu install. […]

132. Cache DNS « Aletéia - August 16, 2007

[…] Enviado em GNU/Linux por André Ramaciotti no Agosto 16th, 2007 Esse artigo foi inspirado em um artigo de outro […]

133. Rama - August 18, 2007

There’s another way as well and the cache is stored on the hard drive instead of only on RAM. I think this system and the one on this link (below) are both great solutions: http://ubuntulinuxhelp.com/speed-up-web-browsing-by-caching-dns-to-your-hard-drive-in-ubuntu/

134. Rick - August 23, 2007

does this work on dial up internet?

135. nevillion - September 1, 2007

Thanks, uwc

Perhaps, someone would like to explain this part of the blog,

Explanation for the above change: In the normal case, when you get a new dhcp lease, the dhcp3 client (tool) on your computer gets a new lease, and updates the /etc/resolv.conf file on your computer with the right values for the DNS servers to use (usually some machine in the network of your hosting provider). Adding the “prepend” option as we did above ensures that “127.0.0.1″ will appear on the top of the list of DNS servers. That magic number refers to your own computer. So in the future, whenever your computer needs to resolve a domain name, it will forward that request to dnsmasq (which is running at 127.0.0.1 – your computer). If the details for the domain name are already in you cache, well and good, dnsmasq will serve it up and make the process real fast. If it is not in the cache, then dnsmasq will look at the /etc/resolv.conf file and use the nameservers listed below the “127.0.0.1″. I hope that explains things.

Blessings to all.

136. Eduardo Muhamad Ali - September 5, 2007

HI, i have installed Unbutu in my PC, and now i want install some package like dansguardian,squid, dnsmasq, when i put apt-get install dnsmasq, the system give me this sms: E: couldent find package dnsmasq. So what can i do to solve this situation?

PLEASE HELP ME

137. DNS Caché para una navegación más rápida (Ubuntu) « Emiliux - September 11, 2007

[…] Caché para una navegación más rápida (Ubuntu) Me he encontrado este blog de Ubuntu con un artículo interesante para acelerar un poco la navegación por […]

138. engel - October 14, 2007

Wow, this really improves my browsing speed. Thanks for the tip!

139. itchypaws - November 3, 2007

This is just fantastic – has massively improved my browsing speed and reliability of DNS lookup. My ISP’s DNS server is intermittent at best (grrrr) but they don’t officially support Linux connected computers so I have trouble raising an issue on this. I think their view is that Windows XP caches DNS by default so Linux should do the same. My Fedora 7 installation now does thanks to your article! Given that 80% plus of my surfing is to the same sites, this is helping enormously. So thank you again.

140. brian - November 4, 2007

http://www.opendns.com for the win! 🙂

141. Ejercicios servicio DNS at Alejandrox - November 20, 2007

[…] Montar un servidor DNS-Caché (en inglés) […]

142. Chris - November 23, 2007

Thanks, took all of 3 minutes, dig returns results in 0ms lol

143. .bootstrap » Browse Faster Using a Local DNS Cache - November 24, 2007

[…] blog post describes howto tweak the browsing performance of your system using a local and super fast DNS […]

144. geek log » Blog Archive » Speed up your Broadband - Part II - November 26, 2007

[…] is an excellent article about speeding up your dns connection @ wordpress which describes how you can create a local dns cache. I’ve tried it out and really love the […]

145. g2g591 - December 4, 2007

works great on my setup (computer to ADSL router (no ppp for me thank you) to DSL line) excellent advice and idea, even though its been well over a year sience you posted it, it still works, even on Debian unstable.

146. Varadin - December 6, 2007

Great help… worked flawlessly.

147. plitzen - December 30, 2007

I have been installing ubuntu ALOT lately, 64 bit and 32 bit versions, wireless, wired, native drivers and ndiswrapper. I dont care what anybody says, ubuntu has some network issues, that other distros do not.

There is a lot of hoohaa in the forums about disabling IPV6 and using open DNS. While some people have luck with this its not really a fix.

DNS lookups to your router should work fine, the fact that they are slow on ubuntu shows that ubuntu is not caching like windows does. Your fix really does the trick.

Hopefully with the DNS issue mostly out of the way I will be able to track the true source of the other problems with erratic speeds.

148. rfnaufal blog! - December 31, 2007

[…] Super Fast Internet for Ubuntu […]

149. clheiny - January 17, 2008

I’m on satellite internet with ping times that are at least 500ms, often more. This tweak speeds up not only browsing, but a number of other activities. Thanks!

150. helpdeskdan - January 20, 2008

Why use dnsmasq when you can use pdnsd? Every time you reboot, you loose your cache with dnsmasq. With pdnsd, it’s still there.

http://ubuntuforums.org/showthread.php?t=331850

151. Server Migration complete for berry411.com and thebogles.com » Bogle’s Blog - March 3, 2008

[…] that Berry Bloglines was returning 503 errors, this is now fixed. I also improved performance usingdnsmasq, a local DNS cache, since I discovered that ServerPronto’s servers periodically become very […]

152. Maxime Rousseau - March 6, 2008

Great guide! Last time I tried setting up a DNS cache with BIND the whole thing uber failed, but with DNSMasq I didn’t even have to edit any config and I was ready to roll. I’m hoping to speed up things up a little bit considering my home houses 4 power-browsers. Install process on Fedora was just as easy, I didn’t even have to edit the DHCP3 file.

Keep this shizzle coming!

153. Bobbyv - March 26, 2008

I installed Versis Full Speed software from http://www.getfullspeed.com and it made my Internet speed go about 5 times faster than it did before.
All I did was click the ‘Apply Boost’ button and it did everything. No questions or knowledge was required at all.
It tweaks many settings in your pc to get the speed gains that it does. Most other Internet booster softwares just tweak the usual Internet settings in the registry that most people know by now.

154. Firefox is slow on Ubuntu 8: disable IPv6 support! | rodrigueroland.net - March 29, 2008

[…] got so frustrating, that recently I implemented a local DNS cache following the directions at the Ubuntu Blog. I noticed some improvement but it was still very slow. In exasperation tonight I did an Internet […]

155. SI - April 26, 2008

Great tips!

Just applied all your suggestions to Ubuntu Hardy Heron. It is blazing!

156. lanskim - May 1, 2008

Does anybody knows where’s the cache being saved using dnsmasq?

157. dude - June 7, 2008

WARNING- this is very risky because of all the extra features dnsmasq has built in and most guides that speak of setting up dns services usually use chroot and other securities to restrict such daemons. There are also some security warnings listed for dnsmasq and other similar applications. Dnsmasq also does not save your cache when you power down. I am also concerned of its cache growing out of size there needs to be limits set. I had an ubuntu machine running it before and I think I got my system rooted through dnsmasq some random high up udp port would send out data everytime I booted probably a reverse shell of some sort. Please use caution and read up a bit more maybe ask on irc/forum for advise.

158. Newbie Blog » Blog Archive » Ubuntu : Local DNS Cache for Faster Browsing - June 11, 2008

[…] Local DNS Cache for faster browsing […]

159. BlueMatt - June 22, 2008

This works on a Mac as well as anything with UNIX. For me I just installed dnsmasq, changed my network settings to point to 127.0.0.1, and told dnsmasq to query a different file for upstream nameservers by putting “resolv-file=/etc/dnsmasq_resolv.conf” in dnsmasq’s config file. Then used the script in the Mac contrib folder of dnsmasq’s source to make it a startup program a it works great now.

160. digitalpbk - July 21, 2008

coool thanx

i also tried adding more number of ip address to dns server list other thn provided by the isp.

fixes some of the probs ..
cheers

161. Local DNS Caching | The ramblings of Steven Macintyre - July 22, 2008

[…] Wanna read more about this, head over to the Ubuntu Blog […]

162. zeeol - August 2, 2008

ya, i set up always updated dns to get quick connection

163. Easily develop and deploy web applications from subversion - Lone Wolves - Web, game, and open source development - August 6, 2008

[…] on your own machine. As a bonus, the DNS caching can also speed up your web browsing (hat-tip to Carthik). If you want, you can replace localhost with another name (like your hostname) in the commands […]

164. Lindsay Mathieson - August 10, 2008

Thank you very much for this – I’m on capped cable and my mythbuntu box was eating 30% of my cap on dns queries!

165. Slow Browsing Under Ubuntu | Shami's Blog - August 23, 2008

[…] After which you should reboot your system. Now browsing feels much faster. To speed it up a little I installed a local caching DNS server which works like a charm. A quick HOWTO can be found here […]

166. Apunte persoais » Blog Archive » Enlaces traballo - September 9, 2008

[…] Local DNS Cache for Faster Browsing « Ubuntu Blog […]

167. helpdeskdan - October 10, 2008

In answer to lanskim’s question – no it does NOT have a persistent DNS cache. pdnsd does, which why I believe it to be superior.

http://ubuntuforums.org/showthread.php?p=5943381

168. The Fourth Place » Resilient DNS cache on Ubuntu - November 7, 2008

[…] fine and less popular sites like bbc.co.uk worked slowly and really mediocre sites like er… ubuntu.wordpress.com, for example, didn’t work at all. Since it was election night I wasn’t going anywhere […]

169. Tutorial Ubuntu « Flame of Akane Division - November 22, 2008

[…] Super Fast Internet for Ubuntu […]

170. exclusive - December 8, 2008

[…] fine and less popular sites like bbc.co.uk worked slowly and really mediocre sites like er… ubuntu.wordpress.com, for example, didn’t work at all. Since it was election night I wasn’t going anywhere […]

171. exclusive - December 8, 2008

…] fine and less popular sites like bbc.co.uk worked slowly and really mediocre sites like er… ubuntu.wordpress.com, for example, didn’t work at all. Since it was election night I wasn’t going anywhere […]
exclusive@cdliride.it

172. Sam - January 5, 2009

I didn’t work for me. dig google.com took longer using this method – 80ms v. 70ms before.

Also the notes are wrong here…

“You also have to uncomment the line that says listen-address=127.0.0.1”

It is not just a question of uncommenting the line – you have to enter the 127.0.0.1 address too.

173. agas - February 16, 2009

thanks for the guide! it works without even restarted the computer 😉
very helpful =)

174. tabuxander - February 25, 2009

thanks,
now my internet working little faster than before

175. dnsmasq « My content can - March 8, 2009

[…] dnsmasq also works as a local dns cache for the LAN, which speeds up web browsing. […]

176. W - March 30, 2009

I have very slow dns server at my provider and I know another one which works much faster, so your guide helps me a lot. Now I use the faster server and dnsmasq to make all resolving stuff work as quick as lightning.

177. 101 Tutorial Ubuntu « Welcome to Ikhwan’s world - April 24, 2009

[…] Super Fast Internet for Ubuntu […]

178. 101 Tips, Trucos y Tutoriales de Ubuntu « Telematica & Linux - May 13, 2009

[…] Super Fast Internet for Ubuntu […]

179. buy_vigrxplus - July 14, 2009

Great post! I’ll subscribe right now wth my feedreader software!

180. sikiş - July 14, 2009

thnxx.

181. Venkat - July 18, 2009

Really it is breeze when i have to wait for each image with different host name to get resolve.

I was thinking it is bandwidth issue. after doing this understood that it is dns which is already available info needs to be used.

I dont want to say anything in % but google for the first time resolved for 1300 ms and now it is 3ms.

Thanks a lot.

182. Prefabrik - August 7, 2009

I believe the main reason why apple is locking its systems (both macosx and iphone) is software consistency and side effects.

The basic idea is that if you give away too much control over the core of your system, then you end-up with myriads of unsecure applications. If you need examples – see how windows looks like these days.

Instead, apple was always allowing only limited integration with its systems. Of course – you can still write some applications for mac, and communicate with the system core through provided API, but you don’t have possibility to really change the core itself. Thats why Apple used to be so much more stable than windows.

In case of iphone its the same case – they just don’t want every kid on the block to write sh*#ty apps, they want to have control over what people are writing and how secure it is – in order to be able to say: yes, its stable, we guarantee that.

There’s no evil in this, its just customer service. Just like when you go to the restaurant you want someone (chef) to have control over what all the cooks are cooking.

183. Baskar - September 22, 2009

thank you very much charthik, I am newbie to ubuntu. This help me awesome. once again thank-you.

184. gabarice - September 28, 2009

Thank for the guide.

I test it a few times with wvdial using Huawei E220. Unfortunately, it slow down so much that I have to uninstall it.

Will tried it when I switch using adsl or cable modem.

185. haber - November 11, 2009

its very nice and amazing project.

186. Nicolas - December 13, 2009

My browsing experience improved a lot thanks to your tip!

187. 默认google dns 服务器 « 非我 - December 21, 2009

[…] Local DNS Cache for Faster Browsing […]

188. yacht rental - December 29, 2009

I am newbie to ubuntu. This help me awesome. once again thank-you.

189. alquiler de yates - December 29, 2009

This help me awesome. once again thank-you.

190. harry - January 7, 2010

Thanks, now I can save more time while browsing.

191. Robert Bogdon - January 30, 2010

Thanks for this how-to. This cut the time it takes spamassassin to filter a message from 12+ seconds, to less than a second for about 50% of my messages and no more than 5-6 seconds for the rest.

192. Geoff - February 16, 2010

Pro tip: No one cares about this.

193. Saved by dnsmasq - February 17, 2010

[…] DNS). After googling a bit, I decided to install local DNS cache service dnsmasq, as explained here. I’m running it for the last few days and so far so good – I didn’t see a single […]

194. radhe - February 19, 2010

Thanks for the help

195. bayan escort - May 2, 2010

süper admın

196. geno - May 11, 2010

thanks

197. Alquiler yates Ibiza - May 21, 2010

Thanks for sharing. Best regards.

198. Caching nameserver lookups » Pacific-Design.com - Kevin Duraj the inventor of the first social networking site MyWBS.com in 1999 - June 28, 2010
199. escort bayan - July 6, 2010

This gets around the nasty solution of adding a class to the first or last item in every row — something I’ve seen with abundance around the web.

200. Andri Suwignyo - July 31, 2010

thanks 4 your nice article..

i’m andrisuwignyo from Indonesian

nice to read your blog dud.. ^_^

201. panjur tamiri - August 10, 2010

panjurcu

202. NetsArceleathe - August 28, 2010

expunge sorry
eliminate miserable 90

203. debnath - August 31, 2010

How much disk space would it take up? Say after a month of usage without flushing it?

204. online izle - September 3, 2010

its security ‘though the layers” is going to be an issue with widgets, you know, I think you.

205. porno sikiş - September 27, 2010

You probably don’t realise how often your web browser queries DNS. All those “few msec” add up to quite a lot over the course of a few web pages,

206. sex sikiş - September 28, 2010

Thx for the tutorial , useful
I wonder y did u copy resol.conf to resolv.dnsmasq.conf !!
Wht if the nameservers are changed ? wont tht bring the connection to halt or that it may make dnsmasq useless with old dns servers id ????

207. Florian - October 1, 2010

Works like a charm. Thanks a ton.

208. Phil - October 4, 2010

I think it’s great that after 4 years this is still exactly what I was looking for, thanks!

I get 0ms on my second “dig google.com” 🙂

209. John Knez - October 19, 2010

Thanks for the information on installing and configuring dnsmasq. It fixed my slow dns resolution problem.

210. evden eve nakliyat evimtaş - October 20, 2010

Thanks for the information on installing and configuring dnsmasq. It fixed my slow dns resolution problem.

211. evden eve nakliyatzinciri - October 21, 2010

nakliyat.zinciri Hi .. My mom was working at Academy of Science headquarters in Prague. They had a mishap in 80s, at the Institute of Virology: The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini-porkers from the control group. It was a great internal tradition – And one day someone managed to spread a very contagious infection into the control group. It was not discovered until the whole research group came down with a vicious porcine virosis.. All Me..

212. porno - October 26, 2010

seks videolari

213. pornoizle - October 28, 2010

will maintain correct user/group file/directory ownership without the need for “tweaking and honing to make sure you get it all right”.

214. pornoizle - November 1, 2010

will maintain correct user/group file/directory ownership without

215. izmir escort - December 29, 2010

nakliyat.zinciri Hi .. My mom was working at Academy of Science headquarters in Prague. They had a mishap in 80s, at the Institute of Virology: The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini-porkers from the control group. It was a great internal tradition – And one day someone managed to spread a very contagious infection into the control group. It was not discovered until the whole research group came down with a vicious porcine virosis.. All Me..

216. evdenevenakliyat - January 4, 2011

I think it’s great that after 4 years this is still exactly what I was looking for, thanks!evdennakliye

217. escort bayan istanbul - January 15, 2011

user/group file/directory ownership

218. hosting - February 14, 2011

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini-porkers from the control group. It was a great internal tradition

219. hosting - February 14, 2011

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini-porkers from the control group. It was a great internal tradition dı deridnong rater

220. web hosting - February 14, 2011

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini-porkers from the control group. It was a great internal tradition ment derdinan

221. web tasarımı - February 14, 2011

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini-porkers from the control group. It was a great internal tradition slaped on you last

222. dini haberler - February 14, 2011

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini-porkers from the control group. It was a great internal tradition meleased nobetyrert

223. cam mozaik - February 14, 2011

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini-porkers from the control group. It was a great internal trapiled dedera monterv

224. mantolama - February 14, 2011

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the memenent yapert dedelad erol pkert

225. elektrik firmaları - February 14, 2011

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini-porkers from the contro sesersi deat touble

226. pendik bayan kuaförü - February 14, 2011

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini sloped fert peret

227. reklam - February 14, 2011

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini-porkers from the control group. It was a sleety people

228. satılık eşya - February 14, 2011

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini-porkers from the dadreed moment

229. porno - February 14, 2011

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini-porkers from the control group. It was a federice lastern

230. datça satılık - February 14, 2011

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini-porkers from the control group. It was a great moıdaerical

231. haber - February 14, 2011

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the perst statern nohuter

232. reseller - March 19, 2011

very nice this blog thanks admin

233. ari - March 19, 2011

Awesome it works even after 5 years!
i’m using usb wireless modem for internet which is a ppp. And I need to apply tweak for DSL connection but with a little adjustment. Instead of editing /etc/ppp/peers/dsl-provider for me it’s /etc/ppp/peers/provider.

234. bıraktiks - March 29, 2011

Day pass is the result of a new research, have a negative impact on human health than smoking duymayalım has discovered. In particular, studies in recent years, pregnant women, infants and children, second-hand smoke exposure for passive or even an enormous amount of damage is revealed.

235. poptones - April 12, 2011

ALMOST works. With 10.04 on my cox cable the dns settings are wiped out every time the lease is renewed. This is fixed by the following:

sudo gedit /etc/my.resolv.conf and give it something like the following: nameserver 127.0.0.1
nameserver 4.1.1.1
nameserver 4.2.2.2

Edit /etc/dnsmasq.conf with the line: resolv-file=my.resolv.conf

236. Escort Service London - April 28, 2011

Domain names have been made available to allow people to easily remember Internet sites, while the IP addresses enable computers to communicate and transfer data between them.

237. porno - June 17, 2011

thanks this posting

238. toplist - June 21, 2011

Second, I read here that this is a no pictures theme. Ooops… I’ve used lots of images and I think it looks fine. Third, Google Webmaster has reported to me that I have 22 broken links on the site as a result of the tabbed box. I’ve sit-e.org

239. » Linuxaria – Everything about GNU/Linux and Open source Local dns-cache for faster browsing - June 29, 2011

[…] gets it’s local IP address using DHCP from the router in your house/office:Read it all at herePopular Posts:4 Tricks with sudoOnline resource collection for Linux Administratorsufw – […]

240. discount oakleys - July 2, 2011

Hi, i simply needed to come here to show you about a very inexpensive service that posts comments such as this on an incredible number of WordPress blogs. Exactly why you may ask, you may decide to sell something and target webmasters or merely just boost the volume of backlinks your internet site has which will improve your Google rankins which will then bring your website more visitors and funds. Have a fast check out this website for much more info.

241. mary - July 26, 2011

Ones websiteis consequently cool. Thank your share with me!

242. antalya böcek ilaçlama - August 7, 2011

thanks,
now my internet working little faster than before

243. sell my property fast - August 29, 2011

Again outstanding article thanks rafts for sharing, keep me posted I will be interpretation more of your read-ups in the next!

244. sohbet - February 26, 2012

The scientists there did not want a good meat to go to waste. They held secret BBQs, using the mini-porkers from the control group. It was a great internal tradition

245. Vítor De Araújo - March 4, 2012

“is is only for fun, no sensible person would ever do it just to speed things up a few msec.”

A sensible person on a 3G running most of the time at 8kB/s with a ridiculous latency would. Thanks a lot!

246. Hugh Grigg - September 2, 2012

Thanks for this. When I run sudo /etc/init.d/dnsmasq restart I get this error:

* Restarting DNS forwarder and DHCP server dnsmasq
dnsmasq: failed to create listening socket for port 53: Address already in use
[fail]

Any idea how to fix this? Thanks

247. ofis taşıma - November 12, 2012

Ben 4 yıl sonra bu sayesinde, ı was seyir için tam olarak ne hala bu harika olduğunu düşünüyorum! Evdennakliye

248. bupyirtuara - November 28, 2012

Сайт об игре Return To Castle Wolfenstein

249. click here - December 24, 2012

Hello would you mind stating which blog platform you’re working with? I’m looking
to start my own blog soon but I’m having a tough time making a decision between BlogEngine/Wordpress/B2evolution and Drupal. The reason I ask is because your layout seems different then most blogs and I’m looking for
something unique. P.S My apologies for being off-topic but I had
to ask!

250. adhocshare | Local DNS caching Linux - March 25, 2013

[…] I would like to thank embraceubuntu for this how-to, I’ve just made it more newbie-friendly. So the credits go to […]

251. attractivejewelry.com - April 6, 2013

you are in point of fact a excellent webmaster. The site loading speed is incredible.

It kind of feels that you are doing any distinctive trick.
Moreover, The contents are masterpiece. you’ve performed a magnificent activity in this subject!

252. chigger bug - May 1, 2013

You really make it seem so easy with your presentation but I
find this matter to be actually something
which I think I would never understand. It seems too complicated and
extremely broad for me. I’m looking forward for your next post, I’ll try to get the hang of it!

253. dbl. - May 2, 2013

After browsing a number of the blog articles on your site (for almost
4), hours I candidly like your way of blogging. I added it as a favorite it to my
bookmarks list and will be checking back in the near future.
Check out my own personal blog if you have a chance and give me feedback.
.

254. 54328 - May 18, 2013

My name is %name&% and first of all I wish to say outstanding blog.
I have got a quick question that I’d like to ask if you don’t mind. I was curious to learn about how you center yourself and open up your mind before writing. Recently I just can’t get
my head clear so that I’m ready to give attention to my ideas. I love writing once I get into the act, but usually I feel as if I end up wasting the first 10 to 15 minutes pushing myself to concentrate. Any ideas or suggestions?

255. the project department to a gang of people armed with steel bars | hstogiyefrg - June 5, 2013

[…] starting in the morning of October 14 […]

256. get more info - June 5, 2013

Great blog here! Also your site loads up fast! What host are you using?

Can I get your affiliate link to your host? I wish my
website loaded up as fast as yours lol

257. consolidate credit debt - June 8, 2013

Individual lenders can charge high interest rates if you get consolidate
your debt a loan that is secured on your home equity loan
may not necessarily save money. This will have the lowest interest and lowest
charges available to you. The timing of the payment
can be negotiated and set to suit the income of the borrower being unable
to fulfill the loan obligations.

258. raspberry ketone reviews walmart - June 16, 2013

Hello I am so thrilled I found your web site, I really found you by error, while I was searching on Aol for something else, Anyways I am
here now and would just like to say kudos for a remarkable post and a all round
thrilling blog (I also love the theme/design), I don’t have time to
look over it all at the minute but I have book-marked it and also added in your RSS
feeds, so when I have time I will be back to read a lot
more, Please do keep up the superb work.

259. green coffee maker - June 18, 2013

Thankfulness to my father who stated to me regarding this web site, this website is actually remarkable.

260. build your own website the right way using html & css 3rd edition - June 19, 2013

I’ll right away grab your rss feed as I can not find your email subscription link or newsletter service. Do you’ve any?
Please allow me know so that I could subscribe. Thanks.

261. the - June 22, 2013

We are a group of volunteers and opening a new scheme in our community.
Your website provided us with valuable info to work on.

You have done an impressive job and our entire community will be thankful to you.

262. mulberry - June 24, 2013

​​Cathay General Hospital family wings robbed of jewelry worth more than ten million and more than 10,000 yuan in cash, being armed with lethal weapons along State Road 107 north to the floor Stone fled. Ping Shek Wu old police station received a phone call before flood Lechang City Public Security Bureau immediately after the report, and the organization of the whole of the group to the area police crossroads, toll stations erecting. Less than three minutes, at the crossroads of the old Ping Shek intercept Huang Xiaoming, deputy director of the Institute, who saw a silver car at a feverish pace rushing towards the crossroads, the police stood by the roadside raised his hand to do Parking gestures,mulberry, behold, a red car and had generally windy,gucci, to flee to the direction of Ping Shek town, police immediately driving the police car hot pursuit. White car soon open to the foot of the dead Jinjiling Pingshi town, just in front of a branch deployments based cards Pingshi vehicle, a white car chase immediately turned the car to the police station of the old Ping Shek collision, in order to avoid casualties, police had to be forced to get out, the car escaped encirclement and continue forward, police immediately notify the other two located in the front of the card cloth under police checkpoints to intercept. Police will be two police cars across the road,mulberry outlet, only criminals regardless of rollover risk,mulberry, driving over roadside barriers crossed the checkpoint again, rushed to the old Ping Shek direction. Onto the hillside into the sky and checkpoints to see such a crazy criminals,louis vuitton outlet, in the direction of the old Ping Shek police quickly set up card coal carts pulled over two cross in the middle of the road, blocking the whole road. Surprisingly, the criminals have risked their lives completely to over a hundred kilometers an hour for the police rushed roadside slopes, the sky suddenly turn and fell heavily on the road,mulberry, crossed the checkpoint again fled. Wu Hung only had power to make toll stations are located in Ping Shek cards prior police closed all channels and two in the driveway crash cast steel. But accidents, less than two minutes, and fled the car again at an alarming rate retrograde crossed lanes, knocked over two consecutive bumper pipe, the car crashed through the front headlights, water leakage,hollister outlet, but still continue to go forward, Police are also in hot pursuit. Then swept four motorcycle hit a car stopped the car running all the way,ray ban, once again crossed the old police station located in Ping Shek State Road 107 Renli village levels, fled to Hunan Yizhang county, and soon entered the Yizhang county. Fled into the town after the vehicle knocked down four consecutive motorcycle and hit a car finally stopped, four criminals fled desperately to the four directions, then rushed to the police quickly captured the old Pingshi of a scoundrel,gucci outlet, and seized on the yuan stolen money and tools of crime. After preliminary investigation, Lee was Zhuadai Tu Jiangxi Pingxiang. According to Lee confessed that this is a single person, Jiangxi Ganzhou a robbery gang headed, as well as Lin, “Ganzhou guys” of four, four people carrying home the morning of tools of crime, driving from Guangdong Lianzhou along 107 State Road north, all the way to wait for opportunities to commit crimes. Four Rock Springs entered when Yizhang County is 10 am, the Capitol will target crime in Rock Springs Cathay General Hospital family wings, four on the family wings to enter the car within a building, less than two minutes to pry open one of the doors,mulberry outlet, the room more than ten million worth of jewelry and more than 10,000 yuan in cash swept away. When criminals are looking for valuables,louboutin pas cher, a homeowner couple just something back touch the positive and four hurriedly rushed downstairs to throw off the homeowner couple fled by car,louboutin, homeowner couple driving catch up and the police. 相关的主题文章: Mother committed suicide after killing his son res Love more than seventy years after the old man to marry 92-y Tire repairman explosion killed four parties because defenda

263. moyh cheap jerseys vuaz - Page 9 - July 1, 2013

[…] auslander nonpredatory ambivalently bacury emancipation twaddlesome schtoff lymphagogue mixoploid vivific teguas sandia preforgiveness recreations hawkishness unsweetenedness revealedly carboniser curvature spaciness […]

264. loucaparaemagrecer.tumblr.com - July 3, 2013

Again, taking careful note and drinking in moderation is the key – Moderation AGAIN: Yep,
I think we need to beat this drum a little more, to
understand that white wine can stall weight loss if not consumed moderately.
If you prefer just to have an online support line you can.
To achieve this you should avoid eating out too much.

265. how do you delete pictures off instagram - July 7, 2013

You need to have a great amount of enthusiasm and flexibility in order to become a favorite photographer at events.
When first launched, this development was endorsed by Diana,
Princess of Wales, and was continued in 2010 by
her son Prince William. Try to include these things to
help bring out this excellent portrait.

266. us fast cash customer service phone number - July 9, 2013

I have read so many content on the topic of the blogger lovers except this paragraph
is truly a fastidious paragraph, keep it up.

267. wikileakdes.org - July 22, 2013

I think the admin of this site is in fact working
hard in favor of his website, since here every material
is quality based material.

268. Jacklyn - July 22, 2013

Found your web-site on del.icio.us today and genuinely loved it.
. i saved as a favorite it and will be back to check
it out some more later .. As a Noob, I am constantly seeking online for posts that can help me.
Regards! My best wishes, Julio.

269. computer components - July 24, 2013

Hello there! Would you mind if I share your blog with my twitter group?
There’s a lot of people that I think would really enjoy your content. Please let me know. Many thanks

270. payday loans - September 8, 2013

I was suggested this web site by my cousin.
I am not sure whether this post is written by him as
no one else know such detailed about my difficulty. You are amazing!
Thanks!

271. wordpress.com - September 24, 2013

I am really thankful to the holder of this
web page who has shared this fantastic post at here.

272. Sherryl - September 28, 2013

Right here is the right webpage for anybody whoo hopes
to find out aboht thi topic. You know a whole lot its almost tough to
argue with you (not that I personally will need to…HaHa).
You certainly put a fresh spin oon a subjct which has
been discussed for decades. Excellent stuff, just excellent!

273. Evden Eve Nakliyat - September 30, 2013

I do not know if it’s just me or if perhaps everyone else
experiencing issues with your site. It appears as though some of the text on your content are running off the screen.
Can someone else please comment and let me know if this is happening to them as well?
This could be a problem with my browser because
I’ve had this happen previously. Appreciate it

274. Micheal - October 2, 2013

Thhis article gives cloear idea designed for the new visitors of blogging, that in fact hhow to do
blogging and site-building.

275. 専門店 ルイ ヴィトン ハンドバッグ - October 30, 2013

Hi would you mind letting me know which hosting company you’re utilizing?

I’ve loaded your blog in 3 different browsers and I must say this
blog loads a lot quicker then most. Can you suggest a good
internet hosting provider at a fair price? Cheers, I appreciate it!

276. Miranda - November 18, 2013

Quality articles is the secret to invite the people to go to see
the site, that’s what this web page is providing.

277. tumblr.com - November 23, 2013

Ahaa, its fastidious dialogue regarding this article at this place
at tthis web site, I have read all that, so noww me also commenting at
this place.

278. tranny schoolgirl jerking off her dick - November 27, 2013

This is the perfect webpage for anyone who wishes to understand this topic.
You realize so much its almost hard to argue with you (not that I really would
want to…HaHa). You definitely put a brand new spin on a topic which has been written about for many years.
Excellent stuff, just excellent!

279. air jordan pas cher - November 28, 2013

com|Youtube|Squidoo|Bebo}, and / or begging and pleading on her to take the one once again..
air jordan pas cher http://www.motherroadrally.com

280. Gayle - November 29, 2013

I got this website fro my budddy who shared with me regarding this web page and now this
time I am browesing this web page annd reading very informative articles at this time.

281. web tasarım izmir - December 2, 2013

My partner and I absolutely love your blog and find many of your post’s to be just
what I’m looking for. Do you offer guest writers to write content for yourself?

I wouldn’t mind producing a post or elaborating on most of the
subjects you write with regards to here. Again, awesome blog!

282. Save your foreclosure - December 4, 2013

This piece of writing is truly a pleasant one it helps new internet people, who are wishing for blogging.

283. suplementostech.blog.com - December 19, 2013

You’vе made some decent points there. I checked on the internet for morе information about
the issue and found most people will go along with your views on
this web site.

284. Contradiction Calvin Klein - March 20, 2014

I need to to thank you for this wonderful read!!
I definitely loved every bit of it. I have you bookmarked to
check out new things you post…

285. bazy danych firm - April 21, 2014

Our mailing and letter services includes
direct mail, it still allows you to have this mixed
media approach from using QR codes, to Twitter, to
Facebook. I show you how the n numbers break down:
We know that direct marketing ventures llc 90% of dealerships do
regular direct mail is opened by the recipient, and 45% is both opened and read direct mail.
This can be a bit tricky but there are more urgent tings that you can do this by focusing too much on pictures.

286. หลังคาเปิดปิดได้ - April 26, 2014

Admiring the time and energy you put into your
website and in depth information you present.
It’s good to come across a blog every once in a while that isn’t the same unwanted
rehashed information. Excellent read! I’ve saved your site and I’m adding your RSS feeds to my Google account.

287. 【5年保証付】ロンジン コンクエスト ダイヤインデックス セラミックベゼル ホワイトシェル レディース L3.257.4.87.7 - April 28, 2014

Relaxed and happy
【5年保証付】ロンジン コンクエスト ダイヤインデックス セラミックベゼル ホワイトシェル レディース L3.257.4.87.7 http://leneassessoriacontabil.com.br/images/IV8/Longines-index.html

288. FamilyHistoryOz - May 3, 2014

They are a very good way to promote business service.
Then consider yourself one of the few, true internet
marketers. It’s probably some mix of the two,
so I have to give him props for not going too far in either direction.

289. Olga - May 17, 2014

Nonprofit mail is not part therapy 8 melbourne grove of the work for you.
If the customers are happy with their menu, they are still considered advertising, which is measured quantitatively, more product
or service right into therapy 8 melbourne grove the heart of the market is
one example. So we were talking about direct mail campaigns is that you can use that.
3 Only supply your mailing house is going to make them look professional and effective.
Those are good things, but not everything.

290. naprawa dachu - June 5, 2014

Wybitnie odlotowy post, ciekawe zapisy zalecam wszystkim lekturę

291. best in ear headphone - June 6, 2014

Other people find that there are a lot less distractions when in a
cubicle and they get more work done. Here I list the top ten best available in comfort, quality and overall appeal.
When looking for quality headphones in this category, check for noise canceling headphones.

292. MI40 Scam - June 9, 2014

Your short post indicates that you are incredibly literate and effective at writing attention-catching writing.
Are you going to provide articles for other individuals?
I can also pay you for the work (hourly, per
write-up, .etc).

293. How To Read a Man Scam - June 10, 2014

I am giving out Thirteen dogecoins to the lucky bastard of a blog site manager with the
specific prize coupon code. The results shall be out
in 30 days time. The prize code is: XVYAL6

294. X fripouille - June 23, 2014

Je n’ai pas eu l’occasion de finir de lire toutefois je reviens
demain

295. active adult real estate - July 8, 2014

If one of the joint tenants decides to convey his
or her interest in the property to a new owner, the joint tenancy is broken,
thus creating a tenancy in common. This would have to cover parking of some kind for
the shoppers. You may uncover the residences are getting sold at rates much greater than your Maximum Allowable Offer and start out to think them.

296. motivational Football quotes - July 19, 2014

Hi! I just wanted to ask if you ever have any problems with hackers?
My last blog (wordpress) was hacked and I ended up losing several weeks of hard work due to no data backup.
Do you have any solutions to stop hackers?

297. offre d emploi chez les particuliers - July 28, 2014

Hello to all, the contents present at this web page are genuinely awesome
for people experience, well, keep up the good work fellows.

298. Phillipp - July 29, 2014

Good day! 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.

299. ubuntu - August 10, 2014

Thanks! I always wanted to do this but didn’t quite like OpenDNS.

300. ubuntu - August 10, 2014

thanks, I always wanted to do this but didn’t like opendns.I didnt know this way was possible

301. gagner de l'argent sur le web - August 16, 2014

Link exchange is nothing else but it is only placing the other person’s webpage link on your page at proper place and other
person will also do similar in favor of you.

302. diseño de oficinas corporativas en lima peru - September 1, 2014

Many companies today evolved into a collaborative team of employees.
Because your business is unique, you need to take a unique
approach to any interior office design, and look for commercial interior designers than understand your business style.
Companies can also lose money because worker productivity can be
driven down if the worker is in considerable pain when performing his or her
job.

303. skin care products - September 12, 2014

Link exchange is nothing else but it is just placing the other person’s weblog link on your page at
appropriate place and other person will also do similar in favor of you.

304. Susanne - September 16, 2014

My brother recommended I might like this web site. He was entirely right.

This post truly made my day. You cann’t imagine simply how much time I had spent for this info!

Thanks!

305. nyasf.org - September 21, 2014

Do you mind if I quote a couple of your articles as long as I provide credit and sources back to your weblog?
My blog site is in the exact same niche as yours and my users would truly
benefit from a lot of the information you provide here.

Please let me know if this okay with you. Thanks!

306. simpson tapped out cheat - September 23, 2014

Download The Simpsons Tapped Out Cheat.
The Simpsons Tapped Out Cheat is the best generator for Donut and Coins.
Now you don`t have worry about your account thanks to special
anti-ban system. Download now and have a fun.

307. coupons that Double - September 27, 2014

Hey! I just wanted to ask if you ever have any issues with hackers?
My last blog (wordpress) was hacked and I ended up losing several weeks of hard work due to no backup.
Do you have any solutions to stop hackers?

308. diseño de oficina pequeñas lima peru - October 5, 2014

The concept drawings will now advanced to detailed working drawings.

Microsoft has built the software this time in a manner that makes it usable
on Window 8 working tablet and other items. New office furniture is designed
with function and space in mind.

309. Otis - October 7, 2014

magnificent publish, very informative. I’m wondering why the opposite experts of this sector do not understand this.
You must continue your writing. I am sure, you have a huge readers’ base already!

310. onli blogging - October 8, 2014

DNS lokal cachen

Das Herumhantieren mit dem DNS-Server für cloudflare und der Hinweis zu DANE hat mich daran erinnert, dass ich vor einiger Zeit mal einen lokalen Cache für DNS-Anfragen haben wollte. Nach dieser Anleitung ist das mit dnsmasq auch nicht zu schwierig. Zu…

311. michael kors usa lighting philips - October 9, 2014

I have been exploring for a little bit for any high quality articles or weblog posts in this sort of
area . Exploring in Yahoo I finally stumbled upon this
website. Studying this info So i am glad to express that I’ve a very
excellent uncanny feeling I found out just what I needed.

I most for sure will make certain to do not omit this
website and give it a look on a continuing basis.

312. p90x supplements - October 20, 2014

It’s awesome to pay a quick visit this website and reading the views of
all colleagues on the topic of this article, while I
am also eager of getting familiarity.

313. evimtaş nakliyat - January 15, 2015

Reblogged this on evden eve tasima istanbul.

314. www.avis-sondages.fr - May 2, 2015

En compagnie de irréductible famille choqué fielleux l’componction destructrice irritant l’Cure patents
occupations finies

315. baltimorewaterdamage.pw - June 11, 2015

Very quickly this site will be famous among all blogging visitors, due to it’s nice
content

316. Norris Bramley - July 22, 2015

All three of these cameras are very simple to make use of, and do not require further drivers to be put in manually.

317. jualfruta - August 7, 2015

Excellent weblog right here! Also your site lots up very fast!
What host are you the usage of? Can I am getting your affiliate link
for your host? I want my site loaded up as quickly as yours lol

318. Ubuntu:Best way to set up DNS caching? – Ubuntu Linux Questions - November 7, 2015
319. Sacoche Longchamp Homme Prix - January 19, 2016

Sacoche Longchamp Homme Prix,portefeuille Longchamp bracelet entraîneur,Sac Longchamp Pliage Taille L,
portefeuille Longchamp bracelet entraîneur,Portefeuille Longchamp
Tissu,portefeuille Longchamp bracelet entraîneur,Sac Longchamp Bandouliere Jeune,portefeuille Longchamp bracelet entraîneur,sac longchamp pas
cher soldes en ligne,portefeuille Longchamp bracelet entraîneur,
Portefeuille Longchamp Tissu,portefeuille Longchamp bracelet entraîneur,
sac longchamp en bandoulière messenger rouge pas cher, sac
longchamp en bandoulire messenger rouge pas cher, sac longchamp en bandoulire messenger rouge
pas cher, sac longchamp en bandoulire messenger
rouge pas cher

320. City Building Game Ubuntu - March 18, 2016

[…] Local DNS Cache for Faster Browsing | Ubuntu Blog – Local DNS Cache for Faster Browsing August 2, 2006 Posted by Carthik in administration, guides, packages, ubuntu. trackback. A DNS server resolves domain … […]

321. www.avrupaelektrikaydinlatma.com - March 27, 2016

It’s actually a interesting along with useful part of data.. http://www.avrupaelektrikaydinlatma.com I will be happy that you just distributed this convenient info with us. Please stop us knowledgeable similar to this. Many thanks for spreading.

322. What Is My Ip Local Ubuntu | Noyati4 - May 2, 2016

[…] Local DNS Cache for Faster Browsing | Ubuntu Blog – … for a way to speed up recurring DNS lookups on my Ubuntu box. I found a reference to Local DNS Cache for … gets it’s local IP address using DHCP … […]

323. GeraldRek - July 24, 2017

Whether you meet someone on-line, in a social group, or begin chatting with them at the bus quit, it’s essential to always keep safety in mind. Even when you’ve been introduced by friends, you should be careful about revealing individual details too rapidly.

Does the supplier have a quantity portability policy? Nearly every thing in technologies is transportable these days. Your get virtual sms number ought to be too. A assured provider will give you the choice of using your quantity with you ought to you select to depart their services. A company that is not confident in their service might resort to holding your get virtual sms number hostage in order to keep you from heading elsewhere.

You get tons of great, free features and choices for doing/managing a lot much more such as a great deal more than the internet and it’s SO much less expensive (at minimum it is for me!). Becoming the ‘average guy’ I am, I don’t really use all the attributes. Luckily, it’s fairly a lot a ‘set it up and forget about it’ type thing besides that I conserve $40+/month w/ it!

You don’t require to have a fax message printout from a fax machine so that you can be in a position to read it. You might obtain an online fax message file, open it, and view it from your computer keep track of. This indicates the dedicated phone connected to it stays accessible.

Never, ever, allow anybody place you on silent maintain. If your VoIP services doesn’t hear something on that line for several minutes (how numerous seems to differ), it may merely disconnect you, evidently on the theory your phone is actually off the hook.

With the texting API facility, you can attain across to a number of recipients with just 1 SMS. You do not have to spend extra charges for utilizing the SMS gateway.

http://www.astaaneh.com/user/LettiePrichard7/

324. Oxandrolone for Sale - March 28, 2018

[…] US Order Oxandrolone in US Order Oxandrolone in US Order Oxandrolone in US Order Oxandrolone in US Order Oxandrolone in US Order Oxandrolone in US Order Oxandrolone in US Order Oxandrolone in US Order Oxandrolone in US […]

325. access control reader types - April 23, 2018

Access Control Hikvision

Local DNS Cache for Faster Browsing | Ubuntu Blog

326. perfect Loan - February 11, 2019

$$$ GENUINE LOAN WITH 3% INTEREST RATE APPLY NOW$$$
Do you need finance to start up your own business or expand your business, Do you need funds to pay off your debt? We give out loan to interested individuals and company’s who are seeking loan with good faith. Are you seriously in need of an urgent loan contact us.
Email:perfectfinancialcredite@gmail.com
LOAN APPLICATION DETAILS.
First Name:
Last Name:
Date Of Birth:
Address:
Sex:
Phone No:
City:
Zip Code:
State:
Country:
Nationality:
Occupation:
Monthly Income:
Loan Amount:
Loan Duration:
Purpose of the loan:
Which sites did you know about us…..
Email:perfectfinancialcredite@gmail.com

327. Akyüz Nakliyat - February 6, 2021

Akyüz evden eve nakliyat nakliye taşımacılık depolama kiralık liftli kamyon kamyonet beykoz kavacık istanbul en iyi nakliyat firması

http://www.akyuztur.com

328. Antalya Eşya Depolama - December 1, 2021

It’s actually a interesting along with useful part of data..

329. DNS 캐싱을 설정하는 가장 좋은 방법은 무엇입니까? 프로그램이 3 개 - How IT - March 3, 2022

[…] 여기에 좋은 튜토리얼을보십시오; https://embraceubuntu.com/2006/08/02/local-dns-cache-for-faster-browsing/ […]

330. Best way to set up DNS caching? – MULANHAOWU - April 4, 2022

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: