mirror of https://github.com/docker/docs.git
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:
parent
da39c9fbbe
commit
10b2b9f3be
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue