1. How to allow traffic for a specific subnet?
iptables -A INPUT -s 192.168.1.0/24 -j ACCEPT
• Explanation:
• 192.168.1.0/24: Matches all…
1. How to allow traffic for a specific subnet?
iptables -A INPUT -s 192.168.1.0/24 -j ACCEPT
• Explanation:
• 192.168.1.0/24: Matches all…Continue reading on Medium » Read More Linux on Medium
#linux