mirror of
https://github.com/KusakabeShi/EtherGuard-VPN.git
synced 2024-11-22 07:13:09 +01:00
97 lines
3.7 KiB
Markdown
97 lines
3.7 KiB
Markdown
# Etherguard
|
||
|
||
[English](README.md) | [中文](#)
|
||
|
||
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](code_of_conduct.md)
|
||
|
||
一個從wireguard-go改來的Full Mesh Layer2 VPN.
|
||
|
||
OSPF能夠根據cost自動選路
|
||
但是實際上,我們偶爾會遇到去程/回程不對等的問題
|
||
之前我就在想,能不能根據單向延遲選路呢?
|
||
例如我有2條線路,一條去程快,一條回程快。就自動過去回來各自走快的?
|
||
|
||
所以我就想弄一個這種的VPN了,任兩節點會測量單向延遲,並且使用[Floyd-Warshall演算法](https://zh.wikipedia.org/zh-tw/Floyd-Warshall算法)演算法找出任兩節點間的最佳路徑
|
||
來回都會是最佳的。有2條線路,一條去程快,一條回程快,就會自動各走各的
|
||
|
||
擔心時鐘不同步,單向延遲測量不正確?
|
||
沒問題的,證明可以看這邊: [https://www.kskb.eu.org/2021/08/rootless-routerpart-3-etherguard.html](https://www.kskb.eu.org/2021/08/rootless-routerpart-3-etherguard.html)
|
||
|
||
## Usage
|
||
|
||
```bash
|
||
Usage of ./etherguard-go-vpp:
|
||
-bind string
|
||
UDP socket bind mode. [linux|std]
|
||
You may need this if tou want to run Etherguard under WSL. (default "linux")
|
||
-cfgmode string
|
||
cfgmode 快速生成設定檔的模式,目前只實作了super模式 [none|super|p2p]
|
||
-config string
|
||
設定檔路徑
|
||
-example
|
||
印一個範例設定檔
|
||
-help
|
||
Show this help
|
||
-mode string
|
||
運作模式,有兩種運作模式 super/edge
|
||
solve是用來解 Floyd Warshall的,Static模式會用到
|
||
gencfg則是快速生成設定檔
|
||
-no-uapi
|
||
不使用UAPI。使用UAPI,你可以用wg命令看到一些連線資訊(畢竟是從wireguard-go改的)
|
||
-version
|
||
顯示版本
|
||
```
|
||
|
||
## Working Mode
|
||
|
||
Mode | Description
|
||
------------|:-----
|
||
Static Mode | 沒有自動選路,沒有握手伺服器<br>類似原本的wireguard,一切都要提前配置好<br>[詳細介紹](example_config/static_mode/README_zh.md)
|
||
Static Mode | 此模式是受到[n2n](https://github.com/ntop/n2n)的啟發,分為SuperNode和EdgeNode兩種節點<br>EdgeNode首先和SuperNode建立連線,藉由SuperNode交換其他EdgeNode的資訊<br>由SuperNode執行[Floyd-Warshall演算法](https://zh.wikipedia.org/zh-tw/Floyd-Warshall算法),並把計算結果分發給EdgeNode<br>[詳細介紹](example_config/super_mode/README_zh.md)
|
||
P2P Mode | 此模式是受到[tinc](https://github.com/gsliepen/tinc)的啟發,只有EdgeNode,EdgeNode會彼交換資訊<br>EdgeNodes會嘗試互相連線,並且通報其他EdgeNoses連線成功與否<br>每個Edge各自執行[Floyd-Warshall演算法](https://zh.wikipedia.org/zh-tw/Floyd-Warshall算法),若不能直達則使用最短路徑<br>**此模式尚未經過長時間測試,尚不建議生產環境使用**<br>[詳細介紹](example_config/p2p_mode/README_zh.md)
|
||
|
||
## Quick start
|
||
|
||
[Super模式快速上手請按我](example_config/super_mode/README_zh.md)
|
||
|
||
## Build
|
||
|
||
### No-vpp version
|
||
|
||
編譯沒有VPP libmemif的版本。可以在一般linux電腦上使用
|
||
|
||
安裝 Go 1.16
|
||
|
||
```bash
|
||
add-apt-repository ppa:longsleep/golang-backports
|
||
apt-get -y update
|
||
apt-get install -y wireguard-tools golang-go build-essential git
|
||
```
|
||
|
||
Build
|
||
|
||
```bash
|
||
make
|
||
```
|
||
|
||
### VPP version
|
||
|
||
編譯有VPP libmemif的版本。
|
||
|
||
用這個版本的話你的電腦要有libmemif.so才能run起來
|
||
|
||
安裝 VPP 和 libemif
|
||
|
||
```bash
|
||
echo "deb [trusted=yes] https://packagecloud.io/fdio/release/ubuntu focal main" > /etc/apt/sources.list.d/99fd.io.list
|
||
curl -L https://packagecloud.io/fdio/release/gpgkey | sudo apt-key add -
|
||
apt-get -y update
|
||
apt-get install -y vpp vpp-plugin-core python3-vpp-api vpp-dbg vpp-dev libmemif libmemif-dev
|
||
```
|
||
|
||
Build
|
||
|
||
```bash
|
||
make vpp
|
||
```
|