summaryrefslogtreecommitdiff
path: root/tutorial/ovn/env1
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/ovn/env1')
-rwxr-xr-xtutorial/ovn/env1/add-security-ip-ports.sh25
-rwxr-xr-xtutorial/ovn/env1/add-third-port.sh21
-rwxr-xr-xtutorial/ovn/env1/add-unknown-ports.sh25
-rwxr-xr-xtutorial/ovn/env1/packet1.sh19
-rwxr-xr-xtutorial/ovn/env1/packet2.sh19
-rwxr-xr-xtutorial/ovn/env1/packet3.sh19
-rwxr-xr-xtutorial/ovn/env1/packet4.sh19
-rwxr-xr-xtutorial/ovn/env1/setup.sh46
8 files changed, 0 insertions, 193 deletions
diff --git a/tutorial/ovn/env1/add-security-ip-ports.sh b/tutorial/ovn/env1/add-security-ip-ports.sh
deleted file mode 100755
index 5be152849..000000000
--- a/tutorial/ovn/env1/add-security-ip-ports.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at:
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-set -o xtrace
-
-ovn-nbctl lsp-add sw0 sw0-port6
-ovn-nbctl lsp-add sw0 sw0-port7
-ovn-nbctl lsp-set-addresses sw0-port6 "00:00:00:00:00:06"
-ovn-nbctl lsp-set-addresses sw0-port7 "00:00:00:00:00:07"
-ovn-nbctl lsp-set-port-security sw0-port6 00:00:00:00:00:06 192.168.1.10/24
-ovn-nbctl lsp-set-port-security sw0-port7 00:00:00:00:00:07 192.168.1.20/24
-ovs-vsctl add-port br-int lport6 -- set Interface lport6 external_ids:iface-id=sw0-port6
-ovs-vsctl add-port br-int lport7 -- set Interface lport7 external_ids:iface-id=sw0-port7
diff --git a/tutorial/ovn/env1/add-third-port.sh b/tutorial/ovn/env1/add-third-port.sh
deleted file mode 100755
index 06c496923..000000000
--- a/tutorial/ovn/env1/add-third-port.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at:
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-set -o xtrace
-
-ovn-nbctl lsp-add sw0 sw0-port3
-ovn-nbctl lsp-set-addresses sw0-port3 00:00:00:00:00:03
-ovn-nbctl lsp-set-port-security sw0-port3 00:00:00:00:00:03
-ovs-vsctl add-port br-int lport3 -- set Interface lport3 external_ids:iface-id=sw0-port3
diff --git a/tutorial/ovn/env1/add-unknown-ports.sh b/tutorial/ovn/env1/add-unknown-ports.sh
deleted file mode 100755
index be161d25d..000000000
--- a/tutorial/ovn/env1/add-unknown-ports.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at:
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-set -o xtrace
-
-ovn-nbctl lsp-add sw0 sw0-port4
-ovn-nbctl lsp-add sw0 sw0-port5
-ovn-nbctl lsp-set-addresses sw0-port4 unknown
-ovn-nbctl lsp-set-addresses sw0-port5 unknown
-ovn-nbctl lsp-set-port-security sw0-port4 00:00:00:00:00:04 00:00:00:00:00:05
-ovn-nbctl lsp-set-port-security sw0-port5 00:00:00:00:00:04 00:00:00:00:00:05
-ovs-vsctl add-port br-int lport4 -- set Interface lport4 external_ids:iface-id=sw0-port4
-ovs-vsctl add-port br-int lport5 -- set Interface lport5 external_ids:iface-id=sw0-port5
diff --git a/tutorial/ovn/env1/packet1.sh b/tutorial/ovn/env1/packet1.sh
deleted file mode 100755
index 35ab04b75..000000000
--- a/tutorial/ovn/env1/packet1.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at:
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-set -o xtrace
-
-# Trace a packet from sw0-port1 to sw0-port2.
-ovs-appctl ofproto/trace br-int in_port=1,dl_src=00:00:00:00:00:01,dl_dst=00:00:00:00:00:02 -generate
diff --git a/tutorial/ovn/env1/packet2.sh b/tutorial/ovn/env1/packet2.sh
deleted file mode 100755
index bb5c5dce8..000000000
--- a/tutorial/ovn/env1/packet2.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at:
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-set -o xtrace
-
-# Trace a broadcast packet from sw0-port1
-ovs-appctl ofproto/trace br-int in_port=1,dl_src=00:00:00:00:00:01,dl_dst=ff:ff:ff:ff:ff:ff -generate
diff --git a/tutorial/ovn/env1/packet3.sh b/tutorial/ovn/env1/packet3.sh
deleted file mode 100755
index b26680157..000000000
--- a/tutorial/ovn/env1/packet3.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at:
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-set -o xtrace
-
-# Trace a packet from sw0-port1 to sw0-port4, sw0-port5 which address is set as unknown.
-ovs-appctl ofproto/trace br-int in_port=1,dl_src=00:00:00:00:00:01,dl_dst=00:00:00:00:00:04 -generate
diff --git a/tutorial/ovn/env1/packet4.sh b/tutorial/ovn/env1/packet4.sh
deleted file mode 100755
index 2fa45305e..000000000
--- a/tutorial/ovn/env1/packet4.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at:
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-set -o xtrace
-
-# Trace a packet from sw0-port6 to sw0-port7.
-ovs-appctl ofproto/trace br-int in_port=6,dl_type=0x0800,dl_src=00:00:00:00:00:06,dl_dst=00:00:00:00:00:07,nw_src=192.168.1.10,nw_dst=192.168.1.20 -generate
diff --git a/tutorial/ovn/env1/setup.sh b/tutorial/ovn/env1/setup.sh
deleted file mode 100755
index a9c6f39a7..000000000
--- a/tutorial/ovn/env1/setup.sh
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/bash
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at:
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-#
-# See "Simple two-port setup" in Documentation/tutorial/ovn-basics.rst.
-#
-
-set -o xtrace
-
-# Create a logical switch named "sw0"
-ovn-nbctl ls-add sw0
-
-# Create two logical ports on "sw0".
-ovn-nbctl lsp-add sw0 sw0-port1
-ovn-nbctl lsp-add sw0 sw0-port2
-
-# Set a MAC address for each of the two logical ports.
-ovn-nbctl lsp-set-addresses sw0-port1 00:00:00:00:00:01
-ovn-nbctl lsp-set-addresses sw0-port2 00:00:00:00:00:02
-
-# Set up port security for the two logical ports. This ensures that
-# the logical port mac address we have configured is the only allowed
-# source and destination mac address for these ports.
-ovn-nbctl lsp-set-port-security sw0-port1 00:00:00:00:00:01
-ovn-nbctl lsp-set-port-security sw0-port2 00:00:00:00:00:02
-
-# Create ports on the local OVS bridge, br-int. When ovn-controller
-# sees these ports show up with an "iface-id" that matches the OVN
-# logical port names, it associates these local ports with the OVN
-# logical ports. ovn-controller will then set up the flows necessary
-# for these ports to be able to communicate each other as defined by
-# the OVN logical topology.
-ovs-vsctl add-port br-int lport1 -- set Interface lport1 external_ids:iface-id=sw0-port1
-ovs-vsctl add-port br-int lport2 -- set Interface lport2 external_ids:iface-id=sw0-port2