For SNAT, don't store the pre-fragment L2 header before actions are applied.
[sliver-openvswitch.git] / debian / openflow-controller.default
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
8 #   (default: 6633).  The private key, certificate, and CA certificate
9 #   must be specified below.
10 #
11 # * "pctp:[PORT]": Listen for TCP connections on the specified PORT
12 #   (default: 6633).  Not recommended for security reasons.
13 #
14 # * "nl:DP_IDX": Listen on local datapath DP_IDX.  Used only if this
15 #   machine is also an OpenFlow switch and not running the secure
16 #   channel, and only if you know what you're doing.
17 #
18 LISTEN="pssl:"
19
20 # PRIVKEY: Name of file containing controller's private key.
21 # Required if SSL enabled.
22 PRIVKEY=/etc/openflow-controller/privkey.pem
23
24 # CERT: Name of file containing certificate for private key.
25 # Required if SSL enabled.
26 CERT=/etc/openflow-controller/cert.pem
27
28 # CACERT: Name of file containing switch CA certificate.
29 # Required if SSL enabled.
30 CACERT=/etc/openflow-controller/cacert.pem
31
32 # Additional options to pass to controller, e.g. "--hub"
33 DAEMON_OPTS=""