|
How to Accept SMTP Requests for Subnet Only
Hello,
how do I allow ip addresses for subnet 192.165.x.x to access my server via SMTP but any other subnet outside of that group is rejected?
I tried the following syntax:
iptables -I INPUT 1 -s 192.165.0.0/16 -d 192.165.17.3 -p tcp --dport 25 --tcp-flags SYN,RST,ACK SYN -j ACCEPT
iptables -A INPUT -d 192.168.17.3 -j REJECT
Will this work?
Last edited by nytcrwlr70; 07-02-2007 at 04:55 PM.
|