diff --git a/docs/installation/fedora.md b/docs/installation/fedora.md index 2378320ab5..b1bdb19cb2 100644 --- a/docs/installation/fedora.md +++ b/docs/installation/fedora.md @@ -208,7 +208,7 @@ learn how to [customize your Systemd Docker daemon options](/articles/systemd/). ## Running Docker with a manually-defined network -If you manually configure your network using `systemd-network` with fedora version 22, containers you start with Docker may be unable to access your network. +If you manually configure your network using `systemd-network` with `systemd` version 219 or higher, containers you start with Docker may be unable to access your network. Beginning with version 220, the forwarding setting for a given network (`net.ipv4.conf..forwarding`) defaults to *off*. This setting prevents IP forwarding. It also conflicts with Docker which enables the `net.ipv4.conf.all.forwarding` setting within a container. To work around this, edit the `.network` file in @@ -218,6 +218,8 @@ To work around this, edit the `.network` file in [Network] ... IPForward=kernel +# OR +IPForward=true ... ```