Cloudflare Docs
Cloudflare-One
Visit Cloudflare Zero Trust on GitHub
Set theme to dark (⇧+D)

Secure the Server

Once you can successfully run a tunnel to proxy incoming traffic to any number of services running locally on your origin, you can lock down your origin to block out potentially malicious incoming traffic. By disallowing all ingress traffic and allowing only egress traffic, you can avoid “poking holes” on your server’s firewall while exposing only the services you specified in the tunnel’s config.yml to the outside world.

Cloud VM instance-level firewall

If you host your services on a Virtual Machine (VM) instance by a Cloud provider such as Google Cloud Platform (GCP), you may set up instance-level firewall rules to disallow all ingress traffic and allow only egress traffic. For example, on GCP, you may delete all ingress rules, leaving only the relevant egress rules. This is because GCP’s firewall defaults to “Block” unless a rule explicitly allows certain traffic.

GCP firewall

OS-level firewall

Alternatively, you may also use operating system (OS)-level firewall rules to disallow all ingress traffic and allow only egress traffic. For example, if your server runs on Linux, you may use iptables to set up firewall rules. Most Linux distributions are pre-installed with iptables. Note that in the example below, not all ingress traffic is blocked, just in case that the server is hosted on the Cloud and there would be no way to SSH back into the system again if the settings were configured wrongly.

  1. Check your current firewall rules.

    $ sudo iptables -L
    
  2. Allow localhost to communicate with itself.

    $ sudo iptables -A INPUT -i lo -j ACCEPT
    
  3. Allow already established connection and related traffic.

    $ sudo iptables -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
    
  4. Allow new SSH connections.

    $ sudo iptables -A INPUT -p tcp --dport ssh -j ACCEPT
    
  5. Drop all other ingress traffic.

    $ sudo iptables -A INPUT -j DROP
    
  6. After setting the firewall rules, use this command to check the current iptables settings:

$ sudo iptables -L

Run your tunnel and check that all the services specified in config.yml should still be accessible to the outside world via the tunnel, but not via the external IP address of the server.

You can also: