2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-22 01:51:26 +00:00
ovs/utilities/docker/start-ovs
Ilya Maximets 19b8941620 tunnels: Remove support for deprecated STT and LISP.
STT and LISP tunnel types were deprecated and marked for removal in
the following commits in the OVS 3.5 release:

  3b37a6154a59 ("netdev-vport: Deprecate STT tunnel port type.")
  8d7ac031c03d ("netdev-vport: Deprecate LISP tunnel port type.")

Main reasons were that STT was rejected in upstream kernel and the
LISP was never upstreamed as well and doesn't really have a supported
implementation.  Both protocols also appear to have lost their former
relevance.

Removing both now.  While at it, also fixing some small documentation
issues and comments.

Acked-by: Eelco Chaudron <echaudro@redhat.com>
Acked-by: Alin Serdean <aserdean@ovn.org>
Acked-by: Kevin Traynor <ktraynor@redhat.com>
Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
2025-02-28 17:19:41 +01:00

48 lines
2.4 KiB
Bash
Executable File

#!/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.
case $1 in
"ovsdb-server") /usr/share/openvswitch/scripts/ovs-ctl start \
--system-id=random --no-ovs-vswitchd
/usr/share/openvswitch/scripts/ovs-ctl stop
ovsdb-server --pidfile /etc/openvswitch/conf.db \
-vconsole:emer -vsyslog:err -vfile:info \
--remote=punix:/var/run/openvswitch/db.sock \
--private-key=db:Open_vSwitch,SSL,private_key \
--certificate=db:Open_vSwitch,SSL,certificate \
--bootstrap-ca-cert=db:Open_vSwitch,SSL,ca_cert \
--log-file=/var/log/openvswitch/ovsdb-server.log \
--no-chdir
;;
"ovs-vswitchd") depmod -a
modprobe openvswitch
modprobe vport_geneve
/usr/share/openvswitch/scripts/ovs-ctl \
--no-ovsdb-server start
/usr/share/openvswitch/scripts/ovs-ctl \
--no-ovsdb-server force-reload-kmod
/usr/share/openvswitch/scripts/ovs-ctl stop
ovs-vswitchd --pidfile -vconsole:emer -vsyslog:err \
-vfile:info --mlockall --no-chdir \
--log-file=/var/log/openvswitch/ovs-vswitchd.log
;;
"ovs-vswitchd-host") /usr/share/openvswitch/scripts/ovs-ctl \
--no-ovsdb-server start
/usr/share/openvswitch/scripts/ovs-ctl stop
ovs-vswitchd --pidfile -vconsole:emer \
-vsyslog:err -vfile:info --mlockall --no-chdir \
--log-file=/var/log/openvswitch/ovs-vswitchd.log
;;
*) echo "$0 [ovsdb-server|ovs-vswitchd|ovs-vswitchd-host]"
esac