Posts Tagged dns
Amazon keeps doing it again and again! AWS route53
Posted by Jon Zobrist in AWS, internet, Route53 on June 6, 2011
Amazon almost makes me laugh whenever I sign up my small business for one of their “Amazon Web Services” (AWS).
This time, it’s their new DNS hosting called “Amazon Route53″
Checkout the screen shot of the pricing. Seriously? $1/month plus a whopping $.50 per BILLION queries. Seriously? A Billion? Almost 1 in 10 people on the planet would have to make a single DNS request to dent my pocket book a whopping half a dollar?
Well, Amazon will indeed have wrested begrudgingly my half dollar from my hand that first month I get my billion queries worth.
LCOD – 3.12.07 – Speeding up your DNS queries
Posted by Jon Zobrist in Linux, Linux Command of the Day on March 12, 2007
To change to use OpenDNS instead of your own, or worse! your ISP’s crappy, poorly maintained dns server, you can follow the instructions here.
http://opendns.com/start/
The basic info is to put in these 2 IP’s as your dns servers
208.67.222.222
208.67.220.220
On Linux/*BSD you’d put them in your /etc/resolv.conf file like this
nameserver 208.67.222.222
nameserver 208.67.220.220
If you’d like to double whammy your performance run a local cache, I use DJB’s djbdns dnscache in forwarding only mode, as described here.
http://cr.yp.to/djbdns/run-cache-x-home.html
With the above IP’s in the @ file.
Installing DJB’s stuff is cake, you can pretty much cut & paste his instructions found here
http://cr.yp.to/djbdns/install.html
Of course you’ll need Daemontools, and ucspi, install instructions (cut & pasteable) here
http://cr.yp.to/daemontools/install.html
http://cr.yp.to/ucspi-tcp/install.html
If you get compilation errors cuz DJB hasn’t fixed a bug in his code and some systems (lots of recent Linux systems), run these commands.
(run after you’ve extracted the archive, and cd’d into it’s directory, and run for EACH install.) You may get a no such file for the src one on some, but he mixes software locations, so just run em both.
perl -pi -e ‘s/extern int errno\;/\#include <errno.h>/’ *
perl -pi -e ‘s/extern int errno\;/\#include <errno.h>/’ src/*
Enjoy!
