Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi guy’s I have a guestion about this configuration.
I created a openvpn server and all connections work fine, but … when I connect my droplet to the openvpn the “external IP address” Doesn’t answer anymore, making all service unavailable! Any ideia how to make the IP usable again and keep the openvpn connected at the same time?
Thanks in advance.
You’ve got a typo in the Networking section. You write “While we could allow incoming OpenVPN connections from any address, we’re going to limit these connections to the IP addresses of the computers you want to correct.” Instead of “correct” you mean “connect”
Are you able to access the public IP address when you are not using the OpenVPN assigned IP addresses? Or are you just never able to use the public IP addresses? Are you having trouble with only one computer when it is using the OpenVPN that it can’t also use the public IP addresses? IOW, are other computers still able to use the public IP address even when there is (at least) one computer connected via OpenVPN? Did you follow the setup for the firehol firewall? If so, as the author of the article states, those rules are designed to allow only the computers on the OpenVPN network and computers using ssh.
In the Copy Keys into Place (and Distribute Client Certificate and Key) section(s) you write "What you’re looking for is that server.key has -rw------- for permissions (read/write for owner, none for group, and none everyone). If you need to change it, use this command:
chmod 700 /etc/openvpn/server.key"
The command should actually be
chmod 600 /etc/openvpn/server.key (and similarly chmod 600 /etc/openvpn/client1.key)
@kamal also see my note above about another typo in the article re: correct -> connect
@Kamal: The openvpn install not longer has a /usr/share/doc/openvpn/examples/easy-rsa directory:
$ ls /usr/share/doc/openvpn/examples/
sample-config-files sample-keys sample-scripts
Which of these needs to be copied for the following instruction in the guide:
cp -r /usr/share/doc/openvpn/examples/easy-rsa/2.0/* .
Thanks!
@Kamal: Update: to get the easy-rsa files on Ubuntu 14.04 you need to install it separately:
sudo apt-get install -y easy-rsa
Cheers.