Changeset 144


Ignore:
Timestamp:
05/15/12 23:14:53 (12 years ago)
Author:
atzm
Message:
  • add document for ssl/tls
Location:
etherws/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • etherws/trunk/README.rst

    r141 r144  
    4646  # ifconfig br0 up 
    4747 
     48Also etherws supports SSL/TLS connection (but authentication is not 
     49supported yet), so if you want to encrypt this tunnel, then you can 
     50use following options:: 
     51 
     52on Hypervisor1 (options *keyfile* and *certfile* were specified):: 
     53 
     54  # etherws server --keyfile ssl.key --certfile ssl.crt 
     55 
     56on Hypervisor2 (option *uri*'s scheme was changed to *wss*):: 
     57 
     58  # etherws client --uri wss://<Hypervisor1's IP address>/ 
     59 
    4860History 
    4961======= 
    50 0.1 (2012-05-15) 
     620.2 (2012-05-16 JST) 
     63  - SSL/TLS connection support 
     64 
     650.1 (2012-05-15 JST) 
    5166  - First release 
  • etherws/trunk/setup.py

    r141 r144  
    3737setup( 
    3838    name='etherws', 
    39     version='0.1', 
     39    version='0.2', 
    4040    description='Ethernet over WebSocket tunneling server/client', 
    4141    long_description=longdesc, 
Note: See TracChangeset for help on using the changeset viewer.