A VPN certificate is necessary to access SN4I. This will be made available to the authorized experimenters, then, follow the instructions depending on your OS.
You can install the OpenVPN client for Windows here.
Once OpenVPN is installed, save the VPN credentials in the (default dir: C:/Users/
Install OpenVPN
sudo apt install openvpn
Create the sn4i.ovpn
config file as follows
# insert client.conf
<ca>
-----BEGIN CERTIFICATE-----
# insert ca.crt
-----END CERTIFICATE-----
</ca>
<cert>
-----BEGIN CERTIFICATE-----
# insert client1.crt
-----END CERTIFICATE-----
</cert>
<key>
-----BEGIN PRIVATE KEY-----
# insert client1.pem
-----END PRIVATE KEY-----
</key>
<tls-auth>
-----BEGIN OpenVPN Static key V1-----
# insert ta.key
-----END OpenVPN Static key V1-----
</tls-auth>
Run OpenVPN
sudo openvpn --config sn4i.ovpn --daemon vpn