hello,
i want tocreate vpn between linux server and win client over lan using lan card plz help...
Printable View
hello,
i want tocreate vpn between linux server and win client over lan using lan card plz help...
Use ssh or vnc.
vpn implies using something like freeswan (that has been integrated into the 2.5.x kernel, and has patches for the 2.4.20 kernel)
Good vpn howto see www.tldp.org - browse the howtos and you'll see it. A bit long but very good!
Vpn implies that you want a secure connection over the internet between 2 sites. You can tunnel your data through ssh which would be a vpn. Though I think he just wants to be able to access his linux box from his windows box which I would use ssh or vnc for.
I thought a virtual private network implied you wanted to access servers on an internal network through an external interface through a secure connection. For instance, my home computer being an external client, and a server at work that does user authentication as the server on the internal network. It would have absolutely no external network connection. The only way in would be through one of the other servers that is on the internet. I can set up freeswan to use that server that is on the internet for it's authentication (for lack of a better word). That way I can map that network over to a private network of my own (192.168.10.0 let's say). So I can rdesktop 192.168.10.5 (the internal server) and have it show up:) You could do it with ssh too, but then you would have to refer to it as the server IP address with a nonstandard port number, right? I am not up on all of SSHs features I don't think.
What you gave is just one example of how a vpn can be used. Anytime to you connect 2 sites securely(using tunnels and encryption) over public telecommunications would be considered a vpn. Such as having remote users dial into a nas and using vpn client software for a remote desktop. You can use ssh to create a tunnel and then use pppd to send tcp/ip data over it between 2 linux routers. There is a howto for that floating around somewhere. You can also use stunnel if you don't want to use ssh, will work the same way.