1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

Feature #3202: bug adding netmask to an AR

This commit is contained in:
Javi Fontan 2014-10-10 14:52:57 +02:00
parent 800246ea60
commit 92273220a4

View File

@ -143,7 +143,7 @@ cmd=CommandParser::CmdParser.new(ARGV) do
ar << ", GLOBAL_PREFIX = " << options[:ip6_global] if options[:ip6_global]
ar << ", ULA_PREFIX = " << options[:ip6_ula] if options[:ip6_ula]
ar << ", GATEWAY = " << options[:gateway] if options[:gateway]
ar << ", NETMASK = " << options[:netmask] if options[:netmask]
ar << ", MASK = " << options[:netmask] if options[:netmask]
ar << ", VLAN = YES" if options[:vlan]
ar << ", VLAN_ID = " << options[:vlanid] if options[:vlanid]