]> git.proxmox.com Git - mirror_ovs.git/blame - debian/openvswitch-testcontroller.default
Set release date for 2.7.0.
[mirror_ovs.git] / debian / openvswitch-testcontroller.default
CommitLineData
0bc1b46a
BP
1# This is a POSIX shell fragment -*- sh -*-
2
3# LISTEN: What OpenFlow connection methods should the controller listen on?
4#
5# This is a space-delimited list of connection methods:
6#
7# * "pssl:[PORT]": Listen for SSL connections on the specified PORT
d4763d1d 8# (default: 6653). The private key, certificate, and CA certificate
0bc1b46a
BP
9# must be specified below.
10#
11# * "ptcp:[PORT]": Listen for TCP connections on the specified PORT
d4763d1d 12# (default: 6653). Not recommended for security reasons.
0bc1b46a
BP
13#
14LISTEN="pssl:"
15
16# PRIVKEY: Name of file containing controller's private key.
17# Required if SSL enabled.
18PRIVKEY=/etc/openvswitch-testcontroller/privkey.pem
19
20# CERT: Name of file containing certificate for private key.
21# Required if SSL enabled.
22CERT=/etc/openvswitch-testcontroller/cert.pem
23
24# CACERT: Name of file containing switch CA certificate.
25# Required if SSL enabled.
26CACERT=/etc/openvswitch-testcontroller/cacert.pem
27
28# Additional options to pass to ovs-testcontroller, e.g. "--hub"
29DAEMON_OPTS=""