<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Nefaria.com &#187; iptables</title>
	<atom:link href="http://nefaria.com/tag/iptables/feed/" rel="self" type="application/rss+xml" />
	<link>http://nefaria.com</link>
	<description>☠ ☠ ☠ ☠ ☠ ☠</description>
	<lastBuildDate>Wed, 31 Aug 2011 16:12:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Alternate SMTP port with iptables</title>
		<link>http://nefaria.com/2009/09/alternate-smtp-port-with-iptables/</link>
		<comments>http://nefaria.com/2009/09/alternate-smtp-port-with-iptables/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 21:04:59 +0000</pubDate>
		<dc:creator>musashi</dc:creator>
				<category><![CDATA[I.T.]]></category>
		<category><![CDATA[e-mail]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[SMTP]]></category>

		<guid isPermaLink="false">http://nefaria.com/?p=696</guid>
		<description><![CDATA[Nowadays, more and more ISPs are blocking outbound port 25 (SMTP) for spam prevention or reduction purposes. This should be of concern to sysadmins who have users scattered across multiple ISPs (such as webhosting services) or corporate sysadmins who maintain e-mail for mobile users, for example. The workaround is to use the mail submission agent [...]]]></description>
			<content:encoded><![CDATA[<p>Nowadays, more and more ISPs are blocking outbound port 25 (SMTP) for spam prevention or reduction purposes. This should be of concern to sysadmins who have users scattered across multiple ISPs (such as webhosting services) or corporate sysadmins who maintain e-mail for mobile users, for example. The workaround is to use the <a href="http://en.wikipedia.org/wiki/Mail_submission_agent">mail submission agent (MSA)</a> port, 587. Most ISPs do not block outbound traffic for this port. On GNU/Linux, we can use <a href="http://www.netfilter.org/">iptables</a> for this task. With a single command, we can configure any inbound traffic, destined for port 587 traffic to be redirected to port 25:</p>
<div class="code_block">
<pre>iptables -t nat -I PREROUTING -p tcp --dport 587 -j REDIRECT --to-port 25</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://nefaria.com/2009/09/alternate-smtp-port-with-iptables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

