Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

General process

OpenVPN is disabled by default.

...

  1. check and accept preconditions

  2. request activation of OpenVPN

  3. install and configure OpenVPN system

1. Preconditions

  • no IP subnet collision between infrastructure managed by root360 and infrastructure that is connected

2. Request activation of OpenVPN

Request activation of OpenVPN for a dedicated environment via change request at https://support.root360.cloud.

3. Install and configure OpenVPN client

3.1 Linux

  1. Install the OpenVPN client and easy-rsa using your package manager

  2. Create a Certificate Signing Request (see additional infos below) and send the resulting CSR file to root360 via https://share.root360.cloud/

  3. Get the OpenVPN client config file including the signed certificate from root360

  4. Copy the content of your private key into the config file (into the key section)

    Code Block
    <key>
    -----BEGIN PRIVATE KEY-----
    ...
    -----END PRIVATE KEY-----
    </key>


  5. Copy the secret VPN config file into your OpenVPN system

4. Additional info

4.1 Create CSR

  1. generate CSR by running:

    Code Block
    openssl req -days 3650 -nodes -new -keyout <descriptive-name>.key -out <descriptive-name>.csr -config /etc/ssl/openssl.cnf
    • make sure to set valid values for at least Organization Name (your company) and Name as these information will be checked

  2. copy the content of keys\<descriptive-name>.csr into https://share.root360.cloud/

  3. send the share link into the ticket requesting OpenVPN activation

...