25
TRAINING REPORT ON SYS - FIREWALL Secure Your System A handy tool for System-Administrators Chandra Prakash Pathak 08EMTCS032 Computer Science Maharishi Arvind Institute of Engineering and Technology, Jaipur http://chankeypathak.blo gspot.com

Firewall in Perl by chankey pathak

Embed Size (px)

DESCRIPTION

Implementation of firewall (iptables) in Perl using dialog for GUI.

Citation preview

Page 1: Firewall in Perl by chankey pathak

TRAINING REPORT ON SYS - FIREWALL

Secure Your SystemA handy tool for System-Administrators

Chandra Prakash Pathak08EMTCS032Computer Science

Maharishi Arvind Institute of Engineering and Technology, Jaipur

http://chankeypathak.blogspot.com

Page 2: Firewall in Perl by chankey pathak

Company Profile- Linux World

• The best awarded Red Hat partner in India.• The company has been contributing a great deal to Linux Server & Networking industry by fulfilling its need for trained manpower in the field of Linux support, Networking, System Integration & Programming.

Page 3: Firewall in Perl by chankey pathak

GREEN-HORNE PROJECT (An open source operating system)

Module: SYS Firewall

Page 4: Firewall in Perl by chankey pathak

What is a Firewall?

A firewall is hardware, software, or a combination of both that is used to prevent unauthorized programs or Internet users from accessing a private network and/or a single computer.

Page 5: Firewall in Perl by chankey pathak

How does a software firewall work?

• Inspects each individual “packet” of data as it arrives at either side of the firewall

• Inbound to or outbound from your computer

• Determines whether it should be allowed to pass through or if it should be blocked

Page 6: Firewall in Perl by chankey pathak

Firewall Rules

• Allow – traffic that flows automatically because it has been deemed as “safe” (Ex. Meeting Maker, Eudora, etc.)

• Block – traffic that is blocked because it has been deemed dangerous to your computer

• Ask – asks the user whether or not the traffic is allowed to pass through

Page 7: Firewall in Perl by chankey pathak

What a personal firewall can do

• Stop hackers from accessing your computer

• Protects your personal information

• Blocks “pop up” ads and certain cookies

• Determines which programs can access the Internet

Page 8: Firewall in Perl by chankey pathak

What a SYS firewall can do

• Authorizing users

• Limiting access for the services

• Filtering the packets

• NATing

• Masquerading

Page 9: Firewall in Perl by chankey pathak

Requirements

• Linux Kernel 2.4.x or higher

• iptables

• Perl 5.6 or higher

• dialog

Page 10: Firewall in Perl by chankey pathak

User interface with “dialog”

dialog --title “Linux dialog utility infobox” --backtitle “Linux shell script tutorial” --infobox “This is a dialog box called infobox,

which is used to show information on the screen, Thanks to Savio Lam and Stuart Herbert to give us this utility. Press any key…” 7 50;

Page 11: Firewall in Perl by chankey pathak
Page 12: Firewall in Perl by chankey pathak

Implementing iptables

• Using Perl and dialog I build a GUI version of the iptables.

Perl – For coding purposedialog – For Graphical User Interface

Page 13: Firewall in Perl by chankey pathak

How does it work?

• Step 1 – Run the application (perl sys.xls)

• Step 2 – Check required packages

Page 14: Firewall in Perl by chankey pathak

• Step 3 – Authenticate User (password)

Page 15: Firewall in Perl by chankey pathak

• Step 4 – Main Interface

Page 16: Firewall in Perl by chankey pathak

• Step 5 – Customize rules

Page 17: Firewall in Perl by chankey pathak

Dropping all policies

• iptables -P INPUT DROP

• iptables -P OUTPUT DROP

• iptables -P FORWARD DROP

Page 18: Firewall in Perl by chankey pathak

Block Ping

iptables -A INPUT -p icmp --icmp-type echo-request -j DROP

iptables -A OUTPUT -p icmp --icmp-type echo-request -j DROPiptables -A OUTPUT -p icmp --icmp-type echo-request -j DROP

iptables -A OUTPUT -p icmp --icmp-type echo-reply -j DROP

Page 19: Firewall in Perl by chankey pathak

A dynamic approach

# iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

# iptables -P INPUT DROP# iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

Page 20: Firewall in Perl by chankey pathak

SNAT

• For static connections.

• iptables -t nat -A POSTROUTING -o eth0 -j SNAT --to-source <SERVER'S_EXTERNAL_IP>

Page 21: Firewall in Perl by chankey pathak
Page 22: Firewall in Perl by chankey pathak

Masquerade

• For dynamic connections.

• iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE

Page 23: Firewall in Perl by chankey pathak

DNAT

• iptables -t nat -A PREROUTING -i ppp0 -p tcp --dport 80 -j DNAT --to-destination 192.168.1.24:80

Page 24: Firewall in Perl by chankey pathak

Extra services

• Saving rules• Logging• Exit

Page 25: Firewall in Perl by chankey pathak

THANK YOU!

Any Queries?