SlideShare ist ein Scribd-Unternehmen logo
1 von 18
SeminarSeminar
onon
Window FIREWALLWindow FIREWALL
And IPTABLESAnd IPTABLES
Turning small Mind
Into
Hackers
Topic CoveredTopic Covered
What is Firewall ?.
Types of Firewall.
What is Iptables ?.
Packet Processing In Iptables.
Various Commands.
Example.
What is FirewallWhat is Firewall
 A firewall is a software or hardware-
based network security system that
controls the incoming and outgoing
network traffic by analyzing the data
packets and determining whether they
should be allowed through or not, based
on applied rule set.
 A firewall establishes a barrier between a
trusted, secure internal network and
another network (e.g., the Internet) that is
not assumed to be secure and trusted.[
Types of FirewallTypes of Firewall
There are different types of firewalls
depending on where the communication is
taking place, where the communication is
intercepted and the state that is being
traced :->
1.Network Layer/Packet Filters.
2.Application layer.
3.Proxies.
4.Network Address Translation(NAT).
Types of FirewallTypes of Firewall
 Network layer or packet filters
Network layer firewalls, also called
packet filters, operate at a relatively low level
of the TCP/IP protocol stack, not allowing
packets to pass through the firewall unless
they match the established rule set. The
firewall administrator may define the rules;
or default rules may apply.
The term "packet filter" originated in the
context of BSD operating systems.
Types of FirewallTypes of Firewall
Stateful and Stateless Network LayerStateful and Stateless Network Layer
Stateful Stateless
 Stateful firewalls maintain
context about active sessions,
and use that "state
information" to speed packet
processing. If a packet does not
match an existing connection, it
will be evaluated according to
the ruleset for new
connections. If a packet
matches an existing connection
based on comparison with the
firewall's state table, it will be
allowed to pass without
further processing.
 Stateless firewalls require less
memory, and can be faster for
simple filters that require less
time to filter than to look up a
session.They may also be
necessary for filtering stateless
network protocols that have
no concept of a session.
However, they cannot make
more complex decisions based
on what stage communications
between hosts have reached.
Types of FirewallTypes of Firewall
Application Layer:-> Application-layer firewalls
work on the application level of the TCP/IP stack
(i.e., all browser traffic, or all telnet or ftp traffic),
and may intercept all packets travelling to or from
an application and they block other packets.
-> Application firewalls function by determining
whether a process should accept any given
connection. Application firewalls accomplish their
function by hooking into socket calls to filter the
connections between the application layer and the
lower layers of the OSI model. Application
firewalls that hook into socket calls are also
referred to as socket filters
Types of FirewallTypes of Firewall
Proxies:-> A proxy server may act as a firewall by
responding to input packets (connection requests,
for example) in the manner of an application,
while blocking other packets.
A proxy server is a gateway from one network to
another for a specific network application, in the
sense that it functions as a proxy on behalf of the
network user.
Intruders may hijack a publicly reachable system
and use it as a proxy for their own purposes; the
proxy then masquerades as that system to other
internal machines
Types of FirewallTypes of Firewall
Network Address Translation(NAT):->
->Firewalls often have network address
translation (NAT) functionality, and the
hosts protected behind a firewall
commonly have addresses in the "private
address range", as defined in RFC 1918.
-> Firewalls often have such functionality to
hide the true address of protected hosts.
IP-TABLESIP-TABLES
Iptables is the firewall used on the Linux
platform.
Prior to Iptables and Ipchains were among
the most popular Linux firewalls.
They had certain imperfections which were
fixed, resulting in a new product from the
NetFilter organization called IP-TABLES.
RedHat and Fedora Linux have made
Iptables their default pre-installed firewall
package.
Packet Processing In IptablesPacket Processing In Iptables
Every packet passes via a series of built-in
queues called tables for processing.
Basically, there are three tables:
-> Filter Table: The default table for handling
network packets.
-> NAT Table: Used to alter packets that create a
new connection.
-> Mangle Table: Used for specific types of packet
alteration. It is a combination of both filter and Nat
table.
Option used in Iptable commandsOption used in Iptable commands
When using the iptables command, specify
the following options:
◩ Packet Type : Dictates what type of packets
the command filters.
◩ Packet Source/Destination : Dictates which
packets the command filters based on the
source or destination of the packet.
◩ Target : Dictates what action is taken on
packets matching the above criteria.
Various CommandsVarious Commands
–A : Appends the iptables rule to the end of
the specified chain.
–F : Flushes the selected chain, which
effectively deletes every rule in the the
chain.
–L : Lists all of the rules in the chain
specified after the command.
iptables –L <chain-name> –t <table-name>
–N : Creates a new chain with a user-
specified name.
–P : Sets the default policy for a particular
chain, so that when packets traverse an
entire chain without matching a rule, they
will be sent on to a particular target, such as
ACCEPT or DROP.
General Iptables Match CriteriaGeneral Iptables Match Criteria
Iptables command Description
-t <table> If you don't specify a table, then the filter table is assumed. As
discussed before, the possible built-in tables include: filter, nat, mangle
-j <target> Jump to the specified target chain when the packet matches the
current rule.
-p <protocol-type> Match protocol. Types include, icmp, tcp, udp, and
all
-s/-d <ip-address> Match source/destination IP address
-i <interface-
name>
Match "input" interface on which the packet enters.
-o <interface-
name>
Match "output" interface on which the packet exits
Loading Kernel Modules Needed ByLoading Kernel Modules Needed By
IptablesIptables
The iptables application requires you to load certain
kernel modules to activate some of its functions.
Whenever any type of NAT is required, the iptable_nat
module needs to be loaded. The ip_conntrack_ftp
module needs to be added for FTP support and should
always be loaded with the ip_conntrack module which
tracks TCP connection states.
# File: /etc/rc.local
# Module to track the state of connections
modprobe ip_conntrack
# Load the iptables active FTP module, requires
ip_conntrack
modprobe ip_conntrack_ftp
# Load iptables NAT module when required
modprobe iptable_nat
# Module required for active an FTP server using NAT
modprobe ip_nat_ftp
Example:Example: Allowing DNS Access ToAllowing DNS Access To
FirewallFirewall
#-------------------------------------------------
-----
# Allow outbound DNS queries from the FW
and the replies too
# Interface eth0 is the internet interface
# Zone transfers use TCP and not UDP. Most
home networks
# websites using a single DNS server won't
require TCP statements
#-------------------------------------------------
-----
iptables -A OUTPUT -p udp -o eth0
--dport 53 --sport 1024:65535 -j
ACCEPT
iptables -A INPUT -p udp -i eth0
--sport 53 --dport 1024:65535 -j
ACCEPT
Allowing Firewall To Access TheAllowing Firewall To Access The
InternetInternet
# Allow port 80 (www) and 443 (https) connections from
the firewall
iptables -A OUTPUT -j ACCEPT -m state
--state NEW,ESTABLISHED,RELATED -o eth0
-p tcp -m multiport --dport 80,443 -m
multiport --sport 1024:65535
# Allow previously established connections
# - Interface eth0 is the internet interface
iptables -A INPUT -j ACCEPT -m state
--state ESTABLISHED,RELATED -i eth0 -p
tcp
If you want all TCP traffic originating from the firewall to
be accepted, then remove the line:
-m multiport --dport 80,443 -m multiport
--sport 1024:65535
“Thank You
for your time
and
Listening me.”

Weitere Àhnliche Inhalte

Was ist angesagt?

Wireshark Traffic Analysis
Wireshark Traffic AnalysisWireshark Traffic Analysis
Wireshark Traffic AnalysisDavid Sweigert
 
Packet analysis using wireshark
Packet analysis using wiresharkPacket analysis using wireshark
Packet analysis using wiresharkBasaveswar Kureti
 
Wireshark network analysing software
Wireshark network analysing softwareWireshark network analysing software
Wireshark network analysing softwaredharmesh nakum
 
CCNA Course Training Presentation
CCNA Course Training PresentationCCNA Course Training Presentation
CCNA Course Training PresentationRohit Singh
 
Packet sniffing in LAN
Packet sniffing in LANPacket sniffing in LAN
Packet sniffing in LANArpit Suthar
 
Wireshark
WiresharkWireshark
WiresharkSourav Roy
 
What is network architecture
What is network architecture What is network architecture
What is network architecture Sorcia D'Arceuil
 
Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)Alan Mark
 
Introduction to tcpdump
Introduction to tcpdumpIntroduction to tcpdump
Introduction to tcpdumpLev Walkin
 
Wireshark - presentation
Wireshark - presentationWireshark - presentation
Wireshark - presentationKateryna Haskova
 
Subnetting Presentation
Subnetting PresentationSubnetting Presentation
Subnetting PresentationTouhidul Fahim
 
Network security and protocols
Network security and protocolsNetwork security and protocols
Network security and protocolsOnline
 
Networking and penetration testing
Networking and penetration testingNetworking and penetration testing
Networking and penetration testingMohit Belwal
 
Packet Tracer: SNMP, Netflow, Sys-log
Packet Tracer: SNMP, Netflow, Sys-logPacket Tracer: SNMP, Netflow, Sys-log
Packet Tracer: SNMP, Netflow, Sys-logRafat Khandaker
 

Was ist angesagt? (20)

Wireshark Traffic Analysis
Wireshark Traffic AnalysisWireshark Traffic Analysis
Wireshark Traffic Analysis
 
Packet analysis using wireshark
Packet analysis using wiresharkPacket analysis using wireshark
Packet analysis using wireshark
 
Wireshark network analysing software
Wireshark network analysing softwareWireshark network analysing software
Wireshark network analysing software
 
CCNA Course Training Presentation
CCNA Course Training PresentationCCNA Course Training Presentation
CCNA Course Training Presentation
 
Packet sniffing in LAN
Packet sniffing in LANPacket sniffing in LAN
Packet sniffing in LAN
 
Wireshark
WiresharkWireshark
Wireshark
 
Wireshark
WiresharkWireshark
Wireshark
 
Wireshark
WiresharkWireshark
Wireshark
 
What is network architecture
What is network architecture What is network architecture
What is network architecture
 
Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)
 
Introduction to tcpdump
Introduction to tcpdumpIntroduction to tcpdump
Introduction to tcpdump
 
Firewall
FirewallFirewall
Firewall
 
Wireshark - presentation
Wireshark - presentationWireshark - presentation
Wireshark - presentation
 
Subnetting Presentation
Subnetting PresentationSubnetting Presentation
Subnetting Presentation
 
Cisco ASA Firewalls
Cisco ASA FirewallsCisco ASA Firewalls
Cisco ASA Firewalls
 
Networking basics PPT
Networking basics PPTNetworking basics PPT
Networking basics PPT
 
Network security and protocols
Network security and protocolsNetwork security and protocols
Network security and protocols
 
Networking and penetration testing
Networking and penetration testingNetworking and penetration testing
Networking and penetration testing
 
OSI Layers
OSI LayersOSI Layers
OSI Layers
 
Packet Tracer: SNMP, Netflow, Sys-log
Packet Tracer: SNMP, Netflow, Sys-logPacket Tracer: SNMP, Netflow, Sys-log
Packet Tracer: SNMP, Netflow, Sys-log
 

Ähnlich wie I ptable

Firewall and Types of firewall
Firewall and Types of firewallFirewall and Types of firewall
Firewall and Types of firewallCoder Tech
 
IPTABLES_linux_Firewall_Administration (1).pdf
IPTABLES_linux_Firewall_Administration (1).pdfIPTABLES_linux_Firewall_Administration (1).pdf
IPTABLES_linux_Firewall_Administration (1).pdfmpassword
 
Unix Web servers and FireWall
Unix Web servers and FireWallUnix Web servers and FireWall
Unix Web servers and FireWallwebhostingguy
 
Unix Web servers and FireWall
Unix Web servers and FireWallUnix Web servers and FireWall
Unix Web servers and FireWallwebhostingguy
 
Cyber security tutorial2
Cyber security tutorial2Cyber security tutorial2
Cyber security tutorial2sweta dargad
 
The Complete Questionnaires About Firewall
The Complete Questionnaires About FirewallThe Complete Questionnaires About Firewall
The Complete Questionnaires About FirewallVishal Kumar
 
IP Tables And Filtering
IP Tables And FilteringIP Tables And Filtering
IP Tables And FilteringSuperstarRr
 
Iptables the Linux Firewall
Iptables the Linux Firewall Iptables the Linux Firewall
Iptables the Linux Firewall Syed fawad Gillani
 
Iptables presentation
Iptables presentationIptables presentation
Iptables presentationEmin Abdul Azeez
 
introduction of iptables in linux
introduction of iptables in linuxintroduction of iptables in linux
introduction of iptables in linuxNouman Baloch
 
What is Protocol.docx
What is Protocol.docxWhat is Protocol.docx
What is Protocol.docxkndnewguade
 
Lec # 13 Firewall.pptx
Lec # 13 Firewall.pptxLec # 13 Firewall.pptx
Lec # 13 Firewall.pptxskknowledge
 
CN. Presentation for submitting project term pptx
CN. Presentation for submitting project term pptxCN. Presentation for submitting project term pptx
CN. Presentation for submitting project term pptxsaad504633
 
Creating a firewall in UBUNTU
Creating a firewall in UBUNTUCreating a firewall in UBUNTU
Creating a firewall in UBUNTUMumbai University
 
firewall and its types
firewall and its typesfirewall and its types
firewall and its typesMohammed Maajidh
 

Ähnlich wie I ptable (20)

Firewall
FirewallFirewall
Firewall
 
Firewall and Types of firewall
Firewall and Types of firewallFirewall and Types of firewall
Firewall and Types of firewall
 
IPTABLES_linux_Firewall_Administration (1).pdf
IPTABLES_linux_Firewall_Administration (1).pdfIPTABLES_linux_Firewall_Administration (1).pdf
IPTABLES_linux_Firewall_Administration (1).pdf
 
Unix Web servers and FireWall
Unix Web servers and FireWallUnix Web servers and FireWall
Unix Web servers and FireWall
 
Unix Web servers and FireWall
Unix Web servers and FireWallUnix Web servers and FireWall
Unix Web servers and FireWall
 
Cyber security tutorial2
Cyber security tutorial2Cyber security tutorial2
Cyber security tutorial2
 
Network &amp; security startup
Network &amp; security startupNetwork &amp; security startup
Network &amp; security startup
 
The Complete Questionnaires About Firewall
The Complete Questionnaires About FirewallThe Complete Questionnaires About Firewall
The Complete Questionnaires About Firewall
 
IP Tables And Filtering
IP Tables And FilteringIP Tables And Filtering
IP Tables And Filtering
 
Iptables the Linux Firewall
Iptables the Linux Firewall Iptables the Linux Firewall
Iptables the Linux Firewall
 
Iptables presentation
Iptables presentationIptables presentation
Iptables presentation
 
Firewalls
FirewallsFirewalls
Firewalls
 
Firewalls (6)
Firewalls (6)Firewalls (6)
Firewalls (6)
 
introduction of iptables in linux
introduction of iptables in linuxintroduction of iptables in linux
introduction of iptables in linux
 
What is Protocol.docx
What is Protocol.docxWhat is Protocol.docx
What is Protocol.docx
 
Lec # 13 Firewall.pptx
Lec # 13 Firewall.pptxLec # 13 Firewall.pptx
Lec # 13 Firewall.pptx
 
CN. Presentation for submitting project term pptx
CN. Presentation for submitting project term pptxCN. Presentation for submitting project term pptx
CN. Presentation for submitting project term pptx
 
Creating a firewall in UBUNTU
Creating a firewall in UBUNTUCreating a firewall in UBUNTU
Creating a firewall in UBUNTU
 
Firewall
FirewallFirewall
Firewall
 
firewall and its types
firewall and its typesfirewall and its types
firewall and its types
 

KĂŒrzlich hochgeladen

Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Principled Technologies
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 

KĂŒrzlich hochgeladen (20)

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 

I ptable

  • 1. SeminarSeminar onon Window FIREWALLWindow FIREWALL And IPTABLESAnd IPTABLES Turning small Mind Into Hackers
  • 2. Topic CoveredTopic Covered What is Firewall ?. Types of Firewall. What is Iptables ?. Packet Processing In Iptables. Various Commands. Example.
  • 3. What is FirewallWhat is Firewall  A firewall is a software or hardware- based network security system that controls the incoming and outgoing network traffic by analyzing the data packets and determining whether they should be allowed through or not, based on applied rule set.  A firewall establishes a barrier between a trusted, secure internal network and another network (e.g., the Internet) that is not assumed to be secure and trusted.[
  • 4. Types of FirewallTypes of Firewall There are different types of firewalls depending on where the communication is taking place, where the communication is intercepted and the state that is being traced :-> 1.Network Layer/Packet Filters. 2.Application layer. 3.Proxies. 4.Network Address Translation(NAT).
  • 5. Types of FirewallTypes of Firewall  Network layer or packet filters Network layer firewalls, also called packet filters, operate at a relatively low level of the TCP/IP protocol stack, not allowing packets to pass through the firewall unless they match the established rule set. The firewall administrator may define the rules; or default rules may apply. The term "packet filter" originated in the context of BSD operating systems.
  • 6. Types of FirewallTypes of Firewall Stateful and Stateless Network LayerStateful and Stateless Network Layer Stateful Stateless  Stateful firewalls maintain context about active sessions, and use that "state information" to speed packet processing. If a packet does not match an existing connection, it will be evaluated according to the ruleset for new connections. If a packet matches an existing connection based on comparison with the firewall's state table, it will be allowed to pass without further processing.  Stateless firewalls require less memory, and can be faster for simple filters that require less time to filter than to look up a session.They may also be necessary for filtering stateless network protocols that have no concept of a session. However, they cannot make more complex decisions based on what stage communications between hosts have reached.
  • 7. Types of FirewallTypes of Firewall Application Layer:-> Application-layer firewalls work on the application level of the TCP/IP stack (i.e., all browser traffic, or all telnet or ftp traffic), and may intercept all packets travelling to or from an application and they block other packets. -> Application firewalls function by determining whether a process should accept any given connection. Application firewalls accomplish their function by hooking into socket calls to filter the connections between the application layer and the lower layers of the OSI model. Application firewalls that hook into socket calls are also referred to as socket filters
  • 8. Types of FirewallTypes of Firewall Proxies:-> A proxy server may act as a firewall by responding to input packets (connection requests, for example) in the manner of an application, while blocking other packets. A proxy server is a gateway from one network to another for a specific network application, in the sense that it functions as a proxy on behalf of the network user. Intruders may hijack a publicly reachable system and use it as a proxy for their own purposes; the proxy then masquerades as that system to other internal machines
  • 9. Types of FirewallTypes of Firewall Network Address Translation(NAT):-> ->Firewalls often have network address translation (NAT) functionality, and the hosts protected behind a firewall commonly have addresses in the "private address range", as defined in RFC 1918. -> Firewalls often have such functionality to hide the true address of protected hosts.
  • 10. IP-TABLESIP-TABLES Iptables is the firewall used on the Linux platform. Prior to Iptables and Ipchains were among the most popular Linux firewalls. They had certain imperfections which were fixed, resulting in a new product from the NetFilter organization called IP-TABLES. RedHat and Fedora Linux have made Iptables their default pre-installed firewall package.
  • 11. Packet Processing In IptablesPacket Processing In Iptables Every packet passes via a series of built-in queues called tables for processing. Basically, there are three tables: -> Filter Table: The default table for handling network packets. -> NAT Table: Used to alter packets that create a new connection. -> Mangle Table: Used for specific types of packet alteration. It is a combination of both filter and Nat table.
  • 12. Option used in Iptable commandsOption used in Iptable commands When using the iptables command, specify the following options: ◩ Packet Type : Dictates what type of packets the command filters. ◩ Packet Source/Destination : Dictates which packets the command filters based on the source or destination of the packet. ◩ Target : Dictates what action is taken on packets matching the above criteria.
  • 13. Various CommandsVarious Commands –A : Appends the iptables rule to the end of the specified chain. –F : Flushes the selected chain, which effectively deletes every rule in the the chain. –L : Lists all of the rules in the chain specified after the command. iptables –L <chain-name> –t <table-name> –N : Creates a new chain with a user- specified name. –P : Sets the default policy for a particular chain, so that when packets traverse an entire chain without matching a rule, they will be sent on to a particular target, such as ACCEPT or DROP.
  • 14. General Iptables Match CriteriaGeneral Iptables Match Criteria Iptables command Description -t <table> If you don't specify a table, then the filter table is assumed. As discussed before, the possible built-in tables include: filter, nat, mangle -j <target> Jump to the specified target chain when the packet matches the current rule. -p <protocol-type> Match protocol. Types include, icmp, tcp, udp, and all -s/-d <ip-address> Match source/destination IP address -i <interface- name> Match "input" interface on which the packet enters. -o <interface- name> Match "output" interface on which the packet exits
  • 15. Loading Kernel Modules Needed ByLoading Kernel Modules Needed By IptablesIptables The iptables application requires you to load certain kernel modules to activate some of its functions. Whenever any type of NAT is required, the iptable_nat module needs to be loaded. The ip_conntrack_ftp module needs to be added for FTP support and should always be loaded with the ip_conntrack module which tracks TCP connection states. # File: /etc/rc.local # Module to track the state of connections modprobe ip_conntrack # Load the iptables active FTP module, requires ip_conntrack modprobe ip_conntrack_ftp # Load iptables NAT module when required modprobe iptable_nat # Module required for active an FTP server using NAT modprobe ip_nat_ftp
  • 16. Example:Example: Allowing DNS Access ToAllowing DNS Access To FirewallFirewall #------------------------------------------------- ----- # Allow outbound DNS queries from the FW and the replies too # Interface eth0 is the internet interface # Zone transfers use TCP and not UDP. Most home networks # websites using a single DNS server won't require TCP statements #------------------------------------------------- ----- iptables -A OUTPUT -p udp -o eth0 --dport 53 --sport 1024:65535 -j ACCEPT iptables -A INPUT -p udp -i eth0 --sport 53 --dport 1024:65535 -j ACCEPT
  • 17. Allowing Firewall To Access TheAllowing Firewall To Access The InternetInternet # Allow port 80 (www) and 443 (https) connections from the firewall iptables -A OUTPUT -j ACCEPT -m state --state NEW,ESTABLISHED,RELATED -o eth0 -p tcp -m multiport --dport 80,443 -m multiport --sport 1024:65535 # Allow previously established connections # - Interface eth0 is the internet interface iptables -A INPUT -j ACCEPT -m state --state ESTABLISHED,RELATED -i eth0 -p tcp If you want all TCP traffic originating from the firewall to be accepted, then remove the line: -m multiport --dport 80,443 -m multiport --sport 1024:65535
  • 18. “Thank You for your time and Listening me.”