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
מדריך התקנה bahamut IRCD EmptySat Aug 05, 2023 2:09 am by Chief

» mIRCx IRC Network Config
מדריך התקנה bahamut IRCD EmptySat Jul 15, 2023 9:51 pm by Chief

» ircu2.10.12-pk with dnsbl
מדריך התקנה bahamut IRCD EmptyFri Mar 10, 2023 2:22 pm by Admin

» Guide install PyLink on New version FreeBSD
מדריך התקנה bahamut IRCD EmptyThu Dec 15, 2022 9:39 pm by Chief

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

» install Nefarious2 && X3 IRC Services in FreeBsd
מדריך התקנה bahamut IRCD EmptySat Nov 12, 2022 3:12 pm by Chief

» help problem with adduser in Freebsd 12
מדריך התקנה bahamut IRCD EmptyFri Nov 11, 2022 9:06 pm by Chief

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

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

March 2024
MonTueWedThuFriSatSun
    123
45678910
11121314151617
18192021222324
25262728293031

Calendar Calendar

Affiliates
free forum

Affiliates
free forum


מדריך התקנה bahamut IRCD

Go down

מדריך התקנה bahamut IRCD Empty מדריך התקנה bahamut IRCD

Post  Admin Thu Apr 05, 2012 3:04 am

יום:רביעי
תאריך:4/4/2012
מדריך:mIRCx
נושא:טעינה bahamut IRCD על לינוקס

טוב במדריך הזה אסביר איך אני מתקין את bahamut על לינוקס ובנוסף אדביק לכם פה קונף שאתם תצטרכו קצת לסדר אותו עבורכם.... אז מתחילים כמובן שעלינו להיכנס ראשית כל ל TERMINAL כדי להריץ את הפקודות הבאות ההלו ופקודה הראשונה היא שתוריד לכם את הקובץ במידה ואתם רואים את התיקיה של BAHAMUT תמחקו את התיקיה ותטעינו אותה כמו שאני כותב אז זאת הפקודה הראשונה..
Code:

wget bahamut.dal.net/download/bahamut-2.0.1.tar.gz
tar zxvf bahamut-2.0.1.tar.gz
cd bahamut-2.0.1
./configure
./config
make
make install
ls -al
cd
cd ircd
./make-cert.sh
אחרי שאת כל הפקודות כתבתם עליכם גם להריץ את השאלון שאתם תקבלו ואתם לא חייבים למלאות את השאלון אלה רק אפשר לעשות אנטר אנטר עד ששאלון יסתיים ועליכם לקבל מכל הסיום השאלון הזה את הקובץ הזה ircd.crt שבלעדו אתם לא תוכלו להריץ את השרת... כמובן שאחרי כל הטעינה ושאלון של הגירסה BAHAMUT עליכם גם לשנות את הקובץ שיש שם ועליכם לכתוב כך
Code:

cd
cd ircd
cp template.conf ircd.conf
ואז תסדרו את הקונף הנה לכם קונף מסודר רק שעליכם לסדר כמה פרטים שם של אייפי ואיזה פורט אתם רוצים להיכנס
קונף זה סודר על ידי darksis
Code:

# =========================================================================
# QUICKSTART: server configuration (see reference.conf for details)
# =========================================================================

/* server name and administration info */
global {
    name    ninja.eu.us.killzon.net;        # IRC name of the server
    info    "Dream Heaven System Coded By Ninja";    # A short info line
    admin {
        "An unconfigured server";  # Three information lines sent
        "An unknown administrator"; # in reply to ADMIN command
        "email@somewhere.earth";
    };
};

/* server options */
options {
    network_name    KILLzon;  # A name is needed even if not linked
    local_kline    admin@killzon.net;  # Contact email for server bans
    show_links;                    # Show servers in LINKS
    allow_split_ops;                # Give ops in empty channels

    // use these options when services is on the network
    services_name  services.killzon.net;  # Name of services (NS/CS/MS/RS) server
    stats_name      stats.killzon.net;    # Name of stats (OS/SS/HS) server
    network_kline  kline@killzon3.net;      # Contact email for network bans
    nshelpurl      "http://killzon.net/nickserv";  # Nick registration help page

    // if you need to link more than 1 server, uncomment the following line
    # servtype        hub;
};

/* where to listen for connections */
port {
    port    6697;        # Port to listen on
    bind    number ip;    # IP address to listen on
    flags  S;            # allow SSL connections on this port
};

/* more listening ports */
port { port 6669; bind number ip; };
port { port 6666; bind number ip; };
port { port 6667; bind 79.183.28.238; };
port { port 7000; bind 79.183.28.238; };

/* allow clients to connect */
allow {
    host    *@*;    # Allow anyone
    class  users;  # Place them in the users class
};

/* connection class for users */
class {
    name        users;      # Class name
    maxusers    100;        # Maximum connections
    pingfreq    90;        # Check idle connections every N seconds
    maxsendq    100000;    # 100KB send buffer limit
};

/* connection class for server operators */
class {
    name        opers;
    pingfreq    90;
    maxsendq    500000;    # 500KB limit for opers
};

/* the server administrator */
oper {
    name    darksis;          # Username
    passwd  aaaaaa;        # Password
    access  OAaRD;          # Server Administrator
    host    *@*;  # Must be connecting from here
    host    *@*;  # Or from here
    // insert other other hostmasks here
    class  opers;          # Belongs in the opers class
};

/* for services */
super {
    "services.killzon.net";
    "stats.killzon.net";
    // insert any other special servers here
};

/* reserved nicknames */
restrict { type nick; mask "NickServ"; reason "reserved for services"; };
restrict { type nick; mask "ChanServ"; reason "reserved for services"; };
restrict { type nick; mask "MemoServ"; reason "reserved for services"; };
restrict { type nick; mask "RootServ"; reason "reserved for services"; };
restrict { type nick; mask "OperServ"; reason "reserved for services"; };
restrict { type nick; mask "StatServ"; reason "reserved for services"; };
restrict { type nick; mask "HelpServ"; reason "reserved for services"; };
restrict { type nick; mask "services"; reason "reserved for services"; };


/* === these next two blocks are for linking to a hub === */

/* class for uplink hub */
class {
    name        hub;
    pingfreq    120;        # Idle check every 2 minutes
    connfreq    300;        # Try autoconnect every 5 minutes
    maxsendq    1000000;    # 1MB send queue
    maxlinks    1;          # Autoconnect to only 1 hub at a time
};

/* our uplink hub */
connect {
    name        hub.killzon.net;  # Hub's IRC name
    host        number ip; # Hub's IP address
    port        6669;      # Autoconnect to hub's port 7325
    bind        number ip;  # We connect from this IP
    apasswd    asher;    # We accept this password from hub
    cpasswd    asher;    # We send this password to hub
    flags      H;          # It is a hub
    class      hub;        # Use hub class
};


/* === these next two blocks are for linking to services === */

/* class for services */
class {
    name        services;
    pingfreq    60;        # Idle check every minute
    maxsendq    5000000;    # 5MB backlog buffer
};

/* our services */
connect {
    name        services.killzon.net;  # Services' IRC name
    host        number ip;      # IP address services connects from
    apasswd    asher;        # Password services sends
    cpasswd    asher;        # Same password
    class      services;
};
אחרי שסידרתם את כל הקונף וכדי לפעיל אותו עליכם לכתוב כך
Code:

cd
cd ircd/
./ircd
ואז תוכלו להיכנס לשרת שלכם בגירסה הזאת יש אפשרות לטעין את שניי הגירסאות של הסרביסים אחד של ATHEME ושניה של ANOPE ככה שיהיה לכם סרביס+שרת
עד כאן מדריך אני מקווה שהבנתם במידה ולא הבנתם אתם מוזמנים לשאול ובנוסף לפני שאתם מורידים אחד מגירסאות של השרת אתם מוזמנים להיכנס לאתר הזה של כל ההורדות http://bahamut.dal.net/download/ באתר תמצאו את כל גירסה שתרצו להוריד...
מדריך זה נכתב על ידי MIRCX
מדריך זה נכתב עבור www.mIRCx.co.il
Admin
Admin
Admin

מספר הודעות : 269
Join date : 2009-09-12
Age : 43
מיקום : mIRCX IRC Network

https://mircx.forumotion.net

Back to top Go down

Back to top

- Similar topics

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