Mirage ゲートウェイ サーバに証明書を生成するには、構成ファイルを使用します。

前提条件

  • http://www.openssl.org/related/binaries.html から適切な OpenSSL インストーラをダウンロードします。ダウンロードした OpenSSL インストーラを使用して、OpenSSL を Windows にインストールします。

手順

  1. C:\certsserver.conf という名前で構成ファイルを作成します。
  2. 必要な情報を構成ファイルに追加します。
    イタリック体になっている情報をお使いの環境に合わせて変更してください。
    [ ca ]
    default_ca = myca
    
    [ crl_ext ]
    authorityKeyIdentifier=keyid:always
    
    [ myca ]
    dir = ./
    new_certs_dir = $dir
    unique_subject = no
    certificate = $dir/root.cer
    database = $dir/certindex
    private_key = $dir/privkey.pem
    serial = $dir/certserial
    default_days = #ofdays
    default_md = sha512
    policy = myca_policy
    x509_extensions = myca_extensions
    crlnumber = $dir/crlnumber
    default_crl_days = #ofcrldays
    
    [ myca_policy ]
    commonName = supplied
    stateOrProvinceName = optional
    localityName = optional
    countryName = optional
    emailAddress = optional
    organizationName = optional
    organizationalUnitName = optional
    
    [ myca_extensions ]
    basicConstraints = CA:false
    subjectKeyIdentifier = hash
    authorityKeyIdentifier = keyid:always
    keyUsage = digitalSignature,keyEncipherment,dataEncipherment
    extendedKeyUsage = serverAuth
    # Alternative Subject Name defined in alt_names
    # subjectAltName  = @alt_names
    
    [alt_names]
    # if it contains dns type name, then it MUST be used and CN of subject MUST be ignored. Please refer to rfc2818 for details.
    # following items as example:
    #dns.1=*.miragedomain.com
    #dns.2=*.example.com
    #ofdays は、証明書の有効日数です。 #ofcrldays は、次の CRL が発行されるまでの日数です。

結果

Mirage ゲートウェイ サーバの OpenSSL 構成ファイルが作成されます。

次のタスク

証明書リクエストを作成します。