Linux - Security This forum is for all security related questions.
Questions, tips, system compromises, firewalls, etc. are all included here. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
05-15-2007, 03:16 AM
|
#1
|
Member
Registered: Jul 2004
Location: VIC, Australia
Distribution: RHEL, CentOS, Ubuntu Server, Ubuntu
Posts: 364
Rep:
|
iptables rule help
We have several networks such as:
192.168.100.0/24
192.168.212.0/24
192.168.222.0/24
192.168.201.0/255.255.255.252
Our mail server has IP address 192.168.201.2
Now we only want to allow 192.168.100.0/24 to access port 25 of 192.168.201.2, and no other network.
What would be the rule (in iptables syntax)?
The mail server currently has no firewall rules.
|
|
|
05-15-2007, 05:48 AM
|
#2
|
Member
Registered: Jun 2006
Location: Belarus
Distribution: Debian GNU/Linux testing/unstable
Posts: 471
Rep:
|
RTFM!
man iptables!
|
|
|
05-15-2007, 06:13 AM
|
#3
|
LQ Guru
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678
Rep:
|
That's a bit tough - as far as manuals go, iptables is hard to get.
Have a look at
http://iptables-tutorial.frozentux.net/
|
|
|
05-15-2007, 07:19 AM
|
#4
|
LQ Guru
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870
|
if the rule is to be run on the mail server itself, it would be like:
Code:
iptables -A INPUT -p TCP -s 192.168.100.0/24 --dport 25 -j ACCEPT
this assumes a policy of DROP, of course...
if your policy is ACCEPT for some reason, then just tweak it like:
Code:
iptables -A INPUT -p TCP -s ! 192.168.100.0/24 --dport 25 -j DROP
|
|
|
All times are GMT -5. The time now is 10:33 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|