-
-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IPv6 #53
Comments
Docker doesn't support dual stack network (At least the last time I looked into this issue) so you must either disable IPv6 DNS lookup or manually set up an IPv6 DNS server with the proper domains forwarded. In lieu of IPv6 support I agree there should be a note to disable IPv6 DNS lookup on the clients, even if it's implicitly made obvious by |
One way to achieve dual-stack IPv4/IPv6 support when using Docker is to use the As an example in version: '2.3'
services:
# this service is simply here as an anchor for the networks
hodor:
image: tianon/true
restart: no
networks:
vlan8:
networks:
vlan8:
name: vlan8
driver: macvlan
driver_opts:
# the dotted suffix here is a VLAN identifier
# you can also specify the exact name of a host interface
parent: enp1s0.8
enable_ipv6: true
ipam:
config:
- subnet: 10.255.255.0/24
# the gateway address must be a router on this subnet
gateway: 10.255.255.1
# this will result in 10.255.255.64 - 10.255.255.127 being available in the IP pool for containers
ip_range: 10.255.255.64/26
- subnet: '2001:db8:6c61:6e::/64'
gateway: '2001:db8:6c61:6e::1'
# this will result in 2001:0db8:6c61:6e:1:: - 2001:0db8:6c61:6e:1:ffff:ffff:ffff being in the pool
ip_range: '2001:db8:6c61:6e:1::/80' I'd generally advise manually creating the network using |
How is IPv6 support looking now? I now have an IPv6 native ISP connection so I can't disable IPv6 on the Monolithic docker container server. What is the recommended workaround, or when will IPv6 be properly supported? |
Haven't tried it yet because my ISP chances the ipv6 prefix every so often. |
We're had problems setting this hole thing up, till we disabled the ipv6 in the windows clients for dns.
We suggest an FAQ or a hint on the install instructions that people should disable their ipv6 on clients?!
Thanks for lancache!
The text was updated successfully, but these errors were encountered: