বিপ রিক প্রক্সি এবং ক্লায়েন্ট সংযোগ বিচ্ছিন্ন করে


0

বর্তমানে, bipআমি কনফিগার করা একটি উদাহরণ নির্ধারিত নেটওয়ার্কগুলির সাথে সংযোগ স্থাপন করে এবং এসএসএলের মাধ্যমে কোনও ক্লায়েন্টের সংযোগের অনুমতি দেয় (স্ব-স্বাক্ষরিত শংসাপত্র সরবরাহ করে)। তবে সংযোগ স্থাপনের পরে ক্লায়েন্ট (গুলি) সাথে সাথে "পিয়ার দ্বারা সংযোগ বিচ্ছিন্ন হয়ে গেছে"।

এটি আমার নেতৃত্ব বিশ্বাস করতে যে সমস্যা ব্যবহারকারী পাসওয়ার্ড সঙ্গে ছিল, কিন্তু এটা যদি আমি উৎপাদিত এবং পাসওয়ার্ড ব্যবহার করে পরীক্ষা করেছি বলে মনে হয় না testসঙ্গে bipmkpw। আমি এসএসএলকে অক্ষম করার সাথে সংযোগ করার চেষ্টা করেছি এবং একই দূরবর্তী সংযোগ ঘটে।

বাইপ কনফটি নিম্নরূপ:

# vim:ft=bip:ts=2
# Auto-generated BIP IRC Proxy configuration Sun Dec  1 22:55:45 2013
#
### Global options
log_system = false;
client_side_ssl_pem = "/root/.bip/bip.pem";
ip = "0.0.0.0";
log_sync_interval = 5;
port = 7778;
log_format = "%n/%Y-%m/%c.%d.log";
pid_file = "/root/.bip/bip.pid";
log_level = 2;
log_root = "/root/.bip/logs";
client_side_ssl = true;
log = true;

### Networks
network {
        name = "freenode";
        ssl = true;
        server {
                host = "chat.freenode.net";
                port = 7000;
        };

};


### Users
user {
        name = "mbrown";
        password = "hashyhashy";
        ssl_check_mode = "none";
        default_nick = "mbrownnyc";
        default_user = "mbrownnyc";
        default_realname = "matt";
        backlog = true;
        connection {
                name = "freenode";
                network = "freenode";
                follow_nick = true;
                ignore_first_nick = true;
                ssl_check_mode = "none";
                channel {
                        name = "#bip";
                };

        };

};

উত্তর:


0

আমি আইআরসি-র সাথে কোনও দেবের সাথে চ্যাট করেছি এবং তিনি আমাকে পাসওয়ার্ডের জন্য নিম্নলিখিত সংমিশ্রণটি ব্যবহার করার পরামর্শ দিয়েছেন: user:password:connection

উদাহরণস্বরূপ, উপরের bipকনফিগারেশনটি প্রদত্ত আমি নিম্নলিখিত হিসাবে একটি সংযোগ কনফিগার করব:

ব্যবহারকারী: এমব্রাউন পাসওয়ার্ড: এমব্রাউন: এইটিপ্যাসওয়ার্ডথপ্রোডেসসাহস: ফ্রিনোড

কেবলমাত্র "হাস্যাহশী" হ্যাশ যদি "থিটিপ্যাসওয়ার্ডটিউটপ্রোডেসসাহস" দ্বারা উত্পাদিত হয়।

হিসাবে সুপরিচিত মধ্যে আরো অনেক কিছু এইরূপ সূচারূভাবে মানুষ :

CONNECTING YOUR CLIENT(S)

Then you want to use your regular irc client and connect to bip.  Point

your client to the machine bip is running and set the proper port number

(defined in your bip.conf). You should then configure the client to use a

specific irc server password constructed this way:



user:password:connection



The user is the name field of the "user" section, the password is the

password (*not* the hash) corresponding to the "password" field of the

same user section (which is the hash generated with bipmkpw) and the

connection is the "name" field of the "connection" subsection. This is

how bip authenticates you and puts your client to the correct network.



Using the default (or sample file) configuration, logs are in ~/.bip/logs/
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.