A error in dns

These are old archives. They are kept for historic purposes only.
Post Reply
pony13
Posts: 5
Joined: Fri Sep 08, 2006 1:03 pm

A error in dns

Post by pony13 »

Hello
I have a error.
* Loading IRCd configuration ..
* unrealircd.conf:742: Ignoring extra data
* unrealircd.conf:742: Ignoring extra data
[error] set::dns::timeout is missing
[error] 1 errors encountered
[error] IRCd configuration failed to pass testing

that is from the dns ; nameserver enz..
What can i do?
tdw
Posts: 105
Joined: Sat Aug 06, 2005 12:40 pm

Post by tdw »

paste the 10 lines around line 742 ..
pony13
Posts: 5
Joined: Fri Sep 08, 2006 1:03 pm

Post by pony13 »

Code: Select all

set {
	kline-address "myemail";
	modes-on-connect "+ixw";
	modes-on-oper	 "+xwgs";
	oper-auto-join "#opers";
	dns {
		nameserver myip
		timeout 9s;
		retries 60;
	};
	options {
		hide-ulines;
		/* Je kan hier ident checking aanzetten als je wilt */
		/* identd-check; */
		show-connect-info;
	};

	maxchannelsperuser 10;
	/* Hoelang een gebruiker minimaal verbonden moet zijn voordat hij toegestaan wordt het
	 * QUIT bericht te gebruiken. Dit stopt spam hopelijk. */
	anti-spam-quit-message-time 10s;
	/* Stelt een tekst in die standaard wordt gebruikt voor een quit.
	 * Houdt in dat er geen eigen quits gebruikt mogen worden op deze server. */
	/* static-quit "Client quit";	*/
Last edited by pony13 on Fri Sep 08, 2006 11:19 pm, edited 1 time in total.
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Post by Jobe »

Ok you need to change "myip" in the following to an ACTUAL IP address and then put a ; on the end of the line:

Code: Select all

nameserver myip
For example:

Code: Select all

nameserver 127.0.0.1;
Also you need to specify an existing email address in the format mailbox@domain for "kline-address". For example (NOT a real email address):

Code: Select all

kline-address "[email protected]";
tdw
Posts: 105
Joined: Sat Aug 06, 2005 12:40 pm

Post by tdw »

I think he censored those ;)
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Post by Jobe »

Hey it was before lunch time. I was still half asleep.
Post Reply