-
Notifications
You must be signed in to change notification settings - Fork 0
/
linux_client_computer.sh
221 lines (139 loc) · 5.12 KB
/
linux_client_computer.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
################# on Linux computer connected to rpirouter ####################################
### email client: claws-mail ######
sudo apt-get update
sudo apt-get install claws-mail
### irc client: hexchat ###########
sudo apt-get install hexchat
### VoIP client: mumble ###########
sudo apt-get install mumble
############## if local rpirouter is running as server: ################################################################################################
## services on local rpirouter (192.158.5.5) on ports:
- IRC SSL: 9999
- IRC noSSL: 60666
- POP3 SSL: 995
- SMTP SSL: 465
### configure claws-mail ########################
configuration -> create new account -> new
account preferences:
- basic:
Full name: joe
email addres: joe@rpirouter.lan
server for receiving: 192.158.5.5
SMTP server (send): 192.158.5.5
User ID: joe
Password: joes unix password
- SSL/TLS:
POP: use SSL/TLS
Send (SMTP): use SSL/TLS
- Advanced:
SMTP Port: 465
POP Port: 995
### configure hexchat ########################
### SSL, server port 9999 ####
- network list -> add
servers: 192.158.5.5/9999
Use SSL for all servers on this network: yes
Accept invalid SSL certificates: yes
Login method: default
Password: abc-def-123 # /etc/ngircd.conf -> [Global] -> Password
### no SSL ####
- network list -> add
servers: 192.158.5.5/60666
Use SSL for all servers on this network: no
Accept invalid SSL certificates: no
Login method: default
Password: abc-def-123 # /etc/ngircd.conf -> [Global] -> Password
### configure mumble ########################
Mumble Server Connect
- Add New ...
Address: 192.158.5.5
Port: 64738
Username: YOUR_CHOISE
Label: YOUR_CHOISE
############## using yggdrasil network ################################################################################################
# install yggdrasil
# should auto connect to yggdrasil on rpirouter
# important for routing IPv6 yggdrasil traffic
# https://yggdrasil-network.github.io/installation.html
sudo apt-get install yggdrasil
# sudo nano /etc/yggdrasil.conf
# not needed to configure peers here because of auto connection in lan when multicast active at yggdrasil node (rpirouter local router)
sudo yggdrasilctl getPeers
# yggdrasil should run at local computer, rpirouter and remote rpirouter
### configure claws-mail ########################
configuration -> create new account -> new
account preferences:
- basic:
Full name: joe
email addres: joe@rpirouter.lan
server for receiving: 201:7d16:b31d:453d:62dd:a719:a32c:ffb1 #yggdrasil address of rpirouter running postfix/dovecot
SMTP server (send): 201:7d16:b31d:453d:62dd:a719:a32c:ffb1
User ID: joe
Password: joes unix password
- SSL/TLS:
POP: use SSL/TLS
Send (SMTP): use SSL/TLS
- Advanced:
SMTP Port: 465
POP Port: 995
### configure hexchat ########################
### SSL, server port 9999 ####
- network list -> add
servers: 201:7d16:b31d:453d:62dd:a719:a32c:ffb1/9999 #yggdrasil address of rpirouter running ngircd
Use SSL for all servers on this network: yes
Accept invalid SSL certificates: yes
Login method: default
Password: abc-def-123 # /etc/ngircd.conf -> [Global] -> Password
### no SSL ####
- network list -> add
servers: 201:7d16:b31d:453d:62dd:a719:a32c:ffb1/60666
Use SSL for all servers on this network: no
Accept invalid SSL certificates: no
Login method: default
Password: abc-def-123 # /etc/ngircd.conf -> [Global] -> Password
### configure mumble ########################
Mumble Server Connect
- Add New ...
Address: 201:7d16:b31d:453d:62dd:a719:a32c:ffb1
Port: 64738
Username: YOUR_CHOISE
Label: YOUR_CHOISE
############## using i2p network ################################################################################################
### see: setup_as_client_2.sh
## services on remote rpirouter are now accessable via i2p network on ports:
- IRC SSL: 9998
- IRC noSSL: 60667
- POP3 SSL: 9950
- SMTP SSL: 4650
# on local rpirouter with address 192.158.5.5
### configure claws-mail ########################
configuration -> create new account -> new
account preferences:
- basic:
Full name: joe
email addres: joe@rpirouter.lan
server for receiving: 192.158.5.5
SMTP server (send): 192.158.5.5
User ID: joe
Password: joes unix password
- SSL/TLS:
POP: use SSL/TLS
Send (SMTP): use SSL/TLS
- Advanced:
SMTP Port: 4650
POP Port: 9950
### configure hexchat ########################
### SSL, server port 9999->9998 ####
- network list -> add
servers: 192.158.5.5/9998
Use SSL for all servers on this network: yes
Accept invalid SSL certificates: yes
Login method: default
Password: abc-def-123 # /etc/ngircd.conf -> [Global] -> Password
### no SSL port 60666 -> 60667 ####
- network list -> add
servers: 192.158.5.5/60667
Use SSL for all servers on this network: no
Accept invalid SSL certificates: no
Login method: default
Password: abc-def-123 # /etc/ngircd.conf -> [Global] -> Password