Changes between Version 1 and Version 2 of Csle2022/Agenda/FW


Ignore:
Timestamp:
Oct 20, 2022, 10:58:16 AM (2 years ago)
Author:
geethike
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/FW

    v1 v2  
    1 gdgdgfgfgfgfgfgfgfgfgfgfgfgfg
     1== What is a Firewall?==
     2Firewall is a network security system that filters and controls the traffic on a predetermined set of rules. This is an intermediary system between the device and the internet.
     3
     4== How the Firewall of Linux works: ==
     5Most of the Linux distro’s ship with default firewall tools that can be used to configure them. We will be using “IPTables” the default tool provided in Linux to establish a firewall. Iptables is used to set up, maintain and inspect the tables of the IPv4 and IPv6 packet filter rules in the Linux Kernel.
     6
     7== Chains :- ==
     8
     9Chains are a set of rules defined for a particular task.
     10
     11We have three chains(set of rules) which are used to process the traffic:-
     12
     13   1. INPUT Chains[[BR]]
     14   2. OUTPUT Chains[[BR]]
     15   3. FORWARD Chains[[BR]]
     16
     17== 1. INPUT Chains ==
     18Any traffic coming from the internet(network) towards your local machine has to go through the input chains. That means they have to go through all the rules that have been set up in the Input chain.
     19
     20== 2. OUTPUT Chains ==
     21Any traffic going from your local machine to the internet needs to go through the output chains.
     22
     23== iptables Lab ==
     24
     25In this lab, you will setup a Basic Firewall Rules with iptables.