Skip to content

Commit

Permalink
Merge pull request moby#1434 from jpetazzo/fix-ec2-dns-conflict
Browse files Browse the repository at this point in the history
change network range to avoid conflict with EC2 DNS
  • Loading branch information
Victor Vieux committed Aug 7, 2013
2 parents 2e37be9 + 9f1c968 commit 2409df9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions network.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ func CreateBridgeIface(ifaceName string) error {
// In theory this shouldn't matter - in practice there's bound to be a few scripts relying
// on the internal addressing or other stupid things like that.
// The shouldn't, but hey, let's not break them unless we really have to.
"172.16.42.1/16",
"10.0.42.1/16", // Don't even try using the entire /8, that's too intrusive
"172.17.42.1/16", // Don't use 172.16.0.0/16, it conflicts with EC2 DNS 172.16.0.23
"10.0.42.1/16", // Don't even try using the entire /8, that's too intrusive
"10.1.42.1/16",
"10.42.42.1/16",
"172.16.42.1/24",
Expand Down

0 comments on commit 2409df9

Please sign in to comment.