4
0
mirror of https://github.com/cwinfo/yggdrasil-network.github.io.git synced 2025-07-18 09:18:56 +00:00

Update platform-edgerouter.md

This commit is contained in:
Neil Alexander
2018-05-09 23:31:49 +01:00
committed by GitHub
parent d0b4fd6c69
commit 9aac188020

View File

@ -9,7 +9,7 @@ Yggdrasil is supported on the Ubiquiti EdgeRouter using the [vyatta-yggdrasil](h
## Notes ## Notes
- Yggdrasil does not survive an upgrade of the EdgeRouter firmware. You must reinstall it after a system upgrade. - Yggdrasil does not survive an upgrade of the EdgeRouter firmware. You must reinstall it after a system upgrade.
- After reinstalling Yggdrasil, use `load` to reload your configuration `commit` to make it effective again. Do not run `save` under any circumstances until after you have reloaded your configuration. - After reinstalling Yggdrasil, use `load` to reload your configuration and then `commit` to make it effective again. Do not run `save` under any circumstances until after you have reloaded your configuration.
## Installation ## Installation
@ -30,7 +30,7 @@ At this point, Yggdrasil will start running using default configuration.
## Add peers ## Add peers
Add additional peers (using `tcp://` or `udp://`): Add additional peers to your configuration (using `tcp://` or `udp://`):
``` ```
configure configure
set interfaces yggdrasil tunX peers tcp://hostname.com:12345 set interfaces yggdrasil tunX peers tcp://hostname.com:12345
@ -43,11 +43,11 @@ run restart yggdrasil tun0
## Set multicast ## Set multicast
Enable or disable multicast (replacing `tunX` with your chosen TUN adapter): Enable or disable multicast peer discovery:
``` ```
configure configure
set interfaces yggdrasil tunX multicast true set interfaces yggdrasil tun0 multicast true
set interfaces yggdrasil tunX multicast false set interfaces yggdrasil tun0 multicast false
commit commit
run restart yggdrasil tun0 run restart yggdrasil tun0
@ -55,7 +55,7 @@ run restart yggdrasil tun0
## Set MTU ## Set MTU
Set the maximum MTU of the Yggdrasil interface, from 1280-65535 (replacing `tunX` with your chosen TUN adapter): Set the maximum MTU of the Yggdrasil interface, from 1280-65535:
``` ```
configure configure
set interfaces yggdrasil tun0 mtu 1500 set interfaces yggdrasil tun0 mtu 1500
@ -66,7 +66,7 @@ run restart yggdrasil tun0
## Configuration ## Configuration
Other changes should be made to `/config/yggdrasil.tun0.conf` by hand. To make effective, restart Yggdrasil (replacing `tunX` with your chosen TUN adapter): Other changes should be made to `/config/yggdrasil.tun0.conf` by hand. To make effective, restart Yggdrasil:
``` ```
restart yggdrasil tun0 restart yggdrasil tun0
``` ```