OperationMutualisationIpv4 » Historique » Version 5
« Précédent -
Version 5/38
(diff) -
Suivant » -
Version actuelle
Mehdi Abaakouk, 01/12/2013 20:24
Projet de mutualisation ipv4 chez tetaneutral:¶
chiliproject:¶
config réseau:¶
dans /etc/network/interfaces, suppresion ipv4, changement ipv6 pour 2a01:6600:8081:ce02::1/64
Reverse proxy http v4 vers le http de chiliproject en v6, sur www.tetaneutral.net¶
ajout de /etc/apache2/sites-available/chiliproject.tetaneutral.net:
<VirtualHost *:80> ServerAdmin webmaster@localhost ServerName chiliproject.tetaneutral.net ProxyPreserveHost On ProxyRequests off ProxyPass / http://chiliproject6.tetaneutral.net/ ProxyPassReverse / http://chiliproject6.tetaneutral.net/ CustomLog /var/log/apache2/chiliproject.tetaneutral.net-access.log combined </VirtualHost>
taper
a2enmod proxy_html proxy a2ensite chiliproject.tetaneutral.net /etc/init.d/apache2 reload
Configuration du relay sur lists¶
Ajout d'un relay smtp ipv4 vers ipv6 (relay_domain), dans /etc/postfix/main.cf
relay_domains = lists.tetaneutral.net, chiliproject.tetaneutral.net
Ajout d'un transport pour ce domain /etc/postfix/transport
chiliproject.tetaneutral.net smtp:[chiliproject6.tetaneutral.net]:25
Reload de postfix
postmap /etc/postfix/transport ; /etc/init.d/postfix reload
relay git(ssh)¶
sur www, ajouter dans le /etc/rc.local
nohup socat TCP4-LISTEN:22,fork,su=nobody TCP6:[chiliproject6.tetaneutral.net]:22 &