Linux Iptables allow or open IMAP server port
The Internet Message Access Protocol (commonly known as IMAP or IMAP4) is an application layer Internet protocol that allows a local client to access e-mail on a remote server. An IMAP protocol is used for e-mail retrieval. Virtually almost all modern e-mail clients and servers support IMAP.
E-mail messages are generally sent to an e-mail server that stores received messages in the recipient's e-mail mailbox. The user later retrieves these messages with either a web browser or an e-mail client that uses one of a number of e-mail retrieval protocols. While some clients and servers preferentially use vendor specific, typically proprietary protocols, most support the Internet standard protocols SMTP for sending e-mail and POP3 and IMAP4 for retrieving e-mail, allowing interoperability with other servers and clients.
Iptables allow or open IMAP server port
Following ports used by default
=> IMAP Port 143
=> SMTP Port 25
You can use iptables to open port 143. Just append following rules to your iptables script. It uses the TCP port 143. Following two iptable rules allows incoming IMAP request on port 143 for server IP address 202.54.1.20 (open port 143):
iptables -A INPUT -p tcp -s 0/0 --sport 1024:65535 -d 202.54.1.20 --dport 143 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A OUTPUT -p tcp -s 202.54.1.20 --sport 143 -d 0/0 --dport 1024:65535 -m state --state ESTABLISHED -j ACCEPT
In order to block port 143 simply use target REJECT instead of ACCEPT in above rules. If you are typing above rules at shell prompt save them:
# /etc/init.d/iptables save
OR
# iptables-save > /path/to/script.sh
E-mail this to a friend
Printable version
You may also be interested in other helpful articles:
- Linux: Iptables # 14 How to allow POP3 server/protocol request
- Linux : Iptables #1 Basic concepts
- How to: Linux flush or remove all iptables rules
- Linux Iptables block all network traffic
- Linux Iptables Firewall: Log IP or TCP Packet Header
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
Tags: imap protocol, imap server, imap4, iptables script, mail retrieval, open port 143, port 143, support imap


Recent Comments
Today ~ 4 Comments
Today ~ 3 Comments
Today ~ 16 Comments
Today ~ 8 Comments
Today ~ 3 Comments