Skip to content
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

Error when using IPv6: System.Net.Sockets.SocketException (113): No route to host #125

Open
m00nwtchr opened this issue Aug 6, 2022 · 2 comments

Comments

@m00nwtchr
Copy link

m00nwtchr commented Aug 6, 2022

I recently turned on IPv6 support in my docker setup, including the default network for my compose project (IPv4 addresses are still available), this resulted in the plugin being unable to connect to the openldap server with that error, both using the docker service name and directly specified IPv6 IP. I was able to get it to temporarily work by setting LdapServer to the IPv4 ip for the openldap container, but it isn't ideal.

@ilarrain
Copy link

ilarrain commented Nov 1, 2022

I'm having the same issue. I can't use ip resolution by container name ('openldap'). Had to resort to asigning a fixed ip to he openldap container in the compose file:

services:
  openldap:
    container_name: openldap
    networks:
      default:
        ipv4_address: 172.30.40.60
        ipv6_address: fd43:4343:4343::60
  
networks:
  default:
    enable_ipv6: true
    driver: bridge
    ipam:
      config:
      - subnet: 172.30.40.0/24
        ip_range: 172.30.40.0/26
        gateway: 172.30.40.1
      - subnet: fd43:4343:4343::/64
        gateway: fd43:4343:4343::1

Anyway, as you said, less than ideal.

@crobibero
Copy link
Member

This doesn't sound like an issue with the plugin, or Jellyfin- but with Docker itself.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants