8000 networking: change the default-restricted subnet by squeed · Pull Request #3607 · rkt/rkt · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Feb 24, 2020. It is now read-only.

networking: change the default-restricted subnet #3607

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stage1/net/rootfs/etc/rkt/net.d/99-default-restricted.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"ipMasq": false,
"ipam": {
"type": "host-local",
"subnet": "172.17.0.0/16"
"subnet": "172.31.0.0/16"
}
}
2 changes: 1 addition & 1 deletion tests/rkt_net_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,7 @@ func NewNetDefaultIPArgTest() testutils.Test {
}
return testutils.TestFunc(func(t *testing.T) {
doTest("default:IP=172.16.28.123", "172.16.28.123", t)
doTest("default-restricted:IP=172.17.42.42", "172.17.42.42", t)
doTest("default-restricted:IP=172.31.42.42", "172.31.42.42", t)
})
}

Expand Down
0