---
title: Setup your own VPN server
description: 'Why do we need a VPN server? A VPN (Virtual Private Network) server
  is a network server that allows users to create a secure and encrypted connection
  to another network over the internet. Here are some reasons why we need a VPN server:
  Security: VPNs provide a secure way to access the internet, protecting sensitive  […]'
url: https://canonical.com/blog/setup-your-own-vpn-server?format=md
---

1. [Blog](https://canonical.com/blog)
2. Article

---

[Hugo Huang](https://canonical.com/blog/author/hugohuangtao "More about Hugo Huang")

1 March 2023

# Setup your own VPN server

[Google Cloud](https://canonical.com/blog/tag/google-cloud)
[Security](https://canonical.com/blog/tag/security)
[Ubuntu Pro](https://canonical.com/blog/tag/ubuntu-pro)
[VPN](https://canonical.com/blog/tag/vpn)

---

Share the article

Why do we need a VPN server? A VPN (Virtual Private Network) server is a network server that allows users to create a secure and encrypted connection to another network over the internet. Here are some reasons why we need a VPN server:

* Security: VPNs provide a secure way to access the internet, protecting sensitive data from being intercepted by hackers, snoopers, and other malicious actors. A VPN server encrypts all data transmitted between a user’s device and the internet, making it virtually impossible for anyone to intercept or access the data.
* Privacy: VPNs allow users to protect their privacy by hiding their online activity from their Internet Service Provider (ISP) and other third parties. A VPN server can mask a user’s IP address, making it difficult for anyone to track their online activity and location.
* Access to restricted content: Many websites and online services are geo-restricted, meaning they can only be accessed from certain locations. A VPN server allows users to bypass these restrictions and access content from anywhere in the world.
* Remote access: VPNs can be used to provide secure remote access to corporate networks and resources, allowing employees to work from anywhere while maintaining a secure connection to company data.

# Create a Ubuntu Virtual Machine on Google Cloud

First, we need a Virtual Machine to host the VPN server. For this demo, we will create a Virtual Machine instance on [Google Cloud](https://console.cloud.google.com/) (follow [this video to create a VM on Google Cloud step by step](https://www.youtube.com/watch?v=0JxqWE5pmKs)) and pick a region close to the location of your client machines. Here I chose us-west2:

Choose your OS for your server. For security and stability, I chose Ubuntu 20.04 Pro:

# Setup Shadowsocks VPN server

In a few seconds, your Ubuntu VM will be running. Now, SSH into the server through the “SSH” button on the right:

A SSH-in-browser will pop out like this:

Now, login as root:

```
sudo su
```

Update your OS:

```
apt-get update
```

Install pip:

```
apt-get install python3-pip
```

Install Shadowsocks

```
pip install shadowsocks
```

Create a configuration file for your Shadowsocks to configure the Shadowsocks server

```
vi /etc/shadowsocks.json
```

Add the following content to your config JSON file:

```
{
    "server":"0.0.0.0",
    "server_port":8000,
    "local_port":1080,
    "password":"Your_Password",
    "timeout":600,
    "method":"chacha20"
}
```

Start the server

```
ssserver -c /etc/shadowsocks.json -d start
```

If you want to stop the server

```
ssserver -c /etc/shadowsocks.json -d stop
```

If you want to re-start the server

```
ssserver -c /etc/shadowsocks.json -d restart
```

Now you successfully created a running Shadowsocks server on Google Cloud, you can connect to it through a Shadowscocks Client.

# Connecting to your Shadowsocks server

Download the Shadowsocks Client to your local machine.

From <https://github.com/nojsja/shadowsocks-electron/releases/tag/v1.2.3>, choose the version suitable for your personal computer. I downloaded the Mac version and then installed it.

After I successfully installed the client, I add the server in the Client UI:

The Server Address is the IP address of my server in Google Cloud. You can find the IP address in your GCP console. For more information about the Shadowsocks client, check out this github repo: <https://github.com/nojsja/shadowsocks-electron>.

Click “SAVE” and you are all set. Enjoy your own VPN!

[Get in touch

Interested in running Ubuntu in your organization?](https://ubuntu.com/about/contact-us/form)

## Sign up for our newsletter

Get the latest Canonical news and updates in your inbox.

Work email:

\*I agree to receive information about Canonical's
products and services.

By submitting this form, I confirm that I have read and agree to [Canonical's Privacy Policy](https://canonical.com/legal/dataprivacy).

Sign up

## Share on

---

## Related posts

[### Canonical joins the Open Secure AI Alliance](https://canonical.com/blog/open-secure-ai-alliance)

Canonical is now part of the Open Secure AI Alliance, announced by NVIDIA with partners across cloud computing, cybersecurity, enterprise software, open source foundations, and...

[Canonical](https://canonical.com/blog/author/canonical)

28 August 2026

[### Arduino® VENTUNO™ Q is available for pre-order with Ubuntu pre-installed](https://canonical.com/blog/arduino-ventuno-q-is-available-for-pre-order-with-ubuntu-pre-installed)

London, UK – August 25, 2026 – Following our initial collaboration announcement in March 2026, Canonical and Arduino (a subsidiary of Qualcomm Technologies, Inc.) are excited...

[Canonical](https://canonical.com/blog/author/canonical)

25 August 2026

[### Canonical announces the Enterprise Store as part of Ubuntu Pro](https://canonical.com/blog/canonical-announces-the-enterprise-store)

Canonical introduces a new way to manage software behind firewalls and in air-gapped environments with the Enterprise Store. The Enterprise Store makes software distribution...

[Holly Hall](https://canonical.com/blog/author/hollyhall)

21 July 2026

[### Tracing a memory leak bug in PID 1 and contributing an upstream fix: a Linux support story](https://canonical.com/blog/fixing-memory-bug)

How Canonical Support helped a global retail organization trace the cause for an unusual memory leak originating in PID 1. By investigating the issue across three separate...

[Lidia Luna Puerta](https://canonical.com/blog/author/lidia-luna)

17 July 2026
