error on line 344 and 345 in unrealircd conf

These are old archives. They are kept for historic purposes only.
Post Reply
luke9511
Posts: 4
Joined: Mon Sep 01, 2008 11:20 pm

error on line 344 and 345 in unrealircd conf

Post by luke9511 »

hello all i hope your all well, im new to the forums and am trying to setup unrealircd on fedora 9 and keep getting these errors when i try to start the server.

Code: Select all

unrealircd.conf:343: Ignoring extra data
[error] unrealircd.conf:344: Unknown directive 'listen::services.roxnet.org'
[error] unrealircd.conf:345: Unknown directive 'listen::stats.roxnet.org'
now heres the lines they are speaking of

Code: Select all

ulines {
	services.roxnet.org;
	stats.roxnet.org;
};
if you need something else or know how to fix it please let me know thanks
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Re: error on line 344 and 345 in unrealircd conf

Post by Jobe »

Can you show us ALL your listen blocks please?
Your IP: Image
Your Country: Image
luke9511
Posts: 4
Joined: Mon Sep 01, 2008 11:20 pm

Re: error on line 344 and 345 in unrealircd conf

Post by luke9511 »

Jobe1986 wrote:Can you show us ALL your listen blocks please?
i sure can here you go :)

ssl listen(i think)

Code: Select all

listen         127.0.0.1:6667
#{
#	options
#	{
#		ssl;
#		clientsonly;
#	};
#};
#
#listen         127.0.0.1:7000;
#listen         192.168.0.104:6667;
dont know if this is one or not but here it is just incase

Code: Select all

#link            127.0.0.1
#{
#	username	*;
#	hostname 	127.0.0.1;
#	bind-ip 	127.0.0.1;
#	port 		7000;
#	hub             *;
#	password-connect "d3aths7ar";
#	password-receive "d3aths7ar";
#	class           servers;
#		options {

Code: Select all

set {
	network-name 		"LUKEnet";
	default-server 		"lukeirc.webhop.net";
	services-server 	"127.0.0.1";
	stats-server 		"127.0.0.1";
	help-channel 		"#help";
	hiddenhost-prefix	"rox";

Code: Select all

hosts {
		local		"locop.roxnet.org";
		global		"ircop.roxnet.org";
		coadmin		"coadmin.roxnet.org";
		admin		"admin.roxnet.org";
		servicesadmin 	"csops.roxnet.org";
		netadmin 	"netadmin.roxnet.org";
		host-on-oper-up "no";
	};
};
if thats to much let me know and let me know if thats not it
zEkE
Posts: 111
Joined: Wed Apr 14, 2004 9:30 am
Location: Harrisonburg, VA
Contact:

Re: error on line 344 and 345 in unrealircd conf

Post by zEkE »

listen 127.0.0.1:6667
#{
# options
# {
# ssl;
# clientsonly;
# };
#};
That could be your problem, you need to either uncomment the lower lines, or add a ";" after the 6667, so it would read
listen 127.0.0.1:6667;
NetAdmin - irc.unitedchristianchat.net
http://www2.i-al.net/ircbots/
luke9511
Posts: 4
Joined: Mon Sep 01, 2008 11:20 pm

Re: error on line 344 and 345 in unrealircd conf

Post by luke9511 »

zEkE wrote:
listen 127.0.0.1:6667
#{
# options
# {
# ssl;
# clientsonly;
# };
#};
That could be your problem, you need to either uncomment the lower lines, or add a ";" after the 6667, so it would read
listen 127.0.0.1:6667;
i tryed changing it just now to my lan ip and my global ip and also a dyndns ip and it still didnt work, but i did get rid of the others and now im getting this

Code: Select all

[Mon Sep  1 15:37:49 2008] - Error binding stream socket to IP 74.244.246.39 port 7000 - 74.244.246.39[]:Cannot assign requested address
[Mon Sep  1 15:38:42 2008] - setsockopt(IP_OPTIONS) 74.244.246.39[]:No message of desired type
[Mon Sep  1 15:38:42 2008] - Error binding stream socket to IP 74.244.246.39 port 7000 - 74.244.246.39[]:Cannot assign requested address
[Mon Sep  1 15:39:45 2008] - setsockopt(IP_OPTIONS) 192.168.0.104[]:No message of desired type
[Mon Sep  1 15:39:45 2008] - Error binding stream socket to IP 192.168.0.104 port 7000 - 192.168.0.104[]:Address already in use
zEkE
Posts: 111
Joined: Wed Apr 14, 2004 9:30 am
Location: Harrisonburg, VA
Contact:

Re: error on line 344 and 345 in unrealircd conf

Post by zEkE »

luke9511 wrote:i tryed changing it just now to my lan ip and my global ip and also a dyndns ip and it still didnt work, but i did get rid of the others and now im getting this

Code: Select all
[Mon Sep 1 15:37:49 2008] - Error binding stream socket to IP 74.244.246.39 port 7000 - 74.244.246.39[]:Cannot assign requested address
[Mon Sep 1 15:38:42 2008] - setsockopt(IP_OPTIONS) 74.244.246.39[]:No message of desired type
[Mon Sep 1 15:38:42 2008] - Error binding stream socket to IP 74.244.246.39 port 7000 - 74.244.246.39[]:Cannot assign requested address
[Mon Sep 1 15:39:45 2008] - setsockopt(IP_OPTIONS) 192.168.0.104[]:No message of desired type
[Mon Sep 1 15:39:45 2008] - Error binding stream socket to IP 192.168.0.104 port 7000 - 192.168.0.104[]:Address already in use
Is this on your gateway, or on a separate computer?

If this is not on your gateway, you won't be able to bind to the global IP, as it is not an IP known to the PC - it'll need to bind only to the local lan IP, and ports forwarded from the router. Is anything else using port 7000 on 192.168.0.104?
NetAdmin - irc.unitedchristianchat.net
http://www2.i-al.net/ircbots/
luke9511
Posts: 4
Joined: Mon Sep 01, 2008 11:20 pm

Re: error on line 344 and 345 in unrealircd conf

Post by luke9511 »

zEkE wrote:
luke9511 wrote:i tryed changing it just now to my lan ip and my global ip and also a dyndns ip and it still didnt work, but i did get rid of the others and now im getting this

Code: Select all
[Mon Sep 1 15:37:49 2008] - Error binding stream socket to IP 74.244.246.39 port 7000 - 74.244.246.39[]:Cannot assign requested address
[Mon Sep 1 15:38:42 2008] - setsockopt(IP_OPTIONS) 74.244.246.39[]:No message of desired type
[Mon Sep 1 15:38:42 2008] - Error binding stream socket to IP 74.244.246.39 port 7000 - 74.244.246.39[]:Cannot assign requested address
[Mon Sep 1 15:39:45 2008] - setsockopt(IP_OPTIONS) 192.168.0.104[]:No message of desired type
[Mon Sep 1 15:39:45 2008] - Error binding stream socket to IP 192.168.0.104 port 7000 - 192.168.0.104[]:Address already in use
Is this on your gateway, or on a separate computer?

If this is not on your gateway, you won't be able to bind to the global IP, as it is not an IP known to the PC - it'll need to bind only to the local lan IP, and ports forwarded from the router. Is anything else using port 7000 on 192.168.0.104?
not that i know of, i also managed to get it to work once just a bit ago and it only worked locally
Post Reply