diff options
author | Yoshihiro Kaneko <ykaneko0929@gmail.com> | 2013-08-23 19:24:14 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-08-23 20:20:08 +0900 |
commit | f8da5a9c791a27b6599a40aaaee463b78cbb8be9 (patch) | |
tree | ab0a9c5018e60c1b37dd945523b37f590c461b0a /doc/source | |
parent | 833328a54e45e84732ddbd253d2f7b3b7fba9e59 (diff) |
doc: fix overflow from the page in latex/pdf.
Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/tls.rst | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/doc/source/tls.rst b/doc/source/tls.rst index 9388378c..1dc8152a 100644 --- a/doc/source/tls.rst +++ b/doc/source/tls.rst @@ -48,7 +48,9 @@ Testing TLS Connection Configuring ovs-vswitchd to use CA files using the ovs-vsctl "set-ssl" command, e.g.:: - % 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 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 @@ -72,9 +74,13 @@ You can see something like:: CONSUMES EventOFPErrorMsg CONSUMES EventOFPHello CONSUMES EventOFPEchoRequest - connected socket:<SSLSocket fileno=4 sock=127.0.0.1:6633 peer=127.0.0.1:61302> address:('127.0.0.1', 61302) + connected socket:<SSLSocket fileno=4 sock=127.0.0.1:6633 peer=127.0.0.1:61302> a + ddress:('127.0.0.1', 61302) hello ev <ryu.controller.ofp_event.EventOFPHello object at 0x1047806d0> move onto config mode - switch features ev version: 0x1 msg_type 0x6 xid 0xb0bb34e5 port OFPPhyPort(port_no=65534, hw_addr='\x16\xdc\xa2\xe2}K', name='br0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', config=0, state=0, curr=0, advertised=0, supported=0, peer=0) + switch features ev version: 0x1 msg_type 0x6 xid 0xb0bb34e5 port OFPPhyPort(port + _no=65534, hw_addr='\x16\xdc\xa2\xe2}K', name='br0\x00\x00\x00\x00\x00\x00\x00\x + 00\x00\x00\x00\x00\x00', config=0, state=0, curr=0, advertised=0, supported=0, p + eer=0) move onto main mode |