Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente | ||
guide:installation_serveur_agregation_connexion_2014 [2014/06/19 21:14] – vivi | guide:installation_serveur_agregation_connexion_2014 [2021/04/18 20:24] (Version actuelle) – modification externe 127.0.0.1 | ||
---|---|---|---|
Ligne 7: | Ligne 7: | ||
===== Introduction ===== | ===== Introduction ===== | ||
- | L' | + | L' |
Tout sera connecté au serveur chez moi qui fournira une connexion internet unifiée. Même combat côté internet, mon serveur installé servira de point de sortie unifié vers le net. | Tout sera connecté au serveur chez moi qui fournira une connexion internet unifiée. Même combat côté internet, mon serveur installé servira de point de sortie unifié vers le net. | ||
Ligne 86: | Ligne 86: | ||
rtc | rtc | ||
bonding | bonding | ||
+ | dummy | ||
</ | </ | ||
Ligne 110: | Ligne 111: | ||
</ | </ | ||
+ | ==== 1.2.6. Activation du NAT ==== | ||
+ | C'est le nat qui va permettre le routage final. | ||
+ | |||
+ | Une bonne idée est de s' | ||
+ | |||
+ | Ce qui va donner chez moi ce genre de chose: | ||
+ | |||
+ | <code bash> | ||
+ | nano nat.sh | ||
+ | </ | ||
+ | |||
+ | <code bash> | ||
+ | # | ||
+ | # Configure here your interfaces | ||
+ | # | ||
+ | EXTIF=" | ||
+ | INTIF=" | ||
+ | |||
+ | # | ||
+ | # Commands path | ||
+ | # | ||
+ | DEPMOD=/ | ||
+ | MODPROBE=/ | ||
+ | |||
+ | # | ||
+ | # General information | ||
+ | # | ||
+ | echo " | ||
+ | echo " | ||
+ | echo " | ||
+ | |||
+ | # | ||
+ | # Checking requested linux kernel modules | ||
+ | # | ||
+ | echo " | ||
+ | $DEPMOD -a | ||
+ | echo " | ||
+ | $MODPROBE ip_tables | ||
+ | echo " | ||
+ | $MODPROBE nf_conntrack | ||
+ | echo " | ||
+ | $MODPROBE nf_conntrack_ftp | ||
+ | echo " | ||
+ | $MODPROBE nf_conntrack_irc | ||
+ | echo " | ||
+ | $MODPROBE iptable_nat | ||
+ | echo " | ||
+ | $MODPROBE nf_nat_ftp | ||
+ | |||
+ | # | ||
+ | # Enabling ip forwarding | ||
+ | # | ||
+ | echo " | ||
+ | echo " | ||
+ | echo " | ||
+ | echo " | ||
+ | |||
+ | |||
+ | # | ||
+ | # Setting iptables rules | ||
+ | # | ||
+ | echo " | ||
+ | iptables-restore << | ||
+ | *nat | ||
+ | -A POSTROUTING -o " | ||
+ | COMMIT | ||
+ | *filter | ||
+ | :INPUT ACCEPT [0:0] | ||
+ | :FORWARD DROP [0:0] | ||
+ | :OUTPUT ACCEPT [0:0] | ||
+ | -A FORWARD -i " | ||
+ | -A FORWARD -i " | ||
+ | -A FORWARD -j LOG | ||
+ | COMMIT | ||
+ | EOF | ||
+ | echo " | ||
+ | </ | ||
+ | |||
+ | After configuring the 2 variables, save the script below as nat.sh and make it executable by doing | ||
+ | |||
+ | <code bash> | ||
+ | chmod a+x nat.sh | ||
+ | </ | ||
+ | |||
+ | Now, test the script by running as root | ||
+ | |||
+ | <code bash> | ||
+ | sudo sh nat.sh | ||
+ | </ | ||
+ | |||
+ | Investigate the messages from the console output to see if any error happened. If everything looks fine, use another host in the internal network to test if it can access the external network (presumably the Internet). A quick way to test is pinging Google public DNS from the console. | ||
+ | |||
+ | <code bash> | ||
+ | ping -c 3 -W 10 8.8.8.8 | ||
+ | </ | ||
+ | |||
+ | If ping responds, make our new script bootable so we don't have to run the script every time we restart. | ||
+ | |||
+ | <code bash> | ||
+ | sudo mv nat.sh / | ||
+ | </ | ||
+ | |||
+ | See : https:// | ||
+ | |||
+ | <code bash> | ||
+ | sudo systemctl enable rc-local.service | ||
+ | </ | ||
+ | |||
+ | <code bash> | ||
+ | sudo nano / | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | # Executing nat script | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | As a final test, restart your computer and test to see if you still have the same functionality. If so then congratulations! If not then make sure you followed the above correctly so the script is bootable. | ||
+ | |||
+ | |||
+ | Mais pour mémoire le point important est celui-ci: | ||
+ | |||
+ | <code bash> | ||
+ | iptables -A POSTROUTING -t nat -j MASQUERADE | ||
+ | </ | ||
+ | |||
+ | Pour ne pas perdre le NAT, lancer cette commande à chaque boot par exemple en l' | ||
==== 1.2.5. Récupérer des ip / mac online.net ==== | ==== 1.2.5. Récupérer des ip / mac online.net ==== |