InterviewSolution
Saved Bookmarks
| 1. |
How To List All The Rules Applied On Your System And How To Flush All Iptables Rules ? |
|
Answer» To LIST the RULES we have on our system USE: To flush (drop) all the rules we can use: # iptables –F To list the rules we have on our system use: # iptables -nL To flush (drop) all the rules we can use: # iptables –F |
|