ircd@irc.com [~/bahamut-2.0.7]# cd ../ircd ircd@irc.com [~/ircd]# ./ircd
bahamut-2.0.7 booting... Security related issues should be sent to coders@dal.net All other issues should be sent to dalnet-src@dal.net
Initializing Encryption... No random state found, generating entropy from /dev/urandom... On some systems this may take a while, and can be helped by keeping the system busy, such as pounding on the keyboard. 25% .. 50% .. 75% .. Done. ERROR: Unknown block type near line 4 of /home/ircd/ircd/ircd.conf Server not started ircd@irc.com [~/ircd]#
firts lines from my ircd.conf
# ========================================================================= # QUICKSTART: server configuration (see reference.conf for details) # =========================================================================
/* server name and administration info */ global { name irc.underchat.net; # IRC name of the server info "UnderChat Hub Server"; # A short info line admin { "Jaqen"; # Three information lines sent "Root Administrator"; # in reply to ADMIN command "jaqen@underchat.net"; }; };
/* server options */
admin { }; doesn't go inside of global { };, it's its own block.
Move the whole admin {} section after global, and you should be fine.
Pretty much the only thing that goes in global is the server name, info, and the optional restart/die passwords.
From reference.conf
# The Admin block may be nested here. (This is currently a purely # organizational/astetic option. This will probably change in future # releases. -epi)
On 11 Nov 2013, at 13:32, brandon brandon@DAL.NET wrote:
admin { }; doesn't go inside of global { };, it's its own block.
Move the whole admin {} section after global, and you should be fine.
Pretty much the only thing that goes in global is the server name, info, and the optional restart/die passwords.
-- brandon@dalnet [irc.dal.net] Routing & Peering Team Lead
On 11/11/2013 3:57 PM, Erkut ERTEMIZ wrote:
ircd@irc.com mailto:ircd@irc.com [~/bahamut-2.0.7]# cd ../ircd ircd@irc.com mailto:ircd@irc.com [~/ircd]# ./ircd bahamut-2.0.7 booting... Security related issues should be sent to coders@dal.net mailto:coders@dal.net All other issues should be sent to dalnet-src@dal.net mailto:dalnet-src@dal.net Initializing Encryption... No random state found, generating entropy from /dev/urandom... On some systems this may take a while, and can be helped by keeping the system busy, such as pounding on the keyboard. 25% .. 50% .. 75% .. Done. ERROR: Unknown block type near line 4 of /home/ircd/ircd/ircd.conf Server not started ircd@irc.com mailto:ircd@irc.com [~/ircd]# firts lines from my ircd.conf # ========================================================================= # QUICKSTART: server configuration (see reference.conf for details)
#
/* server name and administration info */ global { name irc.underchat.net; # IRC name of the server info "UnderChat Hub Server"; # A short info line admin { "Jaqen"; # Three information lines sent "Root Administrator"; # in reply to ADMIN command "jaqen@underchat.net mailto:jaqen@underchat.net"; }; }; /* server options */
DALnet-src mailing list DALnet-src@lists.dal.net https://lists.dal.net/mailman/listinfo/dalnet-src
DALnet-src mailing list DALnet-src@lists.dal.net https://lists.dal.net/mailman/listinfo/dalnet-src
Can you email me (as an attachment) directly your full ircd.conf file, either omitting or commenting out sensitive parts (e.g. passwords).
Thanks, Holbrook Bunting aka Holbrook, zort, srd holbrook@dal.net
On 11 Nov 2013, at 12:57, Erkut ERTEMIZ jaqen@underchat.net wrote:
ircd@irc.com [~/bahamut-2.0.7]# cd ../ircd ircd@irc.com [~/ircd]# ./ircd bahamut-2.0.7 booting... Security related issues should be sent to coders@dal.net All other issues should be sent to dalnet-src@dal.net Initializing Encryption... No random state found, generating entropy from /dev/urandom... On some systems this may take a while, and can be helped by keeping the system busy, such as pounding on the keyboard. 25% .. 50% .. 75% .. Done. ERROR: Unknown block type near line 4 of /home/ircd/ircd/ircd.conf Server not started ircd@irc.com [~/ircd]# firts lines from my ircd.conf # ========================================================================= # QUICKSTART: server configuration (see reference.conf for details) # ========================================================================= /* server name and administration info */ global { name irc.underchat.net; # IRC name of the server info "UnderChat Hub Server"; # A short info line admin { "Jaqen"; # Three information lines sent "Root Administrator"; # in reply to ADMIN command "jaqen@underchat.net"; }; }; /* server options */ _______________________________________________ DALnet-src mailing list DALnet-src@lists.dal.net https://lists.dal.net/mailman/listinfo/dalnet-src
Unknown block type suggests you may have introduced a character type it doesn't appreciate. What editor did you use to change the configuration?