निम्न को चलाएँ। यह आपके iptables के शीर्ष पर नियम सम्मिलित करेगा और जब तक बाद में किसी अन्य नियम द्वारा नियंत्रित नहीं किया जाता है, तब तक सभी ट्रैफ़िक की अनुमति देगा।
iptables -I INPUT -j ACCEPT
आप निम्नलिखित के साथ अपने पूरे iptables सेटअप को भी फ्लश कर सकते हैं:
iptables -F
iptables -X
iptables -t nat -F
iptables -t nat -X
iptables -t mangle -F
iptables -t mangle -X
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
यदि आप इसे फ्लश करते हैं, तो आप कुछ इस तरह चलाना चाह सकते हैं:
iptables -A INPUT -i lo -j ACCEPT -m comment --comment "Allow all loopback traffic"
iptables -A INPUT ! -i lo -d 127.0.0.0/8 -j REJECT -m comment --comment "Drop all traffic to 127 that doesn't use lo"
iptables -A OUTPUT -j ACCEPT -m comment --comment "Accept all outgoing"
iptables -A INPUT -j ACCEPT -m comment --comment "Accept all incoming"
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT -m comment --comment "Allow all incoming on established connections"
iptables -A INPUT -j REJECT -m comment --comment "Reject all incoming"
iptables -A FORWARD -j REJECT -m comment --comment "Reject all forwarded"
यदि आप अपने ट्रैफ़िक को थोड़ा सुरक्षित रखना चाहते हैं, तो आने वाले सभी नियमों को स्वीकार न करें, या इसे "iptables -D INPUT -j ACCEPT -m टिप्पणी -" "सभी आने वाली स्वीकार करें" के साथ हटा दें, और अधिक जोड़ें विशिष्ट नियम जैसे:
iptables -I INPUT -p tcp --dport 80 -j ACCEPT -m comment --comment "Allow HTTP"
iptables -I INPUT -p tcp --dport 443 -j ACCEPT -m comment --comment "Allow HTTPS"
iptables -I INPUT -p tcp -m state --state NEW --dport 22 -j ACCEPT -m comment --comment "Allow SSH"
iptables -I INPUT -p tcp --dport 8071:8079 -j ACCEPT -m comment --comment "Allow torrents"
नोट: उन्हें नीचे 2 अस्वीकार नियमों से ऊपर होने की आवश्यकता है, इसलिए मैं उन्हें शीर्ष पर सम्मिलित करने के लिए उपयोग करता हूं। या यदि आप मेरे जैसे गुदा हैं, तो लाइन नंबर प्राप्त करने के लिए "iptables -nL --line-नंबर" का उपयोग करें, फिर एक विशिष्ट लाइन नंबर पर एक नियम सम्मिलित करने के लिए "iptables -I INPUT ..." का उपयोग करें।
अंत में, अपना काम सहेजें:
iptables-save > /etc/network/iptables.rules #Or wherever your iptables.rules file is