<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: CIFS with Passthru not working in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/cifs-with-passthru-not-working/m-p/236929#M190059</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you very much for your reply. I tried your steps and, unfortunately, they didn't work. At least not with what I was trying to accomplish. However, we did find out what the problem was!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I noted before that we have all Win7 and Vista machines in our network. Well, I also have a laptop running WinXP that isn't part of the domain. On a whim, I tried mapping an alfresco drive on this laptop, and used the domain authentication (a username/password from our domain which I've never had reason to use on my laptop before). It worked instantly, and I had no problem accessing Alfresco! Bizarre to say the least, but a good clue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My boss spent hours searching the net and eventually found the solution - &lt;/SPAN&gt;&lt;A href="http://blogs.techrepublic.com.com/networking/?p=577" rel="nofollow noopener noreferrer"&gt;http://blogs.techrepublic.com.com/networking/?p=577&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That's it, change the NTLM authentication from the default V2 only to NTLM V1. I'm guessing (I really don't know here) that Alfresco does not support NTLMv2. I didn't even think we were using NTLM at all, given that we have it set to false as per your instructions dranakan, but there you go. If anyone else is having trouble using CIFS in a Win7/Vista environment, give that a try.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Feb 2010 23:18:49 GMT</pubDate>
    <dc:creator>clancydamon</dc:creator>
    <dc:date>2010-02-03T23:18:49Z</dc:date>
    <item>
      <title>CIFS with Passthru not working</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-with-passthru-not-working/m-p/236927#M190057</link>
      <description>Hello. I've been struggling to get this damn thing up and working for almost three weeks now, and each victory leads to two setbacks. I'm trying to run Alfresco 3.2r on a VirtualBox running CentOS 5.4. This VirtualBox is hosted on a PC running Win7 Professional 64-bit. The goal is to create an envir</description>
      <pubDate>Fri, 29 Jan 2010 23:10:18 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-with-passthru-not-working/m-p/236927#M190057</guid>
      <dc:creator>clancydamon</dc:creator>
      <dc:date>2010-01-29T23:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS with Passthru not working</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-with-passthru-not-working/m-p/236928#M190058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is a sample working on RHEL and Centos.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Starting alfresco with another user than root avoid using the standart ports (445, …), that why the forwarding is used (for security reasons, it's better to start alfresco with a no-root user). (&lt;/SPAN&gt;&lt;A href="http://wiki.alfresco.com/wiki/File_Server_Configuration#Running_SMB.2FCIFS_from_a_normal_user_account" rel="nofollow noopener noreferrer"&gt;http://wiki.alfresco.com/wiki/File_Server_Configuration#Running_SMB.2FCIFS_from_a_normal_user_account&lt;/A&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do this (write inside iptables when it's working…) :&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;Forwarding :&lt;/STRONG&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;# Rules for firewall&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; echo 1 &amp;gt; /proc/sys/net/ipv4/ip_forward&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /sbin/modprobe iptable_nat&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /sbin/iptables -t nat -F&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /sbin/iptables -P INPUT ACCEPT&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /sbin/iptables -P FORWARD ACCEPT&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /sbin/iptables -P OUTPUT ACCEPT&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /sbin/iptables -t nat -A PREROUTING -p tcp –dport 445 -j REDIRECT –to-ports 1445&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /sbin/iptables -t nat -A PREROUTING -p tcp –dport 139 -j REDIRECT –to-ports 1139&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /sbin/iptables -t nat -A PREROUTING -p udp –dport 137 -j REDIRECT –to-ports 1137&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /sbin/iptables -t nat -A PREROUTING -p udp –dport 138 -j REDIRECT –to-ports 1138&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /sbin/iptables -t nat -A PREROUTING -p tcp –dport 21 -j REDIRECT –to-ports 1024&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /etc/init.d/network restart&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;STRONG&gt;Cifs configuration :&lt;/STRONG&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;authentication.chain=passthru1:passthru&lt;BR /&gt;&lt;BR /&gt;passthru.authentication.useLocalServer=false&lt;BR /&gt;passthru.authentication.domain=YOURDOMAIN&lt;BR /&gt;passthru.authentication.servers=YOURDOMAIN\\xxx.xxx.xxx.xxx,xxx.xxxx.xxx.xxx&lt;BR /&gt;passthru.authentication.guestAccess=false&lt;BR /&gt;passthru.authentication.defaultAdministratorUserNames=YOURUSER&lt;BR /&gt;#Timeout value when opening a session to an authentication server, in milliseconds&lt;BR /&gt;passthru.authentication.connectTimeout=5000&lt;BR /&gt;#Offline server check interval in seconds&lt;BR /&gt;passthru.authentication.offlineCheckInterval=300&lt;BR /&gt;passthru.authentication.protocolOrder=TCPIP&lt;BR /&gt;passthru.authentication.authenticateCIFS=true&lt;BR /&gt;passthru.authentication.authenticateFTP=true&lt;BR /&gt;ntlm.authentication.sso.enabled=false&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;cifs.enabled=true&lt;BR /&gt;cifs.ServerName=${localname}&lt;BR /&gt;cifs.domain=YOURDOMAIN&lt;BR /&gt;cifs.hostanounce=true&lt;BR /&gt;cifs.broadcast=0.0.0.0&lt;BR /&gt;cifs.tcpipSMB.port=1445&lt;BR /&gt;cifs.ipv6.enabled=false&lt;BR /&gt;cifs.netBIOSSMB.namePort=1137&lt;BR /&gt;cifs.netBIOSSMB.datagramPort=1138&lt;BR /&gt;cifs.netBIOSSMB.sessionPort=1139&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;EM&gt;(change YOURDOMAIN, xxx, YOURUSER)&lt;BR /&gt;YOURDOMAIN\\xxx.xxx.xxx.xxx,xxx.xxxx.xxx.xxx write two times your AD : ex : dom\\10.0.0.1,10.0.0.1&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good luck &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2010 08:44:29 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-with-passthru-not-working/m-p/236928#M190058</guid>
      <dc:creator>dranakan</dc:creator>
      <dc:date>2010-02-01T08:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS with Passthru not working</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-with-passthru-not-working/m-p/236929#M190059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you very much for your reply. I tried your steps and, unfortunately, they didn't work. At least not with what I was trying to accomplish. However, we did find out what the problem was!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I noted before that we have all Win7 and Vista machines in our network. Well, I also have a laptop running WinXP that isn't part of the domain. On a whim, I tried mapping an alfresco drive on this laptop, and used the domain authentication (a username/password from our domain which I've never had reason to use on my laptop before). It worked instantly, and I had no problem accessing Alfresco! Bizarre to say the least, but a good clue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My boss spent hours searching the net and eventually found the solution - &lt;/SPAN&gt;&lt;A href="http://blogs.techrepublic.com.com/networking/?p=577" rel="nofollow noopener noreferrer"&gt;http://blogs.techrepublic.com.com/networking/?p=577&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That's it, change the NTLM authentication from the default V2 only to NTLM V1. I'm guessing (I really don't know here) that Alfresco does not support NTLMv2. I didn't even think we were using NTLM at all, given that we have it set to false as per your instructions dranakan, but there you go. If anyone else is having trouble using CIFS in a Win7/Vista environment, give that a try.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Feb 2010 23:18:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-with-passthru-not-working/m-p/236929#M190059</guid>
      <dc:creator>clancydamon</dc:creator>
      <dc:date>2010-02-03T23:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS with Passthru not working</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-with-passthru-not-working/m-p/236930#M190060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I believe the revised authentication protocols in NTLMv2 prevent "man in the middle" style attacks. Unfortunately this means the Alfresco CIFS implementation is also regarded as a man-in-the-middle, hence passthru NTLMv2 authentication isn't viable.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This should be made clear in the documentation, so I'll make sure the Docs Team are aware.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Feb 2010 23:35:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-with-passthru-not-working/m-p/236930#M190060</guid>
      <dc:creator>mikeh</dc:creator>
      <dc:date>2010-02-03T23:35:02Z</dc:date>
    </item>
  </channel>
</rss>

