user158625
user158625

Reputation: 261

how to create a vpn software

I want to create an application which creates a VPN between some endpoints, something like hamachi and i do not have a starting point. I haven't found any resource to explain how to create such a network application.I want to use c# because i have some experience with it. I really need some help, anything that can put me on the right way. Thanks.

Upvotes: 3

Views: 8801

Answers (2)

Phil Miller
Phil Miller

Reputation: 38118

There are a number of distinct elements of VPN software that you'll have to figure out:

  • What technology/standard will your program use to provide the privacy? Some common ones are IPSEC, L2TP, PPTP, SSH, and SSL. Web searches ought to turn up rich information (including RFCs) on all of these. If you're doing this as a learning exercise, rather than needing actual security, you could also design your own.
  • Are you implementing a client, a server, or both?
  • What operating system(s) will you support? This affects what you need to do to convince it to route packets through your application.
  • Do you plan to interoperate with software implementing some standard?

Upvotes: 3

Dean J
Dean J

Reputation: 40298

You might want to take a look at SSH tunneling and see if it solves your needs.

Upvotes: 1

Related Questions