Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moby/vpnkit
A toolkit for embedding VPN capabilities in your application
https://github.com/moby/vpnkit
Last synced: 11 days ago
JSON representation
A toolkit for embedding VPN capabilities in your application
- Host: GitHub
- URL: https://github.com/moby/vpnkit
- Owner: moby
- License: apache-2.0
- Created: 2016-05-09T17:31:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-24T13:35:22.000Z (3 months ago)
- Last Synced: 2024-10-16T06:23:47.872Z (24 days ago)
- Language: OCaml
- Homepage:
- Size: 17.3 MB
- Stars: 1,103
- Watchers: 53
- Forks: 187
- Open Issues: 79
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-network-stuff - **688**星
README
VPN-friendly networking devices for [HyperKit](https://github.com/moby/hyperkit)
===============================[![Build Status (OSX)](https://circleci.com/gh/moby/vpnkit.png)](https://circleci.com/gh/moby/vpnkit)
Binary artefacts are built by CI:
- [MacOS](https://circleci.com/gh/moby/vpnkit)
- [Windows](https://ci.appveyor.com/project/moby/vpnkit/history)![VPNKit diagram](http://moby.github.io/vpnkit/vpnkit.png)
VPNKit is a set of tools and services for helping [HyperKit](https://github.com/moby/hyperkit)
VMs interoperate with host VPN configurations.Building on Unix (including Mac)
--------------------------------First install `wget`, `opam`, `pkg-config`, and `dylibbundler` using your
package manager of choice.If you are an existing `opam` user then you can either build against your existing `opam`
package universe, or the custom universe contained in this repo. To use the custom universe,
ensure that you unset your `OPAMROOT` environment variable:
```
unset OPAMROOT
```To set up the OCaml build environment, type:
```
make ocaml
```
To install the OCaml dependencies, type:
```
make depends
```
To build:
```
make
```When the build succeeds the `vpnkit.exe` binary should be available in the current directory.
Building on Windows
-------------------First install the [OCaml environment with Cygwin](https://fdopen.github.io/opam-repository-mingw/installation/).
Note that although the Cygwin tools are needed for the build scripts, Cygwin itself will not
be linked to the final executable.Inside the `OCaml64` (Cygwin) shell, unset the `OPAMROOT` environment and build by:
```
unset OPAMROOT
make
```The first build will take a little longer as it will build all the package dependencies first.
When the build succeeds the `vpnkit.exe` binary should be available in the current directory.
Running with hyperkit
---------------------First ask `vpnkit` to listen for ethernet connections on a local Unix domain socket:
```
vpnkit --ethernet /tmp/ethernet --debug
```
Next ask [com.docker.hyperkit](https://github.com/moby/hyperkit) to connect a NIC to this
socket by adding a command-line option like `-s 2:0,virtio-vpnkit,path=/tmp/ethernet`. Note:
you may need to change the slot `2:0` to a free slot in your VM configuration.Why is this needed?
-------------------Running a VM usually involves modifying the network configuration on the host, for example
by activating Ethernet bridges, new routing table entries, DNS and firewall/NAT configurations.
Activating a VPN involves modifying the same routing tables, DNS and firewall/NAT configurations
and therefore there can be a clash -- this often results in the network connection to the VM
being disconnected.VPNKit, part of [HyperKit](https://github.com/moby/hyperkit)
attempts to work nicely with VPN software by intercepting the VM traffic at the Ethernet level,
parsing and understanding protocols like NTP, DNS, UDP, TCP and doing the "right thing" with
respect to the host's VPN configuration.VPNKit operates by reconstructing Ethernet traffic from the VM and translating it into the
relevant socket API calls on OSX or Windows. This allows the host application to generate
traffic without requiring low-level Ethernet bridging support.Design
------- [Using vpnkit as a default gateway](docs/ethernet.md): describes the flow of ethernet traffic to/from the VM
- [Port forwarding](docs/ports.md): describes how ports are forwarded from the host into the VM
- [Experimental transparent HTTP proxy](docs/transparent-http-proxy.md): describes the
experimental support for transparent HTTP(S) proxyingLicensing
---------VPNKit is licensed under the Apache License, Version 2.0. See
[LICENSE](https://github.com/moby/vpnkit/blob/master/LICENSE) for the full
license text.Contributions are welcome under the terms of this license. You may wish to browse
the [weekly reports](reports) to read about overall activity in the repository.