LocOps -- Link denied

These are old archives. They are kept for historic purposes only.
Post Reply
Warrior1968
Posts: 2
Joined: Fri Oct 08, 2010 1:46 pm
Contact:

LocOps -- Link denied

Post by Warrior1968 »

Hello..

I have been getting this since yesterday after we went live... I have been through the configs and its driving me up the wall any Ideas :twisted:

-hub.chainscriptz.net- *** Notice -- Connection to irc2.chainscriptz.net[67.] activated.
-hub.chainscriptz.net- *** LocOps -- Link denied for irc.chainscriptz.net(unknown@67.) (Server is in link block but IP/host didn't match) irc2.chainscriptz.net[@67.]

Code: Select all

*/


link            irc2.chainscriptz.net
{
	username	*;
	hostname 	67.43.228.207;
	bind-ip 	216.18.189.249;
	port 		12345;
	leaf            *;
	password-connect "Sorry thats";
	password-receive "A secret";
	class           servers;
		options {
			autoconnect;
		};
};
link            irc.chainscriptz.net
{
        username        *;
        hostname        72.20.51.86;
        bind-ip         216.18.189.249;
        port            12345;
        leaf            *;
        password-connect "not telling you";
        password-receive "blocked";
        class           servers;
                options {
                        autoconnect;
                };
};
link            services.chainscriptz.net
{
        username        *;
        hostname        216.18.189.249;
        bind-ip         216.18.189.249;
        port            6667;
        hub             *;
        password-connect "its a";
        password-receive "secret";
        class           servers;
                options {
                };
};

Code: Select all

link            hub.chainscriptz.net
{
	username	*;
	hostname 	216.18.189.249;
	bind-ip 	67.43.228.207;
	port 		12345;
	hub             *;
	password-connect "this is a";
	password-receive "secret";
	class           servers;
		options {
			autoconnect;
		};
};

Many thanks... :D
deleted-46527

Re: LocOps -- Link denied

Post by deleted-46527 »

Try making your bind IP to a wildcard = *
Try changing the host name to localhost
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Re: LocOps -- Link denied

Post by Jobe »

Also the error says "link denied for irc.chainscriptz.net" but your link blocks are for irc2.chainscriptz.net and hub.chainscriptz.net, neither of which are irc.chainscriptz.net.
Your IP: Image
Your Country: Image
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: LocOps -- Link denied

Post by katsklaw »

deleted-46527 wrote:Try changing the host name to localhost
Uhm, no. the host name should be the IP address of the REMOTE server we are expecting the connection to be from. Secondly, we don't use names in link blocks, we use IPs unless we have no other choice. ie linking to a dynamic IP via no-ip or the like. The less ambiguity in the config file the better.

Something like this:

Code: Select all

link            hub.chainscriptz.net
{
   username   *;
   hostname    216.18.189.249;
   bind-ip    *;
   port       12345;
   hub             *;
   password-connect "password-we-send";
   password-receive "password-they-send";
   class           servers;
    options {
       autoconnect;
      };
};
Warrior1968
Posts: 2
Joined: Fri Oct 08, 2010 1:46 pm
Contact:

Re: LocOps -- Link denied

Post by Warrior1968 »


hi katsklaw

Yes it was the issue,and was corrected thank fully,it was annoying too... after much reading through the configs its nice for some one to give a second opinion and spot the faults.. :D

I have just returned to IRC after a 3 yr gap and I unfortunately used a host that did the set up for me and spotted few errors and spent a age to fix or set up.. now wished I did it myself. :roll:

Just need to find a way to fix chanserv, taking ops in channel after I give them,im sure their is a way,just I've forgotten :lol:
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: LocOps -- Link denied

Post by katsklaw »

turn secureops off.
Post Reply