diff options
author | Soren Hansen <soren@linux2go.dk> | 2011-01-25 13:24:16 +0100 |
---|---|---|
committer | Soren Hansen <soren@linux2go.dk> | 2011-01-25 13:24:16 +0100 |
commit | 722d6076ea3d6bcfc521e3f30c4be39645bbd8ab (patch) | |
tree | 11daf85b1236edb654d2ba4f575b8d8f0c27afca | |
parent | 3b06788ba2e8184e17f875f41ced0bbc0254beac (diff) | |
download | nova-722d6076ea3d6bcfc521e3f30c4be39645bbd8ab.tar.gz nova-722d6076ea3d6bcfc521e3f30c4be39645bbd8ab.tar.xz nova-722d6076ea3d6bcfc521e3f30c4be39645bbd8ab.zip |
Set the default number of IP's to to reserver for VPN to 0.
-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 5d7589090..c8be670ab 100644 --- a/nova/network/manager.py +++ b/nova/network/manager.py @@ -83,7 +83,7 @@ flags.DEFINE_string('floating_range', '4.4.4.0/24', 'Floating IP address block') flags.DEFINE_string('fixed_range', '10.0.0.0/8', 'Fixed IP address block') flags.DEFINE_string('fixed_range_v6', 'fd00::/48', 'Fixed IPv6 address block') -flags.DEFINE_integer('cnt_vpn_clients', 5, +flags.DEFINE_integer('cnt_vpn_clients', 0, 'Number of addresses reserved for vpn clients') flags.DEFINE_string('network_driver', 'nova.network.linux_net', 'Driver to use for network creation') |