flushing iptables

Posted by hazarus, 09-16-2007, 04:34 AM
hello, I keep trying to flush my iptables on my linux server but every time i try to do so my server seems to freeze (i lose access and have to reboot it for it to come back online), how can I go about deleting those ips manually rather than executing the flushing command? what options do I have?

Posted by FirmbIT, 09-16-2007, 06:22 AM
Check /var/log/messages to find out why your system is freezing. also: iptables -D INPUT -s 127.0.0.1 -p tcp --dport 111 -j ACCEPT replace the IP and port with the correct information.

Posted by david510, 09-16-2007, 06:59 AM
You can see the iptables rules inside the file /etc/sysconfig/iptables and delete the entries manually from there.

Posted by case42, 09-16-2007, 09:37 AM
I doubt the system really "freezes" - I suspect what you're doing is flushing all rules permitting you access while the iptables default policy is DROP or REJECT, thus rendering your box inaccessible. Make sure that before flushing the rules, you set the INPUT and OUTPUT policies to ACCEPT, like this: The current policies can be listed with: Check the very first line in the output.

Posted by zacharooni, 09-16-2007, 10:48 AM
Yeah, that's happened to me SO many times.. It's because you're dropping all your traffic coming into and out of the box with a default policy of DROP, meaning no traffic is permitted to go through any way. All you really need to do is iptables -P INPUT ACCEPT && iptables -F

هل استفدت من هذا الجواب؟

 أطبع هذا المقال

اقرأ أيضا

[PHP] - Why forums don't use $_SESSION variables ?

Posted by hadoken, 03-13-2007, 02:46 PMHello, I hope everybody is fine. I take a look on some...

Sanitize issues i think

Posted by rumrunner439, 09-22-2008, 12:22 AMOk Im over having to rename everything in my computer...

Invoking classes via Nested includes (php)

Posted by lifewater, 03-15-2007, 04:00 PMHello, I apologize if this is a repeated question,...

mySQL Caching

Posted by jweeb, 03-10-2010, 10:54 PMHi All, I am new to this. I would like to do a mySQL...

disable php functions?

Posted by Calibaba, 09-15-2007, 06:28 PMDoes the below look good for a private server (linux,...