Disconnect Link without restarting server

These are old archives. They are kept for historic purposes only.
Post Reply
Gaudeamus
Posts: 8
Joined: Sat Jan 15, 2005 8:36 am

Disconnect Link without restarting server

Post by Gaudeamus »

I would like to temporarily disconnect a remote leaf from my hub but i do not wish to restart my hub (which is local). Could not find any command that is the opposite of /connect and have tried some commands I think would be like it and could not figure it out.
Gaudeamus
Posts: 8
Joined: Sat Jan 15, 2005 8:36 am

Post by Gaudeamus »

Also need a command to remove all glines, made a script for an oper who seems to never be active online anymore and it looks like he configured it wrong and it's glining TONS of hosts that are connecting, wish to disconnect his server from my hub and remove all the glines since all of them have been made with my script.
mexx3k
Posts: 17
Joined: Sun Apr 10, 2005 8:54 pm
Location: Chaoz-IRC
Contact:

Post by mexx3k »

Gaudeamus wrote:I would like to temporarily disconnect a remote leaf from my hub but i do not wish to restart my hub (which is local).
try on the hub:

Code: Select all

/squit leaf.net.tld
Gaudeamus wrote:Also need a command to remove all glines
check the module "rm_tkl", could be by angrywolf ...
Winbots
Posts: 65
Joined: Wed Apr 21, 2004 12:26 am
Location: irc://irc.winbots.org/Winbots
Contact:

Post by Winbots »

Code: Select all

#ungline_wild off 
raw 223:*G*:{ 
   if (%ungline_wc iswm $3-) { gline - $+ $3 } 
} 
raw 219:*:{  
  disable #ungline_wild | unset %ungline_wc  
} 
#ungline_wild end 
alias ungline_wild
  set %ungline_wc $1- | enable #ungline_wild | stats g  
}
that should do what ya want... just /ungline_wild *wild*card*here... or just to ungline everyone, /ungline_wild *
Gaudeamus
Posts: 8
Joined: Sat Jan 15, 2005 8:36 am

Post by Gaudeamus »

The /squit works great, but the script doesn't. It neither removes any glines or shows stats g, but i get no unknown command errors so it's loaded right, thanks for the help and i'm looking for the rm_tkl for win32 3.2.3....
aquanight
Official supporter
Posts: 862
Joined: Tue Mar 09, 2004 10:47 pm
Location: Boise, ID

Post by aquanight »

Jason
Posts: 570
Joined: Mon Jun 14, 2004 5:09 pm

Post by Jason »

Did you read the help for rm_tkl? /rmtkl G * to remove all glines
Why the hell can't my signature be empty?
"Your message contains too few characters."
Winbots
Posts: 65
Joined: Wed Apr 21, 2004 12:26 am
Location: irc://irc.winbots.org/Winbots
Contact:

Post by Winbots »

Code: Select all

#ungline_wild off 
raw 223:*G*:{ 
   if (%ungline_wc iswm $3-) { gline - $+ $3 } 
} 
raw 219:*:{  
  disable #ungline_wild | unset %ungline_wc  
} 
#ungline_wild end 
alias ungline_wild {
  set %ungline_wc $1- | enable #ungline_wild | stats g  
}
oops :oops: ya kinda need the "{" after the alias ungline_wild
Matridom
Posts: 296
Joined: Fri Jan 07, 2005 3:28 am

Post by Matridom »

I guess i'm lazy. I use neostats to report a lot of the server information. then wrote a web interface(php with a socket connection) to remove bans based on that information.
Never argue with an idiot. They will bring you down to their level, then beat you with experience.
Gaudeamus
Posts: 8
Joined: Sat Jan 15, 2005 8:36 am

Post by Gaudeamus »

that's really nice, would you be willing to share the php code?
Matridom
Posts: 296
Joined: Fri Jan 07, 2005 3:28 am

Post by Matridom »

Gaudeamus wrote:that's really nice, would you be willing to share the php code?
it's messy, but i don't mind sharing. I can get up late tonight sometime.
Never argue with an idiot. They will bring you down to their level, then beat you with experience.
Gaudeamus
Posts: 8
Joined: Sat Jan 15, 2005 8:36 am

Post by Gaudeamus »

Kewl, i'll be home tomorrow
Matridom
Posts: 296
Joined: Fri Jan 07, 2005 3:28 am

Post by Matridom »

Gaudeamus wrote:Kewl, i'll be home tomorrow
I posted it here.

http://forums.unrealircd.com/viewtopic.php?t=1996
Never argue with an idiot. They will bring you down to their level, then beat you with experience.
Gaudeamus
Posts: 8
Joined: Sat Jan 15, 2005 8:36 am

Post by Gaudeamus »

Got it, thanks
Post Reply