Blog Stats
  • Posts - 94
  • Articles - 0
  • Comments - 10
  • Trackbacks - 0

 

Friday, September 25, 2009

October 2009 IT Toolbox Column for TechNet Magazine

The October 2009 issue of TechNet Magazine is out on the website. Check out my IT Toolbox column here:

October 2009 TechNet Magazine IT Toolbox

In this issue I covered:
  • AxCrypt: Secure Sensative Information
  • KaVoom! KVM: Software-based KVM Switch
  • (Book) Malware Forensics: Investigating and Analyzing Malicious Code
  • filext.com: Extension Discovery Site
Check it out and let me know what you think!

And if you have a tool you want to see me review, please suggest it to me here: tntools@microsoft.com.

Apache/Subversion: SSL negotiation failed: SSL error: parse tlsext

If you are getting an error like the following when you do a large import or commit to Subversion over SSL:

Error: MKCOL of  
'/repository/!svn/wrk/{GUID}/project/trunk/folder/file.ext'
SSL negotiation failed: SSL error: parse tlsext (https://mysite.com)


try modifying your Apache server's httpd.conf, changing the SSLProtocol line like this:


#SSLProtocol -ALL +SSLv3 +TLSv1
SSLProtocol -ALL +SSLv3

Of course this will only work if you don't need TLSv1 :)

(I ran into this while running Subversion 1.6.5 over Apache 2.2.13 on Windows 2003 Server)

 

Hope this helps!

 

 

Copyright © Greg Steen