5
0
mirror of https://github.com/cwinfo/yggdrasil-network.github.io.git synced 2024-09-19 00:59:36 +00:00
yggdrasil-network.github.io/installation-linux-openwrt.md

32 lines
630 B
Markdown
Raw Normal View History

2019-08-07 13:08:28 +00:00
---
tags: dontlink
sitemap: true
---
# Installing on OpenWrt
2019-08-07 13:08:28 +00:00
`yggdrasil` v0.4+ packages are available in OpenWRT since 21.02.
2019-08-07 13:08:28 +00:00
To configure Yggdrasil with the LuCI web interface, install the package `luci-app-yggdrasil`.
2019-08-07 13:08:28 +00:00
## Configuration
2019-08-07 13:08:28 +00:00
Use the LuCI web interface to configure Yggdrasil, see the "Network" section.
2019-08-07 13:08:28 +00:00
Alternatively, you can configure Yggdrasil with just a command line.
To show currently configured options, run the following command:
2019-08-07 13:08:28 +00:00
```
uci show yggdrasil
2019-08-07 13:08:28 +00:00
```
To add a new peer:
2019-08-07 13:08:28 +00:00
```
uci add yggdrasil peer
uci set yggdrasil.@peer[-1].uri='tcp://1.2.3.4:5678'
uci commit
/etc/init.d/yggdrasil restart
```