107k views
0 votes
On a Linux system, which command allows you to modify settings used by the built-in packet filtering firewall?

a.
ipf
b.
iptables
c.
netwall
d.
modfire

User Deebster
by
5.2k points

1 Answer

2 votes

Answer:

iptables

Step-by-step explanation:

On a Linux system, iptables command allows us to modify settings of the built-in packet filtering firewall.

Iptables is used to set up, maintain, inspect and update the tables of IP packet filtering rules on Linux.

For example,

  • To view the current rule settings we can use the command:

# iptables -L -n -v

  • To add new firewall rules:

# iptables -I INPUT <rule number> -s <source-ip address> -j DROP

User Phreak Nation
by
6.3k points