How many type firewall have in network
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!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Heya,
In networking, there are several types of firewalls:
Packet-Filtering Firewall
Checks packets individually based on IP, port, and protocol.
Very fast, but basic (can’t see inside packets).
Stateful Firewall
Tracks the state of active connections (TCP handshake, etc.).
Smarter than packet filtering, understands the context.
Application Layer Firewall (Proxy Firewall)
Inspects traffic at the application level (HTTP, FTP, DNS).
Can block specific requests or responses.
Next-Generation Firewall (NGFW)
Combines stateful inspection + deep packet inspection + intrusion prevention.
Also often supports SSL decryption, antivirus, etc.
Cloud Firewalls (like DigitalOcean Cloud Firewall)
Managed firewall service in the cloud.
Filters incoming and outgoing traffic without configuring the server directly.
Web Application Firewall (WAF)
Specialized firewall to protect web apps.
Blocks threats like SQL injection, XSS attacks.
✅ In the case of DigitalOcean, this might be the Cloud Firewall:
You define rules in the dashboard (allow/block IPs, ports).
It filters traffic before it reaches your Droplet.