Bonjour,
J'ai installé Firestarter sur ma FC6, il fait office de passerlle et de par-feu.
Mais je n'arrive pas à ouvrir les port pour mon VPN (PPTP) et le protocole GRE, le serveur PPTP est sur la passerelle, quand je me connecte de l'extérieur j'ai l'erreur de connexion (Windows)
Déconnecté
Erreur 628: La connexion a été fermée par l'ordinateur distant avant de pouvoir être terminée. Pour obtenir de l'assistance, cliquez sur ....
J'ai suivi la procédure suivante:
http://www.fs-security.com/docs/vpn.php
Running a Microsoft VPN server
If you want to run a PPTP VPN server on your internal network and allow remove clients to connect to it, the firewall must be told to forward the requests to the server:
# Forward PPTP VPN connections to internal server
SERVER=192.168.0.100 # Internal VPN server
$IPT -A FORWARD -i $IF -o $INIF -p tcp --dport 1723 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
$IPT -t nat -A PREROUTING -i $IF -p tcp --dport 1723 -j DNAT --to $SERVER
$IPT -A FORWARD -i $IF -o $INIF -p 47 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
$IPT -t nat -A PREROUTING -i $IF -p 47 -j DNAT --to $SERVER
Note that you must change the SERVER variable from 192.168.0.100 to the actual internal IP of your VPN server.
Ma configuration:
ppp0 :adsl
eth0 : interface connectée au modem (ip:10.0.0.1)
eth1 : interface privée (ip: 192.168.0.1)
Si vous avez la solution pour moi ?!!?