Project

General

Profile

ZNC2 » History » Version 2

Per Amundsen, 01/07/2017 02:33 PM

1 2 Per Amundsen
{{>toc}}
2
3 1 Per Amundsen
h1. ZNC
4
5
There are several ways to connect to a "IRC Bouncers":https://en.wikipedia.org/wiki/BNC_(software) such as "ZNC":http://wiki.znc.in/ZNC
6
7
h2. Connecting using the Server list
8
9
* Open the [[Serverlist Dialog|Serverlist]] by pressing the %(key)CTRL% + %(key)S% hotkey, by typing [[/serverlist]] or by opening Server -> Serverlist in the Menubar.
10
 
11
!serverlist.png!
12
13
* Add a new network for ZNC by pressing the "Add new network button"
14
15
!addnetwork.png!
16
17
* Enter a name for the ZNC network, it can be anything you want.
18
19
!addnetwork2.png!
20
21
* Enter the ZNC login information
22
23
The "Username" and "Password" field should match the username and password provided by your ZNC provider.
24
25
Set the Nick, Fullname and Alternative nicks to whatever you want.
26
27
!serverlist2.png!
28
29
* If you want AdiIRC to automatically connect to the ZNC network on startup, check the "Connect to this network on startup" checkbox
30
31
!autoconnect.png!
32
33
* Add the ZNC server information to the network
34
35
* Click the "Server" tab in the Serverlist.
36
37
!server.png!
38
39
* Click the "Add" button.
40
41
!addserver.png!
42
43
* Enter the hostname and port for your ZNC provider, e.g "znc.provider.org" and 31337.
44
45
!addserver3.png!
46
47
* If the ZNC provider requires TLS/SSL connection, click the "Enable SSL" checkbox.
48
49
!enablessl.png!
50
51
* All done, clisk the "General" tab in the Serverlist, then press the "Save" button, then either click "Connect" to connect to the ZNC network in the current open server window, or "Connect in a new window" to connect to the ZNC network in a new server window.
52
53
!serverlist3.png!
54 2 Per Amundsen
55
h2. Connecting by direct command
56
57
Check the [[/server]] wiki for a complete overview of command parameters. Two quick example:
58
59
# *Non SSL*: <pre>/server -m you.znc.net:5708 -p login:password</pre>
60
# *SSL*: <pre>/server -m you.znc.net:+5708 -p login:password</pre>
61
62
To connect using *SSL*, add *<notextile>+</notextile>* to port prefix or use the parameter *-ssl*.
63
64
Ps: for no specified parameters like nick (*-i*), username (*-u*), realname (*-r*), etc, *AdiIRC* will use the default values set in [[/quickconnect]].
65
66
h2. Connecting by script
67
68
<pre>on *:start: {
69
  server you.znc.net:5708 -p login:password
70
}</pre>