Changes between Version 14 and Version 15 of GpoLab/MyplcReferenceImplementation


Ignore:
Timestamp:
04/25/11 12:21:28 (13 years ago)
Author:
chaos@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GpoLab/MyplcReferenceImplementation

    v14 v15  
    384384
    385385== Trust a Remote Slice Authority ==
     386
    386387=== Variables ===
     388
    387389|| '''Variable''' || '''GPO Values''' || '''Description''' || '''Important Notes''' ||
    388 || <cert_base> || pgeni.gpolab.bbn.com || Filename for the certificate (without file extension) || ||
    389 || <cert_url> || http://www.pgeni.gpolab.bbn.com/ca-cert || Base URL for certificate || ||
    390 
    391 Get a copy of the certificate:
    392 {{{
    393 wget <cert_url>/<cert>.pem
    394 }}}
    395 
    396 Copy that certificate into a `.crt` file under `/etc/sfa/trusted_roots`:
    397 {{{
    398 sudo cp <cert>.pem /etc/sfa/trusted_roots/<cert>.crt
     390|| <cert_fqdn> || pgeni.gpolab.bbn.com || FQDN of the site whose certificate you are adding || ||
     391|| <cert_url> || http://www.pgeni.gpolab.bbn.com/ca-cert/pgeni.gpolab.bbn.com.pem || Source URL to download the certificate || ||
     392
     393Get a copy of the certificate, and store it as a `.crt` file:
     394{{{
     395wget -O <cert_fqdn>.crt <cert_url>
     396}}}
     397
     398Copy that `.crt` file into `/etc/sfa/trusted_roots`:
     399{{{
     400sudo cp <cert_fqdn>.crt /etc/sfa/trusted_roots/
    399401}}}
    400402