Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In this example, we will run it on a Cloud Hosted Router (, CHR) device. To help you set it up in a Virtual Box, please check our youtube tutorial.

...

Code Block
languageros
/interface/veth/add name=veth1 address=172.18.0.2/24 gateway=172.18.0.1

Create a bridge for containers the container, assign an IP network to it, and add veth to itthe bridge:

Code Block
languageros
/interface/bridge/add name=dockertb
/ip/address/add address=172.18.0.1/24 interface=dockertb
/interface/bridge/port add bridge=dockertb interface=veth1

...