How to have irrsi connect to ZNC multiple times.
This on Ubuntu 12.04 LTS and assumes you have ZNC and irssi-autodl installed and working already.
A. Change the irc server names in autodl to the fake host name you will be using in the next steps. This is not required, but if you don't you will receive a duplicate error message in irssi. It doesn't hurt anything though.
1. Change the server name in the autodl rutorrent plugin:

Create a fake hostname and enter it into the server field. It can be anything you want. I just changed mine to irc.site.znc for ease of reference.

2. or change the server name in the autodl.cfg

B. Change /etc/hosts you will need use sudo or root to do this
1. If znc is on the same server/pc that irssi is on, add the fake host to the end of the loop back ip 127.0.0.1:
2. If znc is on another serever/pc that irssi is on, add the fake host to a new line with the ip of the server/pc

3. The last thing you will need to do add the fake host name to ~/.irssi/config. You will need to add a server and a new chatnet.
[CODE]
Add the following under the servers = (
{ address = "irc.fakehost from A1/A2.znc";
chatnet = "New chatnet name that wil be used later";
port = "Port of ZNC server";
password = "ZNCusername:ZNCPassword";
use_ssl = "yes if you use ssl no if you don't";
ssl_verify = "no";
autoconnect = "yes";
}
Make a new chatnet under chatnets = {
The new chatnet name you just made = {
type = "IRC";
username = "ZNCusername";
password = "ZNCpassword";
};

I did not write this.... The original creator wishes not to be credited.
Revamp of the tutorial coming soon.
This on Ubuntu 12.04 LTS and assumes you have ZNC and irssi-autodl installed and working already.
A. Change the irc server names in autodl to the fake host name you will be using in the next steps. This is not required, but if you don't you will receive a duplicate error message in irssi. It doesn't hurt anything though.
1. Change the server name in the autodl rutorrent plugin:

Create a fake hostname and enter it into the server field. It can be anything you want. I just changed mine to irc.site.znc for ease of reference.

2. or change the server name in the autodl.cfg

B. Change /etc/hosts you will need use sudo or root to do this
1. If znc is on the same server/pc that irssi is on, add the fake host to the end of the loop back ip 127.0.0.1:
Code:
sudo nano /etc/hosts/

2. If znc is on another serever/pc that irssi is on, add the fake host to a new line with the ip of the server/pc
Code:
sudo nano /etc/hosts/

3. The last thing you will need to do add the fake host name to ~/.irssi/config. You will need to add a server and a new chatnet.
Code:
sudo nano ~/.irssi/config
Add the following under the servers = (
{ address = "irc.fakehost from A1/A2.znc";
chatnet = "New chatnet name that wil be used later";
port = "Port of ZNC server";
password = "ZNCusername:ZNCPassword";
use_ssl = "yes if you use ssl no if you don't";
ssl_verify = "no";
autoconnect = "yes";
}
Make a new chatnet under chatnets = {
The new chatnet name you just made = {
type = "IRC";
username = "ZNCusername";
password = "ZNCpassword";
};

I did not write this.... The original creator wishes not to be credited.
Revamp of the tutorial coming soon.
Comment