IRC Bouncer conectar sem / quote pass?

0

Estou usando um bouncer (ZNC) para conectar-me a uma rede de IRC. Estou usando o ChatZilla para se conectar ao bouncer.

Na conexão, recebo a seguinte mensagem:

You need to send your password. Try /quote PASS <username>:<password>

Existe uma maneira de configurar minha conexão para evitar a inserção manual do nome de usuário e senha? O cliente de IRC não fornece um campo de senha do servidor, infelizmente.

    
por uncovery 30.10.2015 / 03:41

2 respostas

0

Encontrei a resposta depois de pesquisar. Existe o comando / nome que permite que você defina um nome de usuário antecipadamente, não em nenhuma configuração junto com o nome do servidor de IRC e senha.

Então tudo que você precisa fazer, na inicialização do cliente de IRC, por exemplo,

/ name your_username / server server.com 1234 your_password

No Chatzilla, isso iria para a seção: Configurações Globais - Listas - Comandos a serem executados ao iniciar o Chatzilla.

Não é possível conectar-se ao ZNC com um único comando, por meio das configurações de locais, por exemplo.

    
por 26.01.2016 / 11:59
0

Você deve definir seu nome de usuário e senha na configuração do servidor para o seu cliente de IRC local.

Por exemplo, eu uso o weechat. Weechat usa um arquivo chamado irc.conf.

[server]
name_of_the_server_in_weechat.addresses = "example.com/4444"
name_of_the_server_in_weechat.proxy
name_of_the_server_in_weechat.ipv6
name_of_the_server_in_weechat.ssl = on
name_of_the_server_in_weechat.ssl_cert
name_of_the_server_in_weechat.ssl_priorities
name_of_the_server_in_weechat.ssl_dhkey_size
name_of_the_server_in_weechat.ssl_fingerprint
name_of_the_server_in_weechat.ssl_verify = off
name_of_the_server_in_weechat.password = "the_password_i_pass_with_QUOTE"
name_of_the_server_in_weechat.capabilities
name_of_the_server_in_weechat.sasl_mechanism
name_of_the_server_in_weechat.sasl_username
name_of_the_server_in_weechat.sasl_password
name_of_the_server_in_weechat.sasl_key
name_of_the_server_in_weechat.sasl_timeout
name_of_the_server_in_weechat.sasl_fail
name_of_the_server_in_weechat.autoconnect = on
name_of_the_server_in_weechat.autoreconnect
name_of_the_server_in_weechat.autoreconnect_delay
name_of_the_server_in_weechat.nicks
name_of_the_server_in_weechat.username = "the_username_i_pass_with_QUOTE"
name_of_the_server_in_weechat.realname
name_of_the_server_in_weechat.local_hostname
name_of_the_server_in_weechat.command
name_of_the_server_in_weechat.command_delay
name_of_the_server_in_weechat.autojoin
name_of_the_server_in_weechat.autorejoin
name_of_the_server_in_weechat.autorejoin_delay
name_of_the_server_in_weechat.connection_timeout
name_of_the_server_in_weechat.anti_flood_prio_high
name_of_the_server_in_weechat.anti_flood_prio_low
name_of_the_server_in_weechat.away_check
name_of_the_server_in_weechat.away_check_max_nicks
name_of_the_server_in_weechat.default_msg_kick
name_of_the_server_in_weechat.default_msg_part
name_of_the_server_in_weechat.default_msg_quit
name_of_the_server_in_weechat.notify
    
por 30.10.2015 / 20:41