What's new

Is SPI built-in?

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

kingsfan

New Around Here
The marketing page for the router speaks to it's Stateful Packet Inspection (SPI) capability in the firewall, but I do not see a setting to turn this on. Is this on by default?
 
The marketing page for the router speaks to it's Stateful Packet Inspection (SPI) capability in the firewall, but I do not see a setting to turn this on. Is this on by default?

While SPI sound very technically impressive, it's nothing really special. It's not an option that can be enabled or disabled, it's part of the firewall rules of pretty much any Linux-based firewall, through two simple rules:

Code:
Chain FORWARD (policy DROP)
target     prot opt source               destination         
...snip...
ACCEPT     all  --  anywhere             anywhere            state RELATED,ESTABLISHED 
DROP       all  --  anywhere             anywhere            state INVALID

Packets with a related or established state are allowed in. Packets with an invalid state are dropped. The rest has to go through the firewall rules to determine what happens to them (forwarded or dropped).
 

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top