Hi all,<br>
<br>
 I'm in the process of moving DNS services from my FreeBSD box to
my Sun server, which is running OpenBSD 3.7. I figured that the config
would be similar, and it is.... but I've run in to a bit of a snag and
I'm wondering if anyone can either help me out or better interpret the
man page for me (which I have to say is not terribly helpful, it's
really just a string of syntax examples)<br>
<br>
On the freeBSD box (5.4 release) I used this line to set up forwarders:<br>
<br>
<br>
forwarders {<br>
                <a href="http://205.231.144.10">205.231.144.10</a>;  <a href="http://205.231.144.20">205.231.144.20</a>;<br>
        };<br>
<br>
<br>
But when I try this on the OpenBSD system named errors out with the message:<br>
<br>
Starting privilege seperation<br>
26-Sep-2005 19:38:50.496 starting BIND 9.3.0 -g<br>
26-Sep-2005 19:38:50.518 loading configuration from '/etc/named.conf'<br>
26-Sep-2005 19:38:50.520 /etc/named.conf:26: unknown option 'forwarders'<br>
26-Sep-2005 19:38:50.522 loading configuration: failure<br>
26-Sep-2005 19:38:50.523 exiting (due to fatal error)<br>
<br>
<br>
<br>
in  named.conf(5) I find this:<br>
<br>
forwarders [ port integer ] {<br>
                
( ipv4_address | ipv6_address ) [ port integer ]; ...<br>
            };<br>
<br>
<br>
Which would seem to me to indicate that forwarders can be used.<br>
<br>
So is this just me being stupid about syntax? <br>
<br>
Any light that anyone can shed here will be appreciated. <br>