Changes between Version 3 and Version 4 of Internal/OpenFlow/Notes


Ignore:
Timestamp:
Jul 13, 2009, 9:46:07 PM (15 years ago)
Author:
akoshibe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/OpenFlow/Notes

    v3 v4  
    3838
    3939 * can a virtual switch be loaded with a default flow table that would allow it to function, at least until its table times out?
     40
     41=== SSL setup (7/13) ===
     42using this site as reference: http://www.debian-administration.org/article/Creating_and_Using_a_self_signed__SSL_Certificates_in_debian
     43
     44except renaming the switch key and cert to what it would understand:
     45 *ca_cert.pem
     46 *sw_cert.pem
     47 *sw_key.pem
     48
     49because in the example on the site ca_cert.pem is named cacert.pem, I had to change "cacert" to "ca_cert" in openssl.cnf for the very last part (signing the certificate):
     50{{{
     51[ CA_default ]
     52serial = $dir/serial
     53database = $dir/index.txt
     54new_certs_dir = $dir/newcerts
     55certificate = $dir/cacert.pem
     56private_key = $dir/private/cakey.pem
     57default_days = 365
     58default_md = md5
     59preserve = no
     60email_in_dn = no
     61nameopt = default_ca
     62certopt = default_ca
     63policy = policy_match
     64}}}
     65I am not sure if changing the name of the key from ofpswitch.key.pem to sw_key.pem after making/signing the certification will affect anything. will find out.
    4066