From 229f5fcf188cf710f4a8fb269d92f1a1d04a99da Mon Sep 17 00:00:00 2001 From: Filip Tehlar Date: Tue, 9 Aug 2022 14:44:47 +0000 Subject: misc: add test framework for host stack Type: feature Signed-off-by: Filip Tehlar Change-Id: I5a64a2c095cae3a4d5f8fdc73e624b010339ec8e --- extras/hs-test/topo/2peerVeth.yaml | 23 +++++++++++++++++++++++ extras/hs-test/topo/ns.yaml | 21 +++++++++++++++++++++ extras/hs-test/topo/tap.yaml | 5 +++++ 3 files changed, 49 insertions(+) create mode 100755 extras/hs-test/topo/2peerVeth.yaml create mode 100755 extras/hs-test/topo/ns.yaml create mode 100755 extras/hs-test/topo/tap.yaml (limited to 'extras/hs-test/topo') diff --git a/extras/hs-test/topo/2peerVeth.yaml b/extras/hs-test/topo/2peerVeth.yaml new file mode 100755 index 00000000000..d40f3803879 --- /dev/null +++ b/extras/hs-test/topo/2peerVeth.yaml @@ -0,0 +1,23 @@ +--- +devices: + - name: "hsns" + type: "netns" + + - name: "vppsrv" + type: "veth" + peer: + name: "vppsrv_veth" + netns: "hsns" + + - name: "vppcln" + type: "veth" + peer: + name: "vppcln_veth" + netns: "hsns" + + - name: "br" + type: "bridge" + netns: "hsns" + interfaces: + - vppsrv_veth + - vppcln_veth diff --git a/extras/hs-test/topo/ns.yaml b/extras/hs-test/topo/ns.yaml new file mode 100755 index 00000000000..c1c8c540b2b --- /dev/null +++ b/extras/hs-test/topo/ns.yaml @@ -0,0 +1,21 @@ +--- +devices: + - name: "client" + type: "netns" + + - name: "server" + type: "netns" + + - name: "vpp0" + type: "veth" + peer: + name: "client" + netns: "client" + ip4: "10.0.0.1/24" + + - name: "vpp1" + type: "veth" + peer: + name: "server" + netns: "server" + ip4: "10.0.1.1/24" \ No newline at end of file diff --git a/extras/hs-test/topo/tap.yaml b/extras/hs-test/topo/tap.yaml new file mode 100755 index 00000000000..4cd95d6e48a --- /dev/null +++ b/extras/hs-test/topo/tap.yaml @@ -0,0 +1,5 @@ +--- +devices: + - name: "tap0" + type: "tap" + ip4: "10.10.10.1/24" -- cgit 1.2.3-korg