diff options
author | Alex <alex@adnab.me> | 2023-01-26 10:31:43 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2023-01-26 10:31:43 +0000 |
commit | 1311742fe07ca619d1f37f9f1eabd07ee0d141db (patch) | |
tree | b0ae5a7d3012a965baaeefb59a6fba313ec2cbbb /doc | |
parent | 9adf5ca76dc165611a9421ddf49ecb36d02ed754 (diff) | |
parent | f2492107d7858882adf386f8925829659755f1e5 (diff) | |
download | garage-1311742fe07ca619d1f37f9f1eabd07ee0d141db.tar.gz garage-1311742fe07ca619d1f37f9f1eabd07ee0d141db.zip |
Merge pull request 'cookbook/real-world.md: Added note about mesh network options.' (#485) from jpds/garage:mesh-networks-note into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/485
Diffstat (limited to 'doc')
-rw-r--r-- | doc/book/cookbook/real-world.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/book/cookbook/real-world.md b/doc/book/cookbook/real-world.md index 5423bbab..9be1ba44 100644 --- a/doc/book/cookbook/real-world.md +++ b/doc/book/cookbook/real-world.md @@ -19,8 +19,12 @@ To run a real-world deployment, make sure the following conditions are met: - You have at least three machines with sufficient storage space available. -- Each machine has a public IP address which is reachable by other machines. - Running behind a NAT is likely to be possible but hasn't been tested for the latest version (TODO). +- Each machine has a public IP address which is reachable by other machines. It + is highly recommended that you use IPv6 for this end-to-end connectivity. If + IPv6 is not available, then using a mesh VPN such as + [Nebula](https://github.com/slackhq/nebula) or + [Yggdrasil](https://yggdrasil-network.github.io/) are approaches to consider + in addition to building out your own VPN tunneling. - This guide will assume you are using Docker containers to deploy Garage on each node. Garage can also be run independently, for instance as a [Systemd service](@/documentation/cookbook/systemd.md). |