<?xml version="1.0" encoding="iso-8859-1"?><!-- generator="b2evolution/2.4.7" -->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title></title>
		<link>http://www.sttproductions.de/blog/blog3.php</link>
		<description></description>
		<language>en-US</language>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<admin:generatorAgent rdf:resource="http://b2evolution.net/?v=2.4.7"/>
		<ttl>60</ttl>
				<item>
			<title>BigBrother BB4 is not mailing</title>
			<link>http://www.sttproductions.de/blog/blog3.php/2010/03/10/bigbrother-bb4-is-not-mailing</link>
			<pubDate>Wed, 10 Mar 2010 15:50:32 +0000</pubDate>			<dc:creator>sttwebs</dc:creator>
			<category domain="main">Linux Troubleshooting</category>			<guid isPermaLink="false">54@http://www.sttproductions.de/blog/</guid>
						<description>&lt;p&gt;Are you still using Big Brother monitoring system (http://www.bb4.org) as I do? Does that old undocumented piece of software send you any notification via mail? Then please check those points:&lt;/p&gt;

&lt;p&gt;1) BB needs the command mail. So make shure that &quot;mailx&quot; or the mail command is installed on your system.&lt;/p&gt;

&lt;p&gt;2) Check the bbsys.local file, if the alias for mail is set. If not, enter this line manually &lt;code&gt;MAIL=&quot;/bin/mail -s&quot;; export MAIL&lt;/code&gt;&lt;br /&gt;
Oh no! But the file tells you not to edit it by hand!?!... Just do it...&lt;/p&gt;

&lt;p&gt;3) Take care of your bbwarnsetup.cfg and bbwarnrules.cfg files&lt;/p&gt;

&lt;p&gt;4) check your logs under ../bbvar/acks/notifications.log&lt;/p&gt;

&lt;p&gt;Enjoy your daily dosis of SPAM &lt;img src=&quot;http://www.sttproductions.de/blog/rsc/smilies/icon_smile.gif&quot; alt=&quot;&amp;#58;&amp;#41;&quot; class=&quot;middle&quot; /&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.sttproductions.de/blog/blog3.php/2010/03/10/bigbrother-bb4-is-not-mailing&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>Are you still using Big Brother monitoring system (http://www.bb4.org) as I do? Does that old undocumented piece of software send you any notification via mail? Then please check those points:</p>

<p>1) BB needs the command mail. So make shure that "mailx" or the mail command is installed on your system.</p>

<p>2) Check the bbsys.local file, if the alias for mail is set. If not, enter this line manually <code>MAIL="/bin/mail -s"; export MAIL</code><br />
Oh no! But the file tells you not to edit it by hand!?!... Just do it...</p>

<p>3) Take care of your bbwarnsetup.cfg and bbwarnrules.cfg files</p>

<p>4) check your logs under ../bbvar/acks/notifications.log</p>

<p>Enjoy your daily dosis of SPAM <img src="http://www.sttproductions.de/blog/rsc/smilies/icon_smile.gif" alt="&#58;&#41;" class="middle" /></p><div class="item_footer"><p><small><a href="http://www.sttproductions.de/blog/blog3.php/2010/03/10/bigbrother-bb4-is-not-mailing">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.sttproductions.de/blog/blog3.php/2010/03/10/bigbrother-bb4-is-not-mailing#comments</comments>
		</item>
				<item>
			<title>Tomcat and P12</title>
			<link>http://www.sttproductions.de/blog/blog3.php/2010/01/14/tomcat-and-p12</link>
			<pubDate>Thu, 14 Jan 2010 13:31:17 +0000</pubDate>			<dc:creator>sttwebs</dc:creator>
			<category domain="main">Fatwatchers</category>			<guid isPermaLink="false">53@http://www.sttproductions.de/blog/</guid>
						<description>&lt;p&gt;It is possible to use a pkcs12 keystore for Tomcat SSL. In fact, with some parsing and conversion, pfx files can be made into pkcs12 keystores. Follow the following steps:&lt;/p&gt;

&lt;p&gt;Assuming that you have a pfx (Personal Info Exchange) file that contains your CA-signed or self-signed certificate and your private key,&lt;/p&gt;

&lt;p&gt;[One way of getting the pfx file could be by exporting the certificate from the Microsoft Windows Certificate Mangaement console)&lt;/p&gt;

&lt;p&gt;1. (If you already have a pkcs12 pem file, skip #1)&lt;br /&gt;
openssl pkcs12 -in mypfxfile.pfx -out mypemfile.pem&lt;/p&gt;

&lt;p&gt;2.&lt;br /&gt;
openssl pkcs12 -export -in mypemfile.pem -out mykeystore.p12 -name &quot;My Certificate&quot;&lt;/p&gt;

&lt;p&gt;3. (To verify that the keystore exists)&lt;br /&gt;
keytool -v -list -keystore mykeystore.p12 -storetype pkcs12&lt;/p&gt;

&lt;p&gt;Now, you have to tell Tomcat that it's really a pkcs12 file. Edit the SSL connector block of your server.xml:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;port=&quot;8443&quot;&lt;br /&gt;
maxThreads=&quot;150&quot; minSpareThreads=&quot;25&quot; maxSpareThreads=&quot;75&quot;&lt;br /&gt;
enableLookups=&quot;false&quot; disableUploadTimeout=&quot;true&quot;&lt;br /&gt;
acceptCount=&quot;100&quot; debug=&quot;0&quot; scheme=&quot;https&quot; secure=&quot;true&quot;&lt;br /&gt;
clientAuth=&quot;false&quot; sslProtocol=&quot;TLS&quot; &lt;br /&gt;
&lt;br /&gt;
Factory className=&quot;org.apache.coyote.tomcat5.CoyoteServerSocketFactory&quot;&lt;br /&gt;
clientAuth=&quot;false&quot;&lt;br /&gt;
protocol=&quot;TLS&quot;&lt;br /&gt;
keystoreType= &quot;PKCS12&quot;&lt;br /&gt;
keystoreFile=&quot;mykeystore.p12&quot;&lt;br /&gt;
keystorePass=yourKeystorePass/&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Good luck!&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.sttproductions.de/blog/blog3.php/2010/01/14/tomcat-and-p12&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>It is possible to use a pkcs12 keystore for Tomcat SSL. In fact, with some parsing and conversion, pfx files can be made into pkcs12 keystores. Follow the following steps:</p>

<p>Assuming that you have a pfx (Personal Info Exchange) file that contains your CA-signed or self-signed certificate and your private key,</p>

<p>[One way of getting the pfx file could be by exporting the certificate from the Microsoft Windows Certificate Mangaement console)</p>

<p>1. (If you already have a pkcs12 pem file, skip #1)<br />
openssl pkcs12 -in mypfxfile.pfx -out mypemfile.pem</p>

<p>2.<br />
openssl pkcs12 -export -in mypemfile.pem -out mykeystore.p12 -name "My Certificate"</p>

<p>3. (To verify that the keystore exists)<br />
keytool -v -list -keystore mykeystore.p12 -storetype pkcs12</p>

<p>Now, you have to tell Tomcat that it's really a pkcs12 file. Edit the SSL connector block of your server.xml:</p>

<p><code>port="8443"<br />
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"<br />
enableLookups="false" disableUploadTimeout="true"<br />
acceptCount="100" debug="0" scheme="https" secure="true"<br />
clientAuth="false" sslProtocol="TLS" <br />
<br />
Factory className="org.apache.coyote.tomcat5.CoyoteServerSocketFactory"<br />
clientAuth="false"<br />
protocol="TLS"<br />
keystoreType= "PKCS12"<br />
keystoreFile="mykeystore.p12"<br />
keystorePass=yourKeystorePass/<br />
</code></p>

<p>Good luck!</p><div class="item_footer"><p><small><a href="http://www.sttproductions.de/blog/blog3.php/2010/01/14/tomcat-and-p12">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.sttproductions.de/blog/blog3.php/2010/01/14/tomcat-and-p12#comments</comments>
		</item>
				<item>
			<title>Outlook RPC fix</title>
			<link>http://www.sttproductions.de/blog/blog3.php/2009/11/29/outlook-rpc-fix</link>
			<pubDate>Sun, 29 Nov 2009 20:05:31 +0000</pubDate>			<dc:creator>sttwebs</dc:creator>
			<category domain="main">Windows Troubleshooting</category>			<guid isPermaLink="false">52@http://www.sttproductions.de/blog/</guid>
						<description>&lt;p&gt;If Outlook 2003/2007 does not connect to your Exchange 2003 Server anymore, after you connected the last time via &lt;strong&gt;RPC&lt;/strong&gt;, try this REGFIX:&lt;/p&gt;


&lt;p&gt;&lt;code&gt;&lt;br /&gt;
HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\RPC &lt;br /&gt;
&lt;br /&gt;
DWORD &quot;DefConnectOpts&quot; &lt;br /&gt;
Value &quot;0&quot;&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;


&lt;p&gt;Source&lt;br /&gt;
&lt;em&gt;&lt;a href=&quot;http://blogs.technet.com/dmelanchthon/archive/2007/01/26/outlook-2007-an-exchange-2003.aspx&quot;&gt;http://blogs.technet.com/dmelanchthon/archive/2007/01/26/outlook-2007-an-exchange-2003.aspx&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.sttproductions.de/blog/blog3.php/2009/11/29/outlook-rpc-fix&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>If Outlook 2003/2007 does not connect to your Exchange 2003 Server anymore, after you connected the last time via <strong>RPC</strong>, try this REGFIX:</p>


<p><code><br />
HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\RPC <br />
<br />
DWORD "DefConnectOpts" <br />
Value "0"<br />
</code></p>


<p>Source<br />
<em><a href="http://blogs.technet.com/dmelanchthon/archive/2007/01/26/outlook-2007-an-exchange-2003.aspx">http://blogs.technet.com/dmelanchthon/archive/2007/01/26/outlook-2007-an-exchange-2003.aspx</a></em></p><div class="item_footer"><p><small><a href="http://www.sttproductions.de/blog/blog3.php/2009/11/29/outlook-rpc-fix">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.sttproductions.de/blog/blog3.php/2009/11/29/outlook-rpc-fix#comments</comments>
		</item>
				<item>
			<title>DC 2008</title>
			<link>http://www.sttproductions.de/blog/blog3.php/2009/11/27/dc-2008</link>
			<pubDate>Fri, 27 Nov 2009 11:09:56 +0000</pubDate>			<dc:creator>sttwebs</dc:creator>
			<category domain="main">Windows Troubleshooting</category>			<guid isPermaLink="false">51@http://www.sttproductions.de/blog/</guid>
						<description>&lt;p&gt;&lt;a href=&quot;http://blog.dikmenoglu.de/PermaLink,guid,58a3c79f-f34e-4635-bc5f-0bfc67045b91.aspx&quot;&gt;http://blog.dikmenoglu.de/PermaLink,guid,58a3c79f-f34e-4635-bc5f-0bfc67045b91.aspx&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.sttproductions.de/blog/blog3.php/2009/11/27/dc-2008&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p><a href="http://blog.dikmenoglu.de/PermaLink,guid,58a3c79f-f34e-4635-bc5f-0bfc67045b91.aspx">http://blog.dikmenoglu.de/PermaLink,guid,58a3c79f-f34e-4635-bc5f-0bfc67045b91.aspx</a></p><div class="item_footer"><p><small><a href="http://www.sttproductions.de/blog/blog3.php/2009/11/27/dc-2008">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.sttproductions.de/blog/blog3.php/2009/11/27/dc-2008#comments</comments>
		</item>
				<item>
			<title>SSL Stuff</title>
			<link>http://www.sttproductions.de/blog/blog3.php/2009/11/17/ssl-stuff</link>
			<pubDate>Tue, 17 Nov 2009 12:04:29 +0000</pubDate>			<dc:creator>sttwebs</dc:creator>
			<category domain="main">Linux Troubleshooting</category>			<guid isPermaLink="false">50@http://www.sttproductions.de/blog/</guid>
						<description>&lt;p&gt;SSL Server Key generation:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;openssl genrsa -des3 -out server.key 1024&lt;br /&gt;
openssl req -new -key server.key -out server.csr&lt;br /&gt;
cp server.key server.key.org&lt;br /&gt;
openssl rsa -in server.key.org -out server.key&lt;br /&gt;
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;In Apache:&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
SSLEngine on&lt;br /&gt;
SSLCertificateFile /usr/local/apache/conf/ssl.crt/server.crt&lt;br /&gt;
SSLCertificateKeyFile /usr/local/apache/conf/ssl.key/server.key&lt;br /&gt;
SetEnvIf User-Agent &quot;.*MSIE.*&quot; nokeepalive ssl-unclean-shutdown&lt;br /&gt;
CustomLog logs/ssl_request_log \&lt;br /&gt;
   &quot;%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \&quot;%r\&quot; %b&quot;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://www.sttproductions.de/blog/rsc/smilies/graybigeek.gif&quot; alt=&quot;&amp;#56;&amp;#56;&amp;#124;&quot; class=&quot;middle&quot; /&gt;&lt;/p&gt;


&lt;p&gt;Sources:&lt;br /&gt;
&lt;em&gt;&lt;a href=&quot;http://www.akadia.com/services/ssh_test_certificate.html&quot;&gt;http://www.akadia.com/services/ssh_test_certificate.html&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;https://www.sslshopper.com/ssl-converter.html&quot;&gt;https://www.sslshopper.com/ssl-converter.html&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.werthmoeller.de/doc/microhowtos/openssl/&quot;&gt;http://www.werthmoeller.de/doc/microhowtos/openssl/&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;https://knowledge.verisign.com/support/ssl-certificates-support/index?page=content&amp;amp;id=AR198&quot;&gt;https://knowledge.verisign.com/support/ssl-certificates-support/index?page=content&amp;amp;id=AR198&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;https://www.startssl.com/&quot;&gt;https://www.startssl.com/&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.sttproductions.de/blog/blog3.php/2009/11/17/ssl-stuff&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>SSL Server Key generation:</p>

<p><code>openssl genrsa -des3 -out server.key 1024<br />
openssl req -new -key server.key -out server.csr<br />
cp server.key server.key.org<br />
openssl rsa -in server.key.org -out server.key<br />
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt<br />
</code></p>

<p>In Apache:<br />
<code><br />
SSLEngine on<br />
SSLCertificateFile /usr/local/apache/conf/ssl.crt/server.crt<br />
SSLCertificateKeyFile /usr/local/apache/conf/ssl.key/server.key<br />
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown<br />
CustomLog logs/ssl_request_log \<br />
   "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"</code></p>

<p><img src="http://www.sttproductions.de/blog/rsc/smilies/graybigeek.gif" alt="&#56;&#56;&#124;" class="middle" /></p>


<p>Sources:<br />
<em><a href="http://www.akadia.com/services/ssh_test_certificate.html">http://www.akadia.com/services/ssh_test_certificate.html</a><br />
<a href="https://www.sslshopper.com/ssl-converter.html">https://www.sslshopper.com/ssl-converter.html</a><br />
<a href="http://www.werthmoeller.de/doc/microhowtos/openssl/">http://www.werthmoeller.de/doc/microhowtos/openssl/</a><br />
<a href="https://knowledge.verisign.com/support/ssl-certificates-support/index?page=content&amp;id=AR198">https://knowledge.verisign.com/support/ssl-certificates-support/index?page=content&amp;id=AR198</a><br />
<a href="https://www.startssl.com/">https://www.startssl.com/</a></em></p><div class="item_footer"><p><small><a href="http://www.sttproductions.de/blog/blog3.php/2009/11/17/ssl-stuff">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.sttproductions.de/blog/blog3.php/2009/11/17/ssl-stuff#comments</comments>
		</item>
				<item>
			<title>Mac hack</title>
			<link>http://www.sttproductions.de/blog/blog3.php/2009/11/05/mac-hack</link>
			<pubDate>Thu, 05 Nov 2009 11:27:04 +0000</pubDate>			<dc:creator>sttwebs</dc:creator>
			<category domain="main">IT Stuff</category>			<guid isPermaLink="false">49@http://www.sttproductions.de/blog/</guid>
						<description>&lt;p&gt;Don't hack a MAC, hack a PC or your Bank account &lt;img src=&quot;http://www.sttproductions.de/blog/rsc/smilies/icon_wink.gif&quot; alt=&quot;&amp;#59;&amp;#41;&quot; class=&quot;middle&quot; /&gt; &lt;img src=&quot;http://www.sttproductions.de/blog/rsc/smilies/icon_crazy.gif&quot; alt=&quot;&amp;#58;&amp;#99;&amp;#114;&amp;#97;&amp;#122;&amp;#121;&amp;#58;&quot; class=&quot;middle&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Sources:&lt;br /&gt;
&lt;em&gt;&lt;a href=&quot;http://lifehacker.com/348653/install-os-x-on-your-hackintosh-pc-no-hacking-required&quot;&gt;http://lifehacker.com/348653/install-os-x-on-your-hackintosh-pc-no-hacking-required&lt;/a&gt;&lt;br /&gt;
&lt;/em&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.sttproductions.de/blog/blog3.php/2009/11/05/mac-hack&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>Don't hack a MAC, hack a PC or your Bank account <img src="http://www.sttproductions.de/blog/rsc/smilies/icon_wink.gif" alt="&#59;&#41;" class="middle" /> <img src="http://www.sttproductions.de/blog/rsc/smilies/icon_crazy.gif" alt="&#58;&#99;&#114;&#97;&#122;&#121;&#58;" class="middle" /></p>

<p>Sources:<br />
<em><a href="http://lifehacker.com/348653/install-os-x-on-your-hackintosh-pc-no-hacking-required">http://lifehacker.com/348653/install-os-x-on-your-hackintosh-pc-no-hacking-required</a><br />
</em></p><div class="item_footer"><p><small><a href="http://www.sttproductions.de/blog/blog3.php/2009/11/05/mac-hack">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.sttproductions.de/blog/blog3.php/2009/11/05/mac-hack#comments</comments>
		</item>
				<item>
			<title>TCP Tweaks</title>
			<link>http://www.sttproductions.de/blog/blog3.php/2009/10/27/tcp-tweaks</link>
			<pubDate>Mon, 26 Oct 2009 23:00:49 +0000</pubDate>			<dc:creator>sttwebs</dc:creator>
			<category domain="main">IT Stuff</category>
<category domain="alt">Linux Troubleshooting</category>			<guid isPermaLink="false">48@http://www.sttproductions.de/blog/</guid>
						<description>&lt;p&gt;Windows TCP-Tweak:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters. &lt;br /&gt;
REG_DWORD, key &quot;Tcp1323Opts&quot;, value 3&lt;br /&gt;
REG_DWORD, key &quot;GlobalMaxTcpWindowSize&quot;, value e.g. 4000000, decimal&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Linux TCP-Tweak:&lt;code&gt;&lt;br /&gt;
/proc/sys/net/ipv4/tcp_rmem       - memory reserved for TCP rcv buffers&lt;br /&gt;
	/proc/sys/net/ipv4/tcp_wmem       - memory reserved for TCP snd buffers&lt;br /&gt;
&lt;br /&gt;
/proc/sys/net/core/rmem_max       - maximum receive window&lt;br /&gt;
	/proc/sys/net/core/wmem_max       - maximum send window&lt;/code&gt;&lt;/p&gt;


&lt;p&gt;Sources:&lt;br /&gt;
&lt;em&gt;&lt;a href=&quot;http://www.psc.edu/networking/projects&quot;&gt;http://www.psc.edu/networking/projects&lt;/a&gt;&lt;br /&gt;
/tcptune/&lt;/em&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.sttproductions.de/blog/blog3.php/2009/10/27/tcp-tweaks&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>Windows TCP-Tweak:</p>

<p><code>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters. <br />
REG_DWORD, key "Tcp1323Opts", value 3<br />
REG_DWORD, key "GlobalMaxTcpWindowSize", value e.g. 4000000, decimal<br />
</code></p>

<p>Linux TCP-Tweak:<code><br />
/proc/sys/net/ipv4/tcp_rmem       - memory reserved for TCP rcv buffers<br />
	/proc/sys/net/ipv4/tcp_wmem       - memory reserved for TCP snd buffers<br />
<br />
/proc/sys/net/core/rmem_max       - maximum receive window<br />
	/proc/sys/net/core/wmem_max       - maximum send window</code></p>


<p>Sources:<br />
<em><a href="http://www.psc.edu/networking/projects">http://www.psc.edu/networking/projects</a><br />
/tcptune/</em></p><div class="item_footer"><p><small><a href="http://www.sttproductions.de/blog/blog3.php/2009/10/27/tcp-tweaks">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.sttproductions.de/blog/blog3.php/2009/10/27/tcp-tweaks#comments</comments>
		</item>
				<item>
			<title>Linux joins Windows ADS</title>
			<link>http://www.sttproductions.de/blog/blog3.php/2009/10/22/title</link>
			<pubDate>Thu, 22 Oct 2009 13:49:48 +0000</pubDate>			<dc:creator>sttwebs</dc:creator>
			<category domain="main">IT Stuff</category>			<guid isPermaLink="false">47@http://www.sttproductions.de/blog/</guid>
						<description>&lt;p&gt;Join Linux to ADS:&lt;br /&gt;
- smb.conf&lt;br /&gt;
- krb5.conf&lt;br /&gt;
- nsswitch.conf&lt;/p&gt;

&lt;p&gt;On windows side:&lt;br /&gt;
Security Policy for Singing&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.sttproductions.de/blog/blog3.php/2009/10/22/title&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>Join Linux to ADS:<br />
- smb.conf<br />
- krb5.conf<br />
- nsswitch.conf</p>

<p>On windows side:<br />
Security Policy for Singing</p><div class="item_footer"><p><small><a href="http://www.sttproductions.de/blog/blog3.php/2009/10/22/title">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.sttproductions.de/blog/blog3.php/2009/10/22/title#comments</comments>
		</item>
			</channel>
</rss>
