1 # This is a POSIX shell fragment -*- sh -*-
3 # LISTEN: What OpenFlow connection methods should the controller listen on?
5 # This is a space-delimited list of connection methods:
7 # * "pssl:[PORT]": Listen for SSL connections on the specified PORT
8 # (default: 6633). The private key, certificate, and CA certificate
9 # must be specified below.
11 # * "pctp:[PORT]": Listen for TCP connections on the specified PORT
12 # (default: 6633). Not recommended for security reasons.
16 # PRIVKEY: Name of file containing controller's private key.
17 # Required if SSL enabled.
18 PRIVKEY=/etc/openvswitch-controller/privkey.pem
20 # CERT: Name of file containing certificate for private key.
21 # Required if SSL enabled.
22 CERT=/etc/openvswitch-controller/cert.pem
24 # CACERT: Name of file containing switch CA certificate.
25 # Required if SSL enabled.
26 CACERT=/etc/openvswitch-controller/cacert.pem
28 # Additional options to pass to controller, e.g. "--hub"