Marcus Rueckert
38d1b0332c
- Add additional install requirements for python-openvswitch-test package. - Add support for building both 2.4.0 and 2.5.0 from the same spec file. Needed to fix SLE11 builds as OVS-2.5.0 no longer supports python < 2.7. SLE11 SP3 and SP4 use python 2.6. - Added: openvswitch-2.4.0.tar.gz - New upstream version 2.5.0 (LTS) - Dropped support for Python older than version 2.7. As a consequence, using Open vSwitch 2.5 or later on XenServer 6.5 or earlier (which have Python 2.4) requires first installing Python 2.7. - OpenFlow: * Group chaining (where one OpenFlow group triggers another) is now supported. * OpenFlow 1.4+ "importance" is now considered for flow eviction. * OpenFlow 1.4+ OFPTC_EVICTION is now implemented. * OpenFlow 1.4+ OFPTC_VACANCY_EVENTS is now implemented. * OpenFlow 1.4+ OFPMP_TABLE_DESC is now implemented. * Allow modifying the ICMPv4/ICMPv6 type and code fields. * OpenFlow 1.4+ OFPT_SET_ASYNC_CONFIG and OFPT_GET_ASYNC_CONFIG are now implemented. - ovs-ofctl: * New "out_group" keyword for OpenFlow 1.1+ matching on output group. - Tunnels: * Geneve tunnels can now match and set options and the OAM bit. * The nonstandard GRE64 tunnel extension has been dropped. - Support Multicast Listener Discovery (MLDv1 and MLDv2). - Add 'symmetric_l3l4' and 'symmetric_l3l4+udp' hash functions. - sFlow agent now reports tunnel and MPLS structures. OBS-URL: https://build.opensuse.org/request/show/368475 OBS-URL: https://build.opensuse.org/package/show/network/openvswitch?expand=0&rev=79
31 lines
1.1 KiB
Desktop File
31 lines
1.1 KiB
Desktop File
#
|
|
# You may override the following variables to customize ovn-controller-vtep
|
|
# behavior:
|
|
#
|
|
# OVN_DB - Set this variable to the location of the ovsdb server that is
|
|
# serving the OVN_Southbound database. See the manpage for
|
|
# ovn-controller-vtep for more details on the format for the db
|
|
# location.
|
|
#
|
|
# VTEP_DB - Set this variable to the location of the ovsdb server that is
|
|
# serving the hardware_vtep database. See the manpage for
|
|
# ovn-controller-vtep for more details on the format for the db
|
|
# location.
|
|
#
|
|
|
|
[Unit]
|
|
Description=OVN VTEP gateway controller daemon
|
|
After=syslog.target
|
|
Requires=openvswitch.service
|
|
After=openvswitch.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
Environment=OVS_RUNDIR=%t/openvswitch
|
|
Environment=OVN_DB=unix:%t/openvswitch/db.sock
|
|
Environment=VTEP_DB=unix:%t/openvswitch/db.sock
|
|
ExecStart=/usr/bin/ovn-controller-vtep -vconsole:emer -vsyslog:err -vfile:info \
|
|
--log-file=/var/log/openvswitch/ovn-controller-vtep.log \
|
|
--no-chdir --pidfile=${OVS_RUNDIR}/ovn-controller-vtep.pid \
|
|
--ovnsb-db=${OVN_DB} --vtep-db=${VTEP_DB}
|