diff options
| author | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-01-18 23:14:03 +0000 |
|---|---|---|
| committer | Tarmac <> | 2011-01-18 23:14:03 +0000 |
| commit | b9c96efe7eb7eee62fbc0f2e1568679506468ca9 (patch) | |
| tree | b9d2006dfe0c1f3ec9e9f386f0f9fd7d461165c2 /nova | |
| parent | 943af386a9f7d963c78ea1a3b5698d377a1b8185 (diff) | |
| parent | 7e6e3c3895d050dad81c4789bd296d2b910c7c6c (diff) | |
| download | nova-b9c96efe7eb7eee62fbc0f2e1568679506468ca9.tar.gz nova-b9c96efe7eb7eee62fbc0f2e1568679506468ca9.tar.xz nova-b9c96efe7eb7eee62fbc0f2e1568679506468ca9.zip | |
This disables ipv6 by default. Most use cases will not need it on and it makes dependencies more complex.
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/network/manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/network/manager.py b/nova/network/manager.py index 2a043cc6b..61de8055a 100644 --- a/nova/network/manager.py +++ b/nova/network/manager.py @@ -92,7 +92,7 @@ flags.DEFINE_bool('update_dhcp_on_disassociate', False, flags.DEFINE_integer('fixed_ip_disassociate_timeout', 600, 'Seconds after which a deallocated ip is disassociated') -flags.DEFINE_bool('use_ipv6', True, +flags.DEFINE_bool('use_ipv6', False, 'use the ipv6') flags.DEFINE_string('network_host', socket.gethostname(), 'Network host to use for ip allocation in flat modes') |
