nixCraft Linux Forum

nixCraft

Linux / UNIX 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

Linux answers from nixCraft.


Networking, Firewalls and Security No it's not a secret. Talk about firewalls and security issues.

Reply

 

LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 28-06-2007, 06:34 PM
Junior Member
User
 
Join Date: Jun 2007
OS: Debian
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
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
  #2 (permalink)  
Old 29-06-2007, 01:56 AM
nixcraft's Avatar
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
OS: RHEL
Scripting language: Bash and Python
Posts: 2,710
Thanks: 11
Thanked 245 Times in 184 Posts
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 Gite
Linux Evangelist
Be proud RHEL user, and let the world know about your enterprise choices! Join RedHat user group.
Always use CODE tags for posting system output and commands!
Do you run a Linux? Let's face it, you need help
Reply With Quote
  #3 (permalink)  
Old 23-07-2007, 03:40 AM
Junior Member
User
 
Join Date: Jul 2007
OS: Gentoo
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
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


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 Off


Similar Threads

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


All times are GMT +5.5. The time now is 07:59 PM.


Powered by vBulletin® Version 3.8.5 - Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2
©2005-2010 nixCraft. All rights reserved

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 37 38