mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b7d0fefabc
Add support for overlay networking in older kernels. Following were done to achieve this: + Create the vxlan network in host namespace. + This may create conflicts with other private networks so check for conflicts and fail a join if there is any conflict. + Add iptable based filtering to only allow subnet bridges in the same network to forward traffic while different network bridges will not be able to forward b/w each other. Also block traffic to overlay network originating from the host itself. Signed-off-by: Jana Radhakrishnan <mrjana@docker.com>
9 lines
163 B
Bash
9 lines
163 B
Bash
# -*- mode: sh -*-
|
|
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
@test "Test overlay network hostmode with consul" {
|
|
skip_for_circleci
|
|
test_overlay_hostmode consul
|
|
}
|