CD> Is anyone using VPN with RH8? What is available? What do you recommend?

My configuration; RH 7.3 as firewall/gateway for internal net with workstations 
(win2k, rh8, mac)

Win2k is VPN server (Microsoft VPN), so client must be also win machine (win2k or
winXP) or you can use stand alone VPN client for other windowz.

All you have to do is to set firewall-iptables:

This are rules for VPN with PPTP protocol:
- 192.168.0.3 is win2k VPN server

iptables -t nat -A PREROUTING -i ppp0 -p tcp --dport 1723 -j DNAT --to 192.168.0.3
iptables -t nat -A PREROUTING -i ppp0 -p 47 -j DNAT --to 192.168.0.3
iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE
iptables -I FORWARD -p 47 -d 192.168.0.3 -j ACCEPT
iptables -I FORWARD -p tcp --dport 1723 -d 192.168.0.3 -j ACCEPT

You can also use VPN with L2TP but with different protocols (50,51).


-- 
Best regards,
 Bruma                           mailto:[EMAIL PROTECTED]



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to