error binding

These are old archives. They are kept for historic purposes only.
Post Reply
Angrycat

error binding

Post by Angrycat »

Hi,

I am having major problems binding my shells together with the latest version.

Everything was good with 3.1. yet now I cant seem to get it to work

Code: Select all

link            my.irc.network
{
	username	*;
	hostname 	my.irc.network;
	bind-ip 	111.222.333.444;
	port 		6667;
	hub             *;
	password-connect "somepasshere";
	password-receive "somepasshere";
	class           servers;
		options {
			autoconnect;
			};
};

log is just saying

Code: Select all

[Fri Oct 21 08:10:15 2005] - error binding to local port for my.irc.network:Can't assign requested address
:: edited for spelling ::
aegis
Posts: 19
Joined: Thu Jan 06, 2005 3:15 am
Location: Holyoke, MA

Re: error binding

Post by aegis »

NOTE: `remoteserver.network.net' is a representation of the remote server

Code: Select all

link remoteserver.network.net {
	username *;
	hostname 1.2.3.4; // Use the IP address of remoteserver.network.net
	bind-ip *;
	port 7777; // Link on a port different than clients connect (suggestion) :P
	hub *;
	password-connect "SendThisPassToRemoteServer";
	password-receive "GetThisPassFromRemoteServer";
	class servers;
	options {
		autoconnect;
	};
};
aegis
Post Reply