Go to file
Marvin Steadfast 104e72bd86
All checks were successful
continuous-integration/drone/push Build is passing
adds ability to kill a process of a userland wireguard-go
2021-04-16 14:21:36 +02:00
assets adds ability to kill a process of a userland wireguard-go 2021-04-16 14:21:36 +02:00
cmd adds ability to kill a process of a userland wireguard-go 2021-04-16 14:21:36 +02:00
init adds init files to packages 2021-03-08 09:17:06 +01:00
third_party new wireguard-go version 0.0.2210212 2021-02-15 13:15:19 +01:00
tools/pidof adds ability to kill a process of a userland wireguard-go 2021-04-16 14:21:36 +02:00
vendor adds ability to kill a process of a userland wireguard-go 2021-04-16 14:21:36 +02:00
wgquick adds ability to kill a process of a userland wireguard-go 2021-04-16 14:21:36 +02:00
.drone.yml fixes goreleaser version 2021-03-08 09:52:57 +01:00
.gitignore adds ability to kill a process of a userland wireguard-go 2021-04-16 14:21:36 +02:00
.gitmodules adds wireguard-go as submodule 2021-01-22 10:10:06 +01:00
.goreleaser.yml adds ability to kill a process of a userland wireguard-go 2021-04-16 14:21:36 +02:00
go.mod adds ability to kill a process of a userland wireguard-go 2021-04-16 14:21:36 +02:00
go.sum adds ability to kill a process of a userland wireguard-go 2021-04-16 14:21:36 +02:00
LICENSE homebrew 2021-01-25 11:32:38 +01:00
logo.png docs: readme work 2021-01-21 13:42:24 +01:00
main.go uses wireguard-go submodule + arm 6 and 7 builds 2021-01-22 11:05:17 +01:00
Makefile adds ability to kill a process of a userland wireguard-go 2021-04-16 14:21:36 +02:00
README.md try to fix homebrew 2021-01-27 11:35:23 +01:00
tools.go adds ability to kill a process of a userland wireguard-go 2021-04-16 14:21:36 +02:00

logo

wg-quick like library with batteries included

Go Reference Go Report Card


This is a friendly fork of wg-quick-go. So all glory to them!!!11!! It contains everything needed to get a system into a wireguard vpn network. If there is no wireguard kernel modul available, it will spin up the embedded wireguard-go to create a wireguard interface.

Installation

Prebuild packages

Get these on the release page.

Homebrew

  • brew tap xsteadfastx/tap https://github.com/xsteadfastx/homebrew-tap
  • brew install wg-quicker

Compile it for yourself

  • git clone https://git.xsfx.dev/xsteadfastx/wg-quicker.git
  • cd wg-quicker
  • make build

Roadmap

  • full wg-quick feature parity
    • PreUp
    • PostUp
    • PreDown
    • PostDown
    • DNS
    • MTU
    • Save --> Use MarshallText interface to save config
  • Sync
  • Up
  • Down
  • MarshallText
  • UnmarshallText
  • Minimal test
  • Embedded wireguard-go
  • Integration tests ((TODO; have some virtual machines/kvm and wreck havoc :) ))

Caveats

  • Endpoints DNS MarshallText is unsupported
  • Pre/Post Up/Down doesn't support escaped %i, that is all %i are expanded to interface name.
  • SaveConfig in config is only a placeholder (( since there's no reading/writing from files )). Use Unmarshall/Marshall Text to save/load config (( you're responsible for IO)).