https://github.com/koho/wg-ddns
WireGuard DDNS Endpoint
https://github.com/koho/wg-ddns
Last synced: 9 months ago
JSON representation
WireGuard DDNS Endpoint
- Host: GitHub
- URL: https://github.com/koho/wg-ddns
- Owner: koho
- License: mit
- Created: 2023-08-06T16:44:53.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-01T12:00:18.000Z (almost 3 years ago)
- Last Synced: 2025-10-11T17:32:07.031Z (9 months ago)
- Language: Go
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wg-ddns
WireGuard DDNS Endpoint
## Usage
Install the binary using the following command:
### A/AAAA Record
```shell
go install github.com/koho/wg-ddns/cmd/wg-ip@latest
```
### SVCB Record
```shell
go install github.com/koho/wg-ddns/cmd/wg-svcb@latest
```
### Windows
Install the background service:
```shell
sc create wg-ddns binPath= "%GOPATH%\bin\wg-ip.exe -i YOUR_INTERFACE" DisplayName= "WireGuard DDNS" start= auto
```
Start the service:
```shell
net start wg-ddns
```
### Linux
```shell
wg-ip -i YOUR_INTERFACE -t 180
```