<?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>Florent Clairambault &#187; xinetd</title>
	<atom:link href="http://florent.clairambault.fr/tag/xinetd/feed" rel="self" type="application/rss+xml" />
	<link>http://florent.clairambault.fr</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 19:56:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19719</generator>
		<item>
		<title>Redirect port on Linux</title>
		<link>http://florent.clairambault.fr/redirect-port-on-linux?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=redirect-port-on-linux</link>
		<comments>http://florent.clairambault.fr/redirect-port-on-linux#comments</comments>
		<pubDate>Mon, 08 Feb 2010 20:00:17 +0000</pubDate>
		<dc:creator>Florent Clairambault</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[port redirect]]></category>
		<category><![CDATA[xinetd]]></category>

		<guid isPermaLink="false">http://florent.clairambault.fr/?p=2325</guid>
		<description><![CDATA[Sometimes, you just need to redirect a port on Linux. The solution I could find is to add an entry into xinetd. Here is a sample /etc/xinetd.d file I have, it just redirects the 587 (tcp) port to the 993 port of gmail&#8217;s servers. I have to do this because Virgin Mobile France blocks the [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes, you just need to redirect a port on Linux. The solution I could find is to add an entry into xinetd. Here is a sample /etc/xinetd.d file I have, it just redirects the 587 (tcp) port to the 993 port of gmail&#8217;s servers. I have to do this because Virgin Mobile France blocks the 993 tcp port.<br />
If you&#8217;re in the same situation, you can use my server to access you gmail IMAP access. You just have to set the server name to &#8220;webingenia.com&#8221; and the port to &#8220;587&#8243;.</p>

<div class="wp_codebox"><table><tr id="p23252"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="code" id="p2325code2"><pre class="txt" style="font-family:monospace;">service submission
{
        disable = no
        flags = REUSE
        port = 587
        socket_type = stream
        protocol = tcp
        user = root
        redirect = 74.125.45.109 993
        #server = /usr/bin/nc
        #serer_args = 74.125.45.109 993
        wait = no
}</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://florent.clairambault.fr/redirect-port-on-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/13 queries in 0.004 seconds using disk: basic
Object Caching 375/387 objects using disk: basic

Served from: florent.clairambault.fr @ 2012-02-07 10:43:10 -->
