Bind forwarding...

2012-04-15 Thread Markus Braun

Hello,
how can i make a bind forwarding something like this:
 DNS server to forward Guzzoni.apple.com traffic to own IP?

thank you
marcus!   ___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Configuring CNAME for nosslsearch.google.com

2012-04-15 Thread Tobias Krais
Hi together,

I am a newbie to bind and wasted hours to create my first bind
configuration. My target is simply creating a configuration with a CNAME
for www.google.com to nosslsearch.google.com.

First: I use Ubuntu Precise Pangolin with bind 9.8.1. I have a
transparent proxy (Dansguardian + Squid) that I use for just this lonely
copmuter.

Now I read that I have to create a zone for google.com. Others said that
it is OK to create a zone for www.google.com. But as far as I understand
this won't be a great solution.

Can you help me to create a zone for google.com that does only one
thing: a CNAME for www.google.com to nosslsearch.google.com. It would be
best, if all IP-addresses for other google.com subdomains like
docs.google.com or even nosslsearch.google.com are taken from the
normal nameserver, e.g. 8.8.8.8.

Can anyone help me to create my /etc/bind/db.google.com file?

Greetings,

Tobias
___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: Bind forwarding...

2012-04-15 Thread Chris Buxton
To the IP address of the DNS server? As in, recursive queries sent to the 
server asking for this name will be forwarded on to... the same DNS server? 
That would only work if you had views enabled.

However, if what you really want is that such queries are answered with an A 
record pointing to the name server (or some other host), rather than getting 
the real answer from Apple's name servers, what you want is an authoritative 
zone, not forwarding.

zone guzzoni.apple.com {
type master;
file short-circuit-queries.db;
};

Chris Buxton
BlueCat Networks

On Apr 15, 2012, at 11:15 AM, Markus Braun wrote:

 Hello,
 
 how can i make a bind forwarding something like this:
 
  DNS server to forward Guzzoni.apple.com traffic to own IP?
 
 thank you
 
 marcus!
 ___
 Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
 from this list
 
 bind-users mailing list
 bind-users@lists.isc.org
 https://lists.isc.org/mailman/listinfo/bind-users

___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Re: Configuring CNAME for nosslsearch.google.com

2012-04-15 Thread Ben Croswell
What you are asking for can't be done.
If you load the google.com zone everything you don't load in the zone will
be black holed and not resolve.
If you try to load WWW.Google.com you will not be able to make WWW a cname
due to the no cname and other data rule.
 On Apr 15, 2012 5:39 PM, Tobias Krais tux-s...@design-to-use.de wrote:

 Hi together,

 I am a newbie to bind and wasted hours to create my first bind
 configuration. My target is simply creating a configuration with a CNAME
 for www.google.com to nosslsearch.google.com.

 First: I use Ubuntu Precise Pangolin with bind 9.8.1. I have a
 transparent proxy (Dansguardian + Squid) that I use for just this lonely
 copmuter.

 Now I read that I have to create a zone for google.com. Others said that
 it is OK to create a zone for www.google.com. But as far as I understand
 this won't be a great solution.

 Can you help me to create a zone for google.com that does only one
 thing: a CNAME for www.google.com to nosslsearch.google.com. It would be
 best, if all IP-addresses for other google.com subdomains like
 docs.google.com or even nosslsearch.google.com are taken from the
 normal nameserver, e.g. 8.8.8.8.

 Can anyone help me to create my /etc/bind/db.google.com file?

 Greetings,

 Tobias
 ___
 Please visit https://lists.isc.org/mailman/listinfo/bind-users to
 unsubscribe from this list

 bind-users mailing list
 bind-users@lists.isc.org
 https://lists.isc.org/mailman/listinfo/bind-users

___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Re: Configuring CNAME for nosslsearch.google.com

2012-04-15 Thread Tobias Krais
Hi Ben,

hmm. How can I manage what google suggests:
Information for school network administrators about the No-SSL option

To utilize the no SSL option for your network, configure the DNS entry
for www.google.com to be a CNAME for nosslsearch.google.com.
Source:
http://support.google.com/websearch/bin/answer.py?hl=enhlrm=enanswer=186669.
You can find this quite at the end of the document.

How can I realize such a configuration in bind?

Greetings,

Tobias

Am 16.04.2012 00:31, schrieb Ben Croswell:
 What you are asking for can't be done.
 If you load the google.com http://google.com zone everything you don't
 load in the zone will be black holed and not resolve.
 If you try to load WWW.Google.com http://WWW.Google.com you will not
 be able to make WWW a cname due to the no cname and other data rule.
 
 On Apr 15, 2012 5:39 PM, Tobias Krais tux-s...@design-to-use.de
 mailto:tux-s...@design-to-use.de wrote:
 
 Hi together,
 
 I am a newbie to bind and wasted hours to create my first bind
 configuration. My target is simply creating a configuration with a CNAME
 for www.google.com http://www.google.com to nosslsearch.google.com
 http://nosslsearch.google.com.
 
 First: I use Ubuntu Precise Pangolin with bind 9.8.1. I have a
 transparent proxy (Dansguardian + Squid) that I use for just this lonely
 copmuter.
 
 Now I read that I have to create a zone for google.com
 http://google.com. Others said that
 it is OK to create a zone for www.google.com
 http://www.google.com. But as far as I understand
 this won't be a great solution.
 
 Can you help me to create a zone for google.com http://google.com
 that does only one
 thing: a CNAME for www.google.com http://www.google.com to
 nosslsearch.google.com http://nosslsearch.google.com. It would be
 best, if all IP-addresses for other google.com http://google.com
 subdomains like
 docs.google.com http://docs.google.com or even
 nosslsearch.google.com http://nosslsearch.google.com are taken
 from the
 normal nameserver, e.g. 8.8.8.8.
 
 Can anyone help me to create my /etc/bind/db.google.com
 http://db.google.com file?
 
 Greetings,
 
 Tobias
 ___
 Please visit https://lists.isc.org/mailman/listinfo/bind-users to
 unsubscribe from this list
 
 bind-users mailing list
 bind-users@lists.isc.org mailto:bind-users@lists.isc.org
 https://lists.isc.org/mailman/listinfo/bind-users
 
___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users