diff options
author | OHMURA Kei <ohmura.kei@lab.ntt.co.jp> | 2013-03-06 06:55:05 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-03-06 07:18:11 +0900 |
commit | be014d73ea6763c46fed43438f239cf66b961742 (patch) | |
tree | d4173997ac65e75e7c72ab967cea2b61291be795 /doc | |
parent | 43daf0bad0230671d932a4b1b202a227a5776511 (diff) |
doc: fix bug in tls.rst
We need to use absolute file names when running set-ssl command.
Signed-off-by: OHMURA Kei <ohmura.kei@lab.ntt.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/tls.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/source/tls.rst b/doc/source/tls.rst index 5c7827aa..642e93ba 100644 --- a/doc/source/tls.rst +++ b/doc/source/tls.rst @@ -48,10 +48,13 @@ Testing TLS Connection Configuring ovs-vswitchd to use CA files using the ovs-vsctl "set-ssl" command, e.g.:: - % ovs-vsctl set-ssl sc-privkey.pem sc-cert.pem /usr/local/var/lib/openvswitch/pki/controllerca/cacert.pem + % ovs-vsctl set-ssl /etc/openvswitch/sc-privkey.pem /etc/openvswitch/sc-cert.pem /usr/local/var/lib/openvswitch/pki/controllerca/cacert.pem % ovs-vsctl add-br br0 % ovs-vsctl set-controller br0 ssl:127.0.0.1:6633 +Substitute the correct file names, if they differ from the ones used +above. You should use absolute file names. + Run Ryu with CA files:: |