1 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
2 .. SPDX-License-Identifier: CC-BY-4.0
3 .. Copyright (C) 2020 highstreet technologies and others
8 The O-RAN Alliance specifications target the support of IPv6.
9 To support IPv6 by docker the docker configuration must be modified.
12 https://docs.docker.com/config/daemon/ipv6/
14 1. Edit /etc/docker/daemon.json, set the ipv6 key to true and the fixed-cidr-v6 key to your IPv6 subnet. In this example we are setting it to 2001:db8:1::/64.
18 :emphasize-lines: 12,13
23 "https://nexus3.o-ran-sc.org:10002",
24 "https://nexus3.onap.org:10001"
26 "log-driver": "json-file",
32 "fixed-cidr-v6": "2001:db8:1::/64"
35 2. Reload the Docker configuration file.
40 $ systemctl reload docker