Page History

Turn Off History

We added preliminary IPv6 support to Condor 7.7.5. As of 7.7.5, this functionality is experimental and is disabled by default. You can enable the support if you would like to try it out.

IPv6 support is available in 7.7.4, but has a severe bug where the condor_starter will likely crash when attempting to connect to another computer over IPv6.

Limitations

Later versions of Condor should remove all of these limitations.

Possibly limitations:

Enabling IPv6

  1. Set ENABLE_IPV6 = TRUE
    ENABLE_IPV6 = TRUE
    

  2. Specify the IPv6 interface to use. Note, do not put [square brackets] around this address.
    NETWORK_INTERFACE = 2607:f388:1086:0:21b:24ff:fedf:b520
    

  3. Do a condor_restart.

Additional Notes

If you specify CONDOR_HOST or COLLECTOR_HOST as an IP address, you must put the address, but not the port, in square brackets. You can continue to specify hostnames. For example:

CONDOR_HOST =[2607:f388:1086:0:21e:68ff:fe0f:6462]
# This configures the collector to listen on the non-standard port 5332.
COLLECTOR_HOST =[2607:f388:1086:0:21e:68ff:fe0f:6462]:5332
Because IPv6 addresses are not supported in the security settings, you will be unable to use $(CONDOR_HOST) or $(COLLECTOR_HOST) in your security configuration if you specify an IP address.

When using NO_DNS, IPv6 addresses are turned into hostnames by taking the IPv6 address, changing colons to dashes, and appending DEFAULT_DOMAIN_NAME. So 2607:f388:1086:0:21b:24ff:fedf:b520 becomes 2607-f388-1086-0-21b-24ff-fedf-b520.example.com (assuming DEFAULT_DOMAIN_NAME=example.com)