mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
* checkpoint * Docker dev environment final root cause analysis * Update CONTRIBUTING.md * Update apps/fz_common/lib/fz_net.ex Co-authored-by: Po Chen <chenpaul914@gmail.com> Co-authored-by: Po Chen <chenpaul914@gmail.com>
9 lines
208 B
Bash
Executable File
9 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ip link add dev wg-firezone type wireguard
|
|
ip address replace dev wg-firezone 10.3.2.1/24
|
|
ip -6 address replace dev wg-firezone fd00::3:2:1/120
|
|
ip link set mtu 1280 up dev wg-firezone
|
|
|
|
mix start
|