Hi samba people, I've installed a samba server v.2.2.1a on a Solaris 2.7. It has ssl support using ssleay 0.9.0b and works as a PDC with some shares. The samba server works fine (I think so) and is configured from the smb.conf to accept two kinds of connections: from clients witch ssl support, a from clients without ssl support. smb.conf: ssl = Yes ssl server cert = /etc/certificates/cacert.pem ssl server key = /etc/certificates/private/cakey.pem ssl CA certDir = /etc/certificates ssl hosts resign = xx.xx.xx.xx The clients are mainly linux machines.
On Thu, 18 Oct 2001, Oscar Guell Perez - Lab. Calculo LSI wrote:> My question is simple. What's wrong? Why I can not mount samba shares > using ssl?smbfs does not support SSL. jerry
On Thu, 18 Oct 2001, Oscar Guell Perez - Lab. Calculo LSI wrote:> My question is simple. What's wrong? Why I can not mount samba shares > using ssl?Not supported by smbfs. If you have ssh access to the server you could tunnel it by: ssh -L 1139:xx.xx.xx.xx:139 xx.xx.xx.xx and in a separate shell: smbmount //patim/soft /tmp/mnt -o username=oskar,ip=127.0.0.1,port=1139 Still not ssl, but it is encrypted if that is what you were looking for. Perhaps there is some ssl tunneling tool that can do the same thing. /Urban