-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added readme for haaukins 2.0 specific release
- Loading branch information
1 parent
128bc2b
commit 95d5e9c
Showing
4 changed files
with
41 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
[Install] | ||
WantedBy=multi-user.target | ||
[Unit] | ||
Description=Wireguard gRPC Service | ||
ConditionPathExists=/home/haaukins/haaukins-wg | ||
After=network.target | ||
|
||
[Service] | ||
Type=simple | ||
User=haaukins | ||
Group=haaukins | ||
LimitNOFILE=1024 | ||
Environment="CONFIG_PATH=/home/haaukins/haaukins-wg/config/config.yml" | ||
Restart=on-failure | ||
RestartSec=10 | ||
StartLimitIntervalSec=60 | ||
TimeOutStopSec=300 | ||
|
||
WorkingDirectory=/home/haaukins/haaukins-wg | ||
ExecStart=/home/haaukins/haaukins-wg/wgservice | ||
|
||
# make sure log directory exists and owned by syslog | ||
StandardOutput=syslog | ||
StandardError=syslog | ||
SyslogIdentifier=haaukins-wg | ||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,178 +1,13 @@ | ||
# wg | ||
# Gwireguard (Haaukins 2.0 edition) | ||
This Gwireguard is specifically meant to be used by the Haaukins 2.0 Agent. | ||
You have probably come here from the Agent github page. | ||
No dependencies should be installed as they already should be part of the install script from the Agent | ||
|
||
Wireguard backed and gRPC wrapped server which is responsible to create VPN connection through gRPC requests. | ||
The idea is basically having remote control to gRPC endpoint to be able to setup a VPN connection from your client. | ||
## Configuration | ||
Configuration is very simple. First unpack the released tarball into `/$HOME/haaukins-wg/` | ||
Then create a copy of the `config.example.yml` file in the `config` folder as `config.yml` and create two new UUIDs with `uuidgen`, use these UUIDs as auth and sign key in the config. | ||
IMPORTANT. These are also the UUIDs referenced in the `vpn-service` part of the Agent configuration. | ||
|
||
As initial step, dockerization of wg is dismissed for now, however it will be added. | ||
A `systemd` service file has also been included which should, if unpacked correcly, be plug and play. | ||
|
||
## Installation of wireguard | ||
|
||
Most of the cases [official installation page](https://www.wireguard.com/install/) is enough to install wireguard however, | ||
in some cases, the instructions are misleading on official page, hence I am including installation | ||
steps for Debian. (-in case of error in official installation following steps could be followed -) | ||
|
||
```bash | ||
$ sudo apt update | ||
$ sudo apt upgrade | ||
$ sudo sh -c "echo 'deb http://deb.debian.org/debian buster-backports main contrib non-free' > /etc/apt/sources.list.d/buster-backports.list" | ||
$ sudo apt update | ||
$ apt search wireguard | ||
$ sudo apt install wireguard | ||
# in some cases command line tools does not work for wireguard in that case do following | ||
$ apt-get install wireguard-dkms wireguard-tools linux-headers-$(uname -r) | ||
``` | ||
|
||
## How to run through Docker Container | ||
|
||
```bash | ||
$ docker build -t wg . | ||
|
||
$ docker run -v /path/to/service/config:/app/ \ | ||
-e CONFIG_PATH=/app/ | ||
--name=wireguard-service \ | ||
--net=host \ | ||
--cap-add=NET_ADMIN \ | ||
--cap-add=SYS_MODULE \ | ||
-v /lib/modules:/lib/modules \ | ||
--sysctl="net.ipv4.conf.all.src_valid_mark=1" \ | ||
wg | ||
``` | ||
|
||
Docker will run only in Linux machines.`--net=host` is required because Wireguard service generates VPN endpoint ports randomly. | ||
|
||
|
||
## Available gRPC calls | ||
|
||
- **GenPrivateKey** | ||
- Generates private key which is required to initialize wireguard interface.gRPC call requires only name of the file, | ||
which will have private key in it. | ||
|
||
Example Usage: | ||
````go | ||
privKeyResp, err := client.GenPrivateKey(context.Background(), &wg.PrivKeyReq{PrivateKeyName: "random_privatekey"}) | ||
if err != nil { | ||
fmt.Println(fmt.Sprintf("Error happened in creating private key %v", err)) | ||
panic(err) | ||
} | ||
fmt.Println(privKeyResp.Message) | ||
```` | ||
Private key will be availabe in defined configuration directory in config.yml file. | ||
|
||
- **GenPublicKey** | ||
- Generates pair of private key as public key, in order to use this functionality, it requires | ||
existing private key name (which is generated in earlier step) then public key name (-which will be generated-) | ||
|
||
Example Usage: | ||
````go | ||
publicKeyResp, err := client.GenPublicKey(context.Background(), &wg.PubKeyReq{PrivKeyName: "random_privatekey", PubKeyName: "random_publickey"}) | ||
if err != nil { | ||
fmt.Println(fmt.Sprintf("Error happened in creating public key %s", err.Error())) | ||
panic(err) | ||
} | ||
if publicKeyResp != nil { | ||
fmt.Println(publicKeyResp.Message) | ||
} | ||
```` | ||
|
||
- **GetPrivateKey** | ||
|
||
- Despite of GenPrivateKey functionality, this one returns existing private key content. | ||
|
||
Example Usage: | ||
````go | ||
privateKey, err := client.GetPrivateKey(context.Background(), &wg.PrivKeyReq{PrivateKeyName: "random_privatekey"}) | ||
if err != nil { | ||
fmt.Println(fmt.Sprintf("Get content of private key error %s", err.Error())) | ||
panic(err) | ||
} | ||
if privateKey != nil { | ||
fmt.Println(privateKey.Message) | ||
} | ||
```` | ||
- **GetPublicKey** | ||
|
||
- Returns content of existing public key content | ||
````go | ||
publicKey, err := client.GetPublicKey(context.Background(), &wg.PubKeyReq{PubKeyName: "random_publickey"}) | ||
if err != nil { | ||
fmt.Println(fmt.Sprintf("Get content of public key error %s", err.Error())) | ||
panic(err) | ||
} | ||
if publicKey != nil { | ||
fmt.Println(publicKey.Message) | ||
} | ||
```` | ||
|
||
- **InitializeI** | ||
- It is for initializing wireguard interface in configuration folder which is provided in configuration file. It requires | ||
wireguard interface specifications, which are | ||
```raw | ||
Address: <subnet-of-interface> | ||
ListenPort: <where-users-will-be-connected-to> | ||
SaveConfig: <whether-save-config-or-not> | ||
PrivateKey: <private-key-of-server> | ||
Eth : <main-ethernet-point-to-outside> | ||
IName: <interface-name-required-in-grpc-call> | ||
``` | ||
Example usage: | ||
````go | ||
interfaceGenResp, err := client.InitializeI(context.Background(), &wg.IReq{ | ||
Address: "10.0.2.1/24", | ||
ListenPort: 4000, | ||
SaveConfig: true, | ||
PrivateKey: privateKey.Message, | ||
Eth: "eth0", | ||
IName: "wg1", | ||
}) | ||
if err != nil { | ||
fmt.Println(fmt.Sprintf(" Initializing interface error %v", err.Error())) | ||
|
||
} | ||
if interfaceGenResp != nil { | ||
fmt.Println(interfaceGenResp.Message) | ||
} | ||
fmt.Println(interfaceGenResp.Message) | ||
```` | ||
|
||
- **GetNICInfo** | ||
- Returns information regarding to requested wireguard interface. | ||
|
||
Example Usage: | ||
|
||
````go | ||
nicInfoResp, err := client.GetNICInfo(context.Background(), &wg.NICInfoReq{Interface: "wg1"}) | ||
if err != nil { | ||
fmt.Println(fmt.Sprintf("Getting information of interface error %s", err.Error())) | ||
panic(err) | ||
} | ||
if nicInfoResp != nil { | ||
fmt.Println(nicInfoResp.Message) | ||
} | ||
```` | ||
|
||
- **ManageNIC** | ||
- It can up or down given wg interface. | ||
|
||
Example Usage: | ||
````go | ||
downI, err := client.ManageNIC(context.Background(), &wg.ManageNICReq{Cmd: "down", Nic: "wg1"}) | ||
if err != nil { | ||
fmt.Println(fmt.Sprintf("down interface is failed %s", err.Error())) | ||
panic(err) | ||
} | ||
fmt.Println(downI.Message) | ||
```` | ||
|
||
- **ListPeers** | ||
- Returns the content of command line which is `wg show <wg-interface>` | ||
|
||
Example Usage: | ||
```go | ||
resp, err := client.ListPeers(context.Background(), &wg.ListPeersReq{Nicname: "wg0"}) | ||
if err != nil { | ||
fmt.Printf("List peers error %v ", err) | ||
panic(err) | ||
} | ||
fmt.Println(resp.Response) | ||
``` | ||
Make sure the Gwireguard service is running before the Daemon is connected to the Agent. |