InterviewSolution
| 1. |
What Are The Target Values In Iptables? |
|
Answer» FOLLOWING are the possible SPECIAL values that we can specify in the target. ACCEPT :Firewall will accept the packet. DROP:Firewall will drop the packet. QUEUE : Firewall will pass the packet to the userspace. RETURN : Firewall will stop executing the next set of rules in the CURRENT chain for this packet. The CONTROL will be RETURNED to the calling chain. Following are the possible special values that we can specify in the target. ACCEPT :Firewall will accept the packet. DROP:Firewall will drop the packet. QUEUE : Firewall will pass the packet to the userspace. RETURN : Firewall will stop executing the next set of rules in the current chain for this packet. The control will be returned to the calling chain. |
|