This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Weird nb_ctrlbots issue?

Old posts that have not been replied to for several years.
Locked
T
Techdude

Weird nb_ctrlbots issue?

Post by Techdude »

If i try to do a netbots command from my hub, D1, i get [17:49] netbots: rejected command from D1 (not a control bot). on my other bots...i'm sure all bots are on the same version of the netset....

Heres my netset for this botnet...

# netbots.tcl settings
set nb_flag N
set nb_key "8fhdefecv7"

set nb_ctrlbots(*) "*"
set nb_defctrl "*"
set nb_owner 1
set nb_max 4
set nb_timeout 60
set nb_netupdate 2
set nb_nettcl 1
set nb_update ""
set nb_chon 1
set nb_broadcast "nm"
set nb_cmdcast 1
set nb_castfilter "addhost ident .chpass .newpass .note pass note notes .notes die restart rehash info op voice reset status jump key save invite memory auth"


# chanlimit.tcl settings
set nb_component(chanlimit) 1
set cl_priority ""
set cl_chans ""
set cl_echans ""
set cl_limit 10
set cl_grace 2
set cl_timer 10
set cl_server 1
set cl_log 1

# These lines make sure your bot and netbots directories are secure by
# setting their permissions to rwx------.
catch {exec chmod 700 [pwd]}
catch {exec chmod 700 $nb_dir}
User avatar
slennox
Owner
Posts: 593
Joined: Sat Sep 22, 2001 8:00 pm
Contact:

Post by slennox »

nb_ctrlbots(*) "*" isn't a valid setting. If you set the bot list to *, it expects a list of commands, and when you put in "*" it actually takes it literally (i.e. accept the command "*" from all bots). If it were valid, it would just achieve the same effect as nb_ctrlbots "" anyway.

Until you want to go back to using nb_ctrlbots advanced mode, you should change it to "" and update it on all the bots. You'll probably have to do this manually since the setting as you changed it will prevent a netupdate.
T
Techdude

Post by Techdude »

Doh! ty
Locked