Force IPv4 addresses from address pools in Openstack. Fixes #1258

Rackspace defaults to a public IPv4 and IPv6 address. These are returned in
random order, with the sprintf further on generating an incorrect connection
string if on IPv6. Force IPv4 until support for correct connection strings and
a configuration flag for logging in over IPv6 is added.
This commit is contained in:
Ian Delahorne 2014-06-15 02:12:52 -05:00
parent be56b5a6b8
commit 8bf935beb8
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ func SSHAddress(csp gophercloud.CloudServersProvider, port int) func(multistep.S
for pool, addresses := range ip_pools {
if pool != "" {
for _, address := range addresses {
if address.Addr != "" {
if address.Addr != "" && address.Version == 4 {
return fmt.Sprintf("%s:%d", address.Addr, port), nil
}
}