Results 1 to 3 of 3
1)
I was following a guide to setup bind again after I formatted to Ubuntu 10.04.2 LTS.
Configuration
I can get my domain example.com to resolve but I want "www.example.com" ...
- 09-11-2011 #1Just Joined!
- Join Date
- Jun 2008
- Posts
- 84
bind9: example.com works, www.example.com doesnt, and how to block url
1)
I was following a guide to setup bind again after I formatted to Ubuntu 10.04.2 LTS.
Configuration
I can get my domain example.com to resolve but I want "www.example.com" to resolve to the actual domain on the web.
I don't have a webserver setup on my domain at the moment so I would rather it resolve properly.
So "ping example.com" works and resolves to my local address but "ping www.example.com" gives "ping: unknown host www.example.com".
Here is the file db.example.com,
I tried adding in a www entry but it only resolves to the same local ip as example.com so I commented it out.Code:; ; BIND data file for example.com ; $TTL 604800 @ IN SOA ns.example.com. root.example.com. ( 9 ; Serial 604800 ; Refresh 86400 ; Retry 2419200 ; Expire 604800 ) ; Negative Cache TTL ; @ IN NS ns.example.com. @ IN A 10.11.12.1 ;www IN A 10.11.12.1 ns IN A 10.11.12.1
2)
I am planning on adding all of the urls from the ad block site http://winhelp2002.mvps.org/hosts.txt to bind so as to block them on my network.
So how would I add this list to bind?
- 09-12-2011 #2
Remove the ';' infornt of the www record and add the ip address of the server to it. But that is not going to work so simple as once the packet is received on the web server if it doesn't have a entery for www..example.com it's going to give you a 404 error or what ever the error is for 'page not found'.
See above as to why it still will not work.I tried adding in a www entry but it only resolves to the same local ip as example.com so I commented it out.
Yeah that isn't going to work either. You need to setup a zone file for every domain in order to do this and that is way too much time and effort.2)
I am planning on adding all of the urls from the ad block site http://winhelp2002.mvps.org/hosts.txt to bind so as to block them on my network.
So how would I add this list to bind?
That link above is a host file just use that. Host files are great for this.
- 09-13-2011 #3


Reply With Quote
