nixCraft Linux Forum

nixCraft

Linux Tech Support Forum

IP Tables Configuration

This is a discussion on IP Tables Configuration within the Networking, Firewalls and Security forums, part of the Mastering Servers category; Hi All , We are using Fedora Core 2.0 , now i want to block all the ports accept 443 ...


Go Back   nixCraft Linux Forum > Mastering Servers > Networking, Firewalls and Security

Register FAQ Members List Calendar Forgotten your password? Mark Forums Read
  #1 (permalink)  
Old 06-28-2007, 07:34 PM
Junior Member
User
 
Join Date: Jun 2007
My distro: Debian
Posts: 15
Rep Power: 0
jhn_daz@yahoo.com is on a distinguished road
Unhappy IP Tables Configuration

Hi All ,

We are using Fedora Core 2.0 , now i want to block all the ports accept 443 , 23,22,80 from iptables , i have made configure that every icmp traffic is block but want to configure to block all the ports ... please help ,,,

John
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 06-29-2007, 02:56 AM
nixcraft's Avatar
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
My distro: Ubuntu
Posts: 1,061
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

Type setup and select firewall tool open required ports from menu
__________________
Vivek | My personal blog
Linux Evangelist
Play hard stay cool
Reply With Quote
  #3 (permalink)  
Old 07-23-2007, 04:40 AM
Junior Member
User
 
Join Date: Jul 2007
My distro: Gentoo
Posts: 1
Rep Power: 0
_AA_ is on a distinguished road
Default

iptables -t filter -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -t filter -A INPUT -p tcp --dport 22 -m state --state NEW -j ACCEPT
iptables -t filter -A INPUT -p tcp --dport 23 -m state --state NEW -j ACCEPT
iptables -t filter -A INPUT -p tcp --dport 80 -m state --state NEW -j ACCEPT
iptables -t filter -A INPUT -p tcp --dport 443 -m state --state NEW -j ACCEPT
iptables -t filter -A INPUT -m state --state NEW -j DROP


The above will accept incoming connections to the destination ports you specified.

If this was for a firewall machine then you'd want to add the above substituting FORWARD for INPUT.

iptables processes rules from the top down. I.E. traffic destined for ports other than the ones specified will catch on the drop rule.
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Routing tables flushed milank Linux hardware 3 12-24-2007 12:51 PM
Routing Tables flushed milank CentOS / RHEL / Fedora 0 11-06-2007 12:26 AM
Delete all tables mysql under Linux jerry Databases servers 1 06-09-2007 06:50 PM
PhpmyAdmin-Can browse/search some tables, but not others blinton25 Databases servers 1 06-09-2007 12:28 AM
How to List my tables in Oracle database Databases servers 3 12-20-2006 04:25 PM


All times are GMT +5.5. The time now is 02:31 AM.


Powered by vBulletin® Version 3.7.4 - Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36