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

Create installation-linux-openwrt.md

This commit is contained in:
Eninspace 2019-08-07 16:08:28 +03:00 committed by GitHub
parent 688d374435
commit a1cc2194fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,46 @@
---
tags: dontlink
sitemap: true
---
# Installing on OpenWrt 19.07
Yggdrasil is supported on the OpenWrt based router.
Perform installation steps over SSH by connecting to the Router as the
`root` user, e.g. `ssh root@192.168.1.1`, or another admin-level user if
configured.
## Package install from repository
Install the `yggdrasil` package:
```
opkg update
opkg install yggdrasil
```
Yggdrasil can then be updated in the future by updating the packages:
```
opkg update
opkg upgrade yggdrasil
```
## Installing on OpenWrt 18.06 and below
Officially, there is no package support on the OpenWrt 18.06, so you may have any problems.
```
opkg update
opkg install http://downloads.openwrt.org/releases/packages-19.07/xxxxxx_xxx/packages/yggdrasil_x.x.x-x_xxxxxx_xxx.ipk
```
Where xxxxxx_xxx your architecture, and yggdrasil_x.x.x-x_xxxxxx_xxx.ipk name of package
For example
```
opkg install http://downloads.openwrt.org/releases/packages-19.07/mipsel_24kc/packages/yggdrasil_0.3.5-4_mipsel_24kc.ipk
```
This method does not guarantee a successful installation
## After installation
Read the [OpenWrt platform page](platform-openwrt.md) page for information
on how to configure Yggdrasil and guidance on modifying the configuration.