MIRCX IRC Network
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
 
 

Display results as :
 


Rechercher Advanced Search

Web Applications
install Joomla Wordpress Phpbb Drupal FluxBB PunBB osCommerce simple-machines MYBB moodle vBulletin Dolphin-v.7.1.1 PHPNUKE XOOPS
Services
install BorkNet Services X3 Services Anope Atheme Services Srvx IRC Srervices
IRCD
install Snircd IRCU INSPIRCD UNREAL Nefarious Bircd Bahamut Asuka Charybdis
TCL SCRIPT
TCL SCRIPT FOR EGGDROP Allprotection4.7 Antiproxy
Bots
Bots install FishBot bobot++ Eggdrop janus Omega Security Services Botnix Bopm SupyBot PyLink Hopm
Latest topics
» מדריך גירסה INSPIRCD V4
Snircd config  EmptySat Aug 05, 2023 2:09 am by Chief

» mIRCx IRC Network Config
Snircd config  EmptySat Jul 15, 2023 9:51 pm by Chief

» ircu2.10.12-pk with dnsbl
Snircd config  EmptyFri Mar 10, 2023 2:22 pm by Admin

» Guide install PyLink on New version FreeBSD
Snircd config  EmptyThu Dec 15, 2022 9:39 pm by Chief

» מדריך התקנה PBot על מערכת הפעלה FreeBsd-12
Snircd config  EmptyMon Dec 05, 2022 5:44 am by Chief

» install Nefarious2 && X3 IRC Services in FreeBsd
Snircd config  EmptySat Nov 12, 2022 3:12 pm by Chief

» help problem with adduser in Freebsd 12
Snircd config  EmptyFri Nov 11, 2022 9:06 pm by Chief

» מדריך פקודות והתקנה בסרביס X3
Snircd config  EmptyFri Oct 28, 2022 1:43 pm by Chief

» מדריך הגדרות WebIRC in Nefarious2
Snircd config  EmptyThu Apr 07, 2022 4:45 am by Chief

April 2024
MonTueWedThuFriSatSun
1234567
891011121314
15161718192021
22232425262728
2930     

Calendar Calendar

Affiliates
free forum

Affiliates
free forum


Snircd config

Go down

Snircd config  Empty Snircd config

Post  Chief Tue Sep 25, 2012 1:46 am

mIRCx
www.mIRCx.co.il
Snircd config by mIRCx
Snircd config  MIRC
ok before i put snircd.config i want to say in config you have many Differences in conf and i explain why if download something version snircd i get in conf block like this
Code:

Operator {
 local = no;
 host = "*@*.cs.vu.nl";
 password = "VRKLKuGKn0jLt";
 name = "Niels";
 class = "Local";
};
Operator {
 local = no;
 host = "*@*";
 password = "$PLAIN$HAHA";
 name = "MIRCX";
 class = "Opers";
};
and this problem because you no have more options like give someone op you cant and this look reason opmode is OPMODE Command disabled. now i put conf good for snircd
Code:

#
#                            MIRCX N E T  I R C  S E R V E R
#                              S E R V E R  C O N F I G  F I L E
#
# -----------------------------------------------------------------------------
#  v.10 config file, last edited 12.2.2011/mIRCx
# -----------------------------------------------------------------------------

General {
  name = "irc.mIRCxnet.org";
  description = "mIRCxNET IRC Server";
  numeric = 1;
#  vhost = "@@@";
#  dns vhost  = "@@@";
#  dns server = "@@@";
#  dns server = "@@@";
};

Admin {
  Location = "Israel";
  Location = "mIRCxNET IRC Server";
  Contact  = "darksis <irc@mIRCxnet.org>";
};

# -----------------------------------------------------------------------------
# Classes (aka Ylines)
# -----------------------------------------------------------------------------
# name    = "<class>";      pingfreq = time;  connectfreq = time;
# maxlinks = number 0 or 1;  sendq    = size;    usermode = "+i";
#
# Uplinks
Class {
 name = "Server";
 pingfreq = 3 minutes;
 connectfreq = 5 minutes;
 maxlinks = 1;
 sendq = 40000000;
};

# All the leaf servers you hub for.
Class {
 name = "LeafServer";
 pingfreq = 3 minutes;
 connectfreq = 5 minutes;
 maxlinks = 0;
 sendq = 40000000;
};

# Client class (i.e. everyone)
Class {
 name = "Users";
 pingfreq = 3 minutes;
 sendq = 300000;
 maxlinks = 30000;
 usermode = "+i";
};

# VIP user class (aka locals, opers etc..)
Class {
 name = "Local";
 pingfreq = 3 minutes;
 sendq = 600000;
 maxlinks = 100;
 usermode = "+iw";
};

# Oper class (global)
Class {
 name = "Opers";
 pingfreq = 3 minutes;
 sendq = 10240000;
 maxlinks = 10;
 local = no;
 # privs
 die = no;
 restart = no;
 rehash = no;
 jupe = no;
 local_jupe = no;
 freeform = yes; # change this if you want to disable freeform sethost for your opers
};

# Oper class (global)
Class {
 name = "Admin";
 pingfreq = 3 minutes;
 sendq = 10240000;
 maxlinks = 10;
 local = no;
};

# -----------------------------------------------------------------------------
# Client lines (aka Ilines)
# -----------------------------------------------------------------------------
# username = "ident";      host = "host";              ip = "127.0.0.0/8";
# password = "password";  class = "classname";  maxlinks = 3;

# Fall back entries (we let everyone in)
Client { class = "Users"; ip = "*@*"; };
Client { class = "Users"; host = "*@*"; };

# Providers that we've decided to restrict due to abuse mainly.
Client { class = "Users"; maxlinks = 2; host = "*@*.t-dialin.net"; };
Client { class = "Users"; maxlinks = 1; host = "*@*.proxad.net"; };
Client { class = "Users"; maxlinks = 1; host = "*@*.bezeqint.net"; };
Client { class = "Users"; maxlinks = 1; host = "*@*.ono.com"; };
Client { class = "Users"; maxlinks = 1; host = "*@*.wanadoo.nl"; };
Client { class = "Users"; maxlinks = 2; host = "*@*.wanadoo.fr"; };
Client { class = "Users"; maxlinks = 1; host = "*@*.rima-tde.net"; };
Client { class = "Users"; maxlinks = 2; host = "*@bzq-79-183-28-238.red.bezeqint.net"; };

# -----------------------------------------------------------------------------
# UWorld/Jupe (aka ulines)
# -----------------------------------------------------------------------------

# [UWorld]
UWorld {
  name = "CServe.mIRCxnet.org";
  name = "services.mIRCxnet.org";
  name = "spamscan.mIRCxnet.org";
  name = "trojanscan.mIRCxnet.org";
  name = "proxyscan.mIRCxnet.org";
  name = "help.gogonet.org";
  name = "services.de.quakenet.org";
  name = "services.se.quakenet.org";
  name = "services.uk.quakenet.org";
};

Jupe {
  nick = "A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,{,|,},~,-,_,`";
  nick = "UWorld,NickServ,ChanServ,telnet,backdoor,qauth,auth,admin,support,operserv";
  nick = "O2";
  nick = "NO,noperserv";
  nick = "N2,N3,N4,N5,N6,N7,N8,N9";
};

# -----------------------------------------------------------------------------
# Kill (aka klines)
# -----------------------------------------------------------------------------
# host    = "user@host";      reason = "The reason the user will see";
# realname = "realnametoban";    file = "path/to/file/with/reason/to/show";

Kill {
  username = "*root";
  reason = "Do not IRC as root";
};

# -----------------------------------------------------------------------------
# Connect (aka clines)
# -----------------------------------------------------------------------------
# name        = "servername";    host = "hostnameORip";    vhost = "localIP";
# password    = "passwd";        port = portno;            class = "classname";
# maxhops    = 2;              hub  = "*.eu.undernet.org";
# autoconnect = no; (default = yes!)

# Our primary uplink.
#
#

Connect {
 name = "services.mIRCxnet.org";
 host = "192.168.1.18";
 password = "asher";
 port = 4400;
 class = "Server";
 autoconnect = yes;
};


# -----------------------------------------------------------------------------
# CRule (aka dlines)
# -----------------------------------------------------------------------------
# server = "servermask";    rule = "connectrule";
# Setting all to yes makes the rule always apply. Otherwise it only
# applies to autoconnects.
# all = yes;
# The following block is recommended for leaf servers:
CRULE { server = "*"; rule = "directcon(*)"; };

# -----------------------------------------------------------------------------
# spoofhosts (aka slines)
# -----------------------------------------------------------------------------
# username = "ident"    host = "host"    password = "passwd"

# slines (with pw)
#Spoofhost "testsline.quakenet.org"  { password = "secret"; };
# slines (without pw) thats how to define them when having freeform turned off.
#Spoofhost "testsline2.quakenet.org" { username = "x"; host = "nohost"; };

# -----------------------------------------------------------------------------
# Operator (aka Olines)
# -----------------------------------------------------------------------------

#Server Admin
Operator {  
  host = "*";
  password = "$PLAIN$leetme";
  name = "darksis";
  class = "Admin";
};

#Server Admin
Operator {  
  host = "*";
  password = "$PLAIN$leetmy";
  name = "darksis";
  class = "Admin";
};

#Server Operators
#Operator {
#  host = "@@@";
#  host = "@@@";
#  password = "@@@";
#  name = "@@@";
#  class = "Opers";
#};

# -----------------------------------------------------------------------------
# Quarantine (aka qlines)
# -----------------------------------------------------------------------------
#Quarantine {
#  "#shells" = "Thou shalt not support the h4><0rz";
#  "&kiddies" = "They can take care of themselves";
#};

# -----------------------------------------------------------------------------
# Pseudos
# -----------------------------------------------------------------------------
# name = "X";    nick = "X@channels.bla" ;    prepend = "LOGIN ";
#Pseudo "CHANSERV" {
# name = "X";
# nick = "X@channels.undernet.org";
#};
Pseudo "AUTH" {
  name = "Q";
  prepend = "AUTH ";
  nick = "Q@CServe.mIRCxnet.org";
};

# -----------------------------------------------------------------------------
# Port (aka plines)
# -----------------------------------------------------------------------------
# port  = number;      mask  = "ipmask"    vhost = "virtualhostinterfaceip"
# server = yes;        hidden = yes
# mask only contains IP addresses or '*'
# hidden, hides a port from stats

Port {
  port  = 4400;
  server = yes;
  hidden = yes;
  vhost  = "192.168.1.18";
};

Port {
  vhost = "@@@" 6660;
  vhost = "@@@" 6661;
  vhost = "@@@" 6662;
  vhost = "@@@" 6663;
  vhost = "@@@" 6664;
  vhost = "@@@" 6665;
  vhost = "@@@" 6666;
  vhost = "@@@" 6667;
  vhost = "192.168.1.18" 6669;
  vhost = "@@@" 6669;
};

# -----------------------------------------------------------------------------
# Feature (aka F:lines)
# -----------------------------------------------------------------------------
# We better doublecheck what we set here!

features {
  "LOG" = "SYSTEM" "FILE" "ircd.log";
  "LOG" = "CONFIG" "FILE" "conf.log";
  "LOG" = "SYSTEM" "LEVEL" "CRIT";
  "DOMAINNAME"="mIRCxnet.org";
  "RELIABLE_CLOCK"="FALSE";
  "BUFFERPOOL"="96000000";
# "HAS_FERGUSON_FLUSHER"="FALSE";
# "CLIENT_FLOOD"="1024";
# "SERVER_PORT"="4400";
  "NODEFAULTMOTD"="FALSE";
# "MOTD_BANNER"="TRUE";
# "KILL_IPMISMATCH"="FALSE";
# "IDLE_FROM_MSG"="TRUE";
  "HUB"="FALSE";
# "WALLOPS_OPER_ONLY"="FALSE";
# "NODNS"="FALSE";
  "RANDOM_SEED"="1lsd923hfd6fh3";
# "DEFAULT_LIST_PARAM"="TRUE";
# "NICKNAMEHISTORYLENGTH"="800";
  "NETWORK"="mIRCxNET";
  "HOST_HIDING"="TRUE";
  "SETHOST" = "TRUE";
  "SETHOST_USER" = "TRUE";
  "SETHOST_AUTO" = "TRUE";
  "HIDDEN_HOST"="users.mIRCxnet.org";
  "HIDDEN_IP"="127.0.0.1";
  "URLREG"="http://www.mIRCxnet.org/getauthed";
# "KILLCHASETIMELIMIT"="30";
  "MAXCHANNELSPERUSER"="20";
  "NICKLEN" = "15";
# "AVBANLEN"="40";
 "MAXBANS"="50";
# "MAXSILES"="15";
# "HANGONGOODLINK"="300";
# "HANGONRETRYDELAY" = "10";
# "CONNECTTIMEOUT" = "90";
# "MAXIMUM_LINKS" = "1";
# "PINGFREQUENCY" = "120";
# "CONNECTFREQUENCY" = "600";
# "DEFAULTMAXSENDQLENGTH" = "40000";
# "GLINEMAXUSERCOUNT" = "20";
 "MPATH" = "ircd.motd";
# "RPATH" = "remote.motd";
# "PPATH" = "ircd.pid";
# "TOS_SERVER" = "0x08";
# "TOS_CLIENT" = "0x08";
# "POLLS_PER_LOOP" = "200";
# "IRCD_RES_TIMEOUT" = "4";
# "IRCD_RES_RETRIES" = "2";
# "AUTH_TIMEOUT" = "9";
 "IPCHECK_CLONE_LIMIT" = "3";
 "IPCHECK_CLONE_PERIOD" = "40";
 "IPCHECK_CLONE_DELAY" = "600";
# "CHANNELLEN" = "200";
  "CONFIG_OPERCMDS" = "TRUE";
  "OPLEVELS" = "FALSE";
  "ZANNELS" = "FALSE";
# "LOCAL_CHANNELS" = "TRUE";
# "ANNOUNCE_INVITES" = "FALSE";
  "HIS_SERVERNAME" = "*.mIRCxnet.org";
  "HIS_SERVERINFO" = "mIRCxNET IRC Server";
  "HIS_URLSERVERS" = "http://www.gogonet.org/serverlist.php";
};
fix by mIRCx  in this conf you admin and later conf you no cant put admin
try and you see
mIRCx IRC Network
Chief
Chief
Admin

מספר הודעות : 268
Join date : 2011-12-09
מיקום : mIRCx IRC Network

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum