Firewall (FWaaS)

Block unauthorized inbound and outbound network traffic

Why a firewall

A smaller attack surface — with no agents on servers and no charge

  • Admin panel and SSH — from your IPs only

    The most effective protection against brute force: port 22 and the control panel are open only to the office and VPN — for the rest of the internet they simply don't exist.

  • Outward — only 80 and 443

    The web-server classic: two ports outward, everything else closed. Botnet scanners pass right by.

  • A database with no internet at all

    Paired with private networks (VPC): the DB accepts traffic only from the app, the firewall cuts the rest even inside the network.

  • Isolating environments

    Different rules for prod/staging/dev: a test stand physically can't reach the production database.

Rule examples

A typical set for a web server — configured in the panel in a minute

Rule examples
#DirectionProtocol/portSourceWhy
1inboundTCP 80, 4430.0.0.0/0site available to everyone
2inboundTCP 22office IP / VPNSSH for you only
3inboundTCP 5432app subnetDB sees only the backend
4inboundeverything elsedenied by default

Configured in the panel in minutes; rules can be applied to a single instance or a group of servers.

Firewall ≠ DDoS protection — and you have both

L3/L4 DDoS filtering runs at the platform perimeter automatically for everyone; the Firewall is YOUR access rules on top of it. Together: the platform absorbs the flood, you decide who and where is allowed.

How it works

  • At the platform level

    Traffic is filtered before it reaches your server — attacks don't consume the instance's CPU or channel (unlike iptables on the machine itself).

  • Stateful

    The firewall tracks TCP sessions and drops packets that don't belong to properly established connections.

  • Protocols TCP, UDP, ICMP

    Rules by direction, protocol, ports and traffic sources.

  • Fault tolerance

    The firewall tier's hardware, network channels and power are redundant.

Use cases

  1. TCP 80, 443

    Direction: inbound. Source: 0.0.0.0/0. site available to everyone.

  2. TCP 22

    Direction: inbound. Source: office IP / VPN. SSH for you only.

  3. TCP 5432

    Direction: inbound. Source: app subnet. DB sees only the backend.

Do more with tools

that help secure your infrastructure

  • Backups

    Learn more

    Disk images of your instances, automatically created once a week at 20% of the instance cost. Disk images of your instances, automatically created once a week at 20% of the instance cost.

  • Snapshots

    Learn more

    Our system can be used to create copies of existing servers and automate deployments. Our system can be used to create copies of existing servers and automate deployments.

Frequently asked questions

Two minutes — and there's no unnecessary traffic

Close everything except what you need: rules by ports, protocols and sources. Free, with no agents on servers.

Latest publications

Everything you need to create a stable, secure and scalable environment