[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-developers] IP address limit



At 12:10 2000-06-29 -0400, you wrote:
Does anyone know the maximum allowed IP addresses for a Raq3i?

I ask because I have a Raq3i with 128 IP's and now the dns server won't
start.  I have been told it is because the Raq tries to answer for dns
on all IP's.  I looked in the Raq3 manual and the knowledgebase and see
nothing about this.  Anyone?

Thanks in advance.

In your named.conf, add this under options:

listen-on { 127.0.0.1; 192.168.1.1; 192.168.2.1; };

Replace 192.168.1.1 with the IP of your eth0 and 192.168.2.1 with the IP of you eth1. Now bind only listens on lo, eth0 and eth1. Your options row in named.conf now would look something like this:

options {
     directory "/etc/named";
     listen-on { 127.0.0.1; 192.168.1.1; 192.168.2.1;  };
};

Good luck.