Fix Default Address Space for Azure VNets

RFC 1918 specifies 10.0.0.0/8, not 10.0.0.0/6, as part of the private
network address space. This fixes what appears to be a typo.

Signed-off-by: Xavier Ziemba <xy.ziemba@gmail.com>
This commit is contained in:
Xavier Ziemba 2016-04-20 16:08:10 -07:00 committed by Xy Ziemba
parent da39c9fbbe
commit 10b2b9f3be
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ var (
// Private IPv4 address space per RFC 1918.
defaultVnetAddressPrefixes = []string{
"192.168.0.0/16",
"10.0.0.0/6",
"10.0.0.0/8",
"172.16.0.0/12"}
// Polling interval for VM power state check.