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 [2016/11/05 14:05] – [1.2.5. Activation du NAT] vivi | guide:installation_serveur_agregation_connexion_2014 [2021/04/18 20:24] (Version actuelle) – modification externe 127.0.0.1 | ||
---|---|---|---|
Ligne 117: | Ligne 117: | ||
Une bonne idée est de s' | Une bonne idée est de s' | ||
- | Mais pour mémoire le point important est celui-ci: | + | 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 | ||
+ | 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 / | ||
+ | </ | ||
< | < | ||
- | sudo iptables -A POSTROUTING -t nat -j MASQUERADE | + | # 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 | ||
</ | </ | ||