Projet

Général

Profil

OperationMutualisationIpv4 » Historique » Version 5

Mehdi Abaakouk, 01/12/2013 20:24

1 1 Mehdi Abaakouk
h1. Projet de mutualisation ipv4 chez tetaneutral:
2 1 Mehdi Abaakouk
3 1 Mehdi Abaakouk
h2. chiliproject:
4 1 Mehdi Abaakouk
5 4 Mehdi Abaakouk
h3. config réseau:
6 4 Mehdi Abaakouk
7 1 Mehdi Abaakouk
dans /etc/network/interfaces, suppresion ipv4, changement ipv6 pour 2a01:6600:8081:ce02::1/64
8 1 Mehdi Abaakouk
9 4 Mehdi Abaakouk
h3. Reverse proxy http v4 vers le http de chiliproject en v6, sur www.tetaneutral.net
10 3 Mehdi Abaakouk
11 4 Mehdi Abaakouk
ajout de /etc/apache2/sites-available/chiliproject.tetaneutral.net:
12 3 Mehdi Abaakouk
13 1 Mehdi Abaakouk
<pre>
14 1 Mehdi Abaakouk
<VirtualHost *:80>
15 1 Mehdi Abaakouk
        ServerAdmin webmaster@localhost
16 1 Mehdi Abaakouk
        ServerName chiliproject.tetaneutral.net
17 1 Mehdi Abaakouk
        ProxyPreserveHost On
18 1 Mehdi Abaakouk
        ProxyRequests off
19 5 Mehdi Abaakouk
        ProxyPass / http://chiliproject6.tetaneutral.net/
20 5 Mehdi Abaakouk
        ProxyPassReverse / http://chiliproject6.tetaneutral.net/
21 1 Mehdi Abaakouk
        CustomLog /var/log/apache2/chiliproject.tetaneutral.net-access.log combined
22 1 Mehdi Abaakouk
</VirtualHost>
23 1 Mehdi Abaakouk
</pre>
24 3 Mehdi Abaakouk
25 4 Mehdi Abaakouk
taper
26 3 Mehdi Abaakouk
27 2 Mehdi Abaakouk
<pre>
28 1 Mehdi Abaakouk
a2enmod proxy_html proxy
29 1 Mehdi Abaakouk
a2ensite chiliproject.tetaneutral.net
30 1 Mehdi Abaakouk
/etc/init.d/apache2 reload
31 1 Mehdi Abaakouk
</pre>
32 1 Mehdi Abaakouk
33 4 Mehdi Abaakouk
h3. Configuration du relay  sur lists
34 1 Mehdi Abaakouk
35 5 Mehdi Abaakouk
Ajout d'un relay smtp ipv4 vers ipv6 (relay_domain), dans /etc/postfix/main.cf
36 3 Mehdi Abaakouk
37 1 Mehdi Abaakouk
<pre>
38 1 Mehdi Abaakouk
relay_domains = lists.tetaneutral.net, chiliproject.tetaneutral.net
39 1 Mehdi Abaakouk
</pre>
40 1 Mehdi Abaakouk
41 5 Mehdi Abaakouk
Ajout d'un transport pour ce domain /etc/postfix/transport
42 5 Mehdi Abaakouk
43 1 Mehdi Abaakouk
<pre>
44 5 Mehdi Abaakouk
chiliproject.tetaneutral.net smtp:[chiliproject6.tetaneutral.net]:25
45 1 Mehdi Abaakouk
</pre>
46 1 Mehdi Abaakouk
47 5 Mehdi Abaakouk
Reload de postfix
48 1 Mehdi Abaakouk
49 1 Mehdi Abaakouk
<pre>
50 1 Mehdi Abaakouk
postmap /etc/postfix/transport ; /etc/init.d/postfix reload
51 1 Mehdi Abaakouk
</pre>
52 5 Mehdi Abaakouk
53 5 Mehdi Abaakouk
h3. relay git(ssh)
54 5 Mehdi Abaakouk
55 5 Mehdi Abaakouk
sur www, ajouter dans le /etc/rc.local
56 5 Mehdi Abaakouk
57 5 Mehdi Abaakouk
nohup socat TCP4-LISTEN:22,fork,su=nobody TCP6:[chiliproject6.tetaneutral.net]:22 &