>
> bind reports me in the logfile that i have an error in my forwarders line.
>
> in my named.conf i wrote:
>
> ....
> forwarders {
> 145.253.2.139 145.253.2.11
> };
> ....
>
> do i have to use another character than a space between those two ips ?
>
the correct syntax is :
...
forwarders {
145.253.2.139; 145.253.2.11;
};
...