Docker with macvlan networking on Synology DSM6+

corcoran
3 min readMay 22, 2020
To me, to you

Following on from my other story about DDNS and TLS with Cloudflare, I now want to extend the services on my Synology NAS to include Pihole, DNSCrypt, others; ideally using Docker, rather than some of the SynoCommunity images. This additionally gives me the flexibility of extending networking for dedicated IP addresses, so I don’t have to worry about exposing ports on the host, which is difficult enough with LetsEncrypt certificate renewals as it is.

Installing Docker is relatively straight forward — no doubt you’ve done this already. My main issue when creating my first Docker services was understanding which physical interface use as parent for my Docker_macvlan switch. So, let’s run through the basics first.

Host Networking

SSH to your Syno Nas and run the following command:

$ ip link show

You’ll be surprised to learn, this displays all the IP links on your NAS. If, like me, you’ve made changes and tweaks over the years and forgotten all about them, you’ll see interfaces and configurations that will spark memories of happier times. Here’s my current output below:

delicious console output
  1. (1) loopback
  2. (2) sit0 for ipv6 — ipv4 tunneling
  3. (3–6) my physical NICs
  4. (7–15) my Virtual switch LAN ports
  5. 35, 51, 85 docker, macvlan and a vpn connection

What’s important here, is that when you create a macvlan switch, you need to understand *which* physical adapter to connect it to. In my case, when I run

ip link add macvlan0 link eth0 type macvlan mode bridge

This fails. Why? Because I also have Synology Virtual Machine manager installed, and within *its* networking configuration, I have Virtual Network 0 attached to eth0:

delicious gui output

Follow-up question: do you have any networking bonding on your physical NICs? This will show up as bond-system, bond0, etc. and again, when you try to create a Docker macvlan, will fail unless you connect it to the right interface.

Armed with this, I can now run the following commands:

$ ip link add macvlan0 link ovs_eth0 type macvlan mode bridge
$ ip addr add 192.168.1.192/27 dev macvlan0 # 192.168.1.192 - 192.168.1.223 255.255.255.224

Which creates the interface successfully. Note, my network is 192.168.1.0/24. I have pushed my vlan up to this range, narrowed my main networks DHCP range, to avoid IP clashes, and gives me 35 or so docker IP addresses to run my services.

Finally, I can then run docker commands to create a test network on my new switch. Again, note that this is using my physical IP configuration on my primary network for gateway and subnet:

sudo docker network create --driver=macvlan --gateway=192.168.1.1 --subnet=192.168.1.0/24  —-ip-range=192.168.1.192/27 --opt parent=ovs_eth0 test-docker-net

and remove it again, as I’ll be creating my networks inside my docker-compose files:

sudo docker network rm test-docker-net

Summary

Check your networking! Understand your main internal network range, your main dhcp_scopes (to avoid clashes) and a quick ip link show can help you remember networking configurations you have long forgotten about, as well as avoiding frustration when copying/pasting docker code from github.

--

--

corcoran

Is this bio too short? Or is it just the right length?