![]() |
ubuntu.com - launchpad.net - ubuntu help
|
|
|||||||
Hello, Unregistered You are browsing a READ only archive of the main support categories pre 4/21/2008. You will not be able to post or reply any threads in this section.
|
|
x86 64-bit Users For the discussion of Ubuntu on the AMD 64 platform. |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
5 Cups of Ubuntu
![]() |
Netatalk - No encrypted authentication
Hm, I cannot get encrypted authentication into work with netatalk... Some modules seem to be missing in /usr/lib/netatalk/.
The only available ones are uams_gss.so, uams_guest.so, uams_krb4.so (does not work), uams_pam.so, uams_passwd.so. None of them lead to encrypted authentification. So what do I do wrong? |
|
|
|
|
|
#2 |
|
Gee! These Aren't Roasted!
![]() Join Date: Feb 2005
Location: California, USA
Beans: 201
|
Re: Netatalk - No encrypted authentication
It's been a long time since I've used netatalk, but if you are just trying to set up communications between Linux and OS X (no OS 9 or earlier), you might consider using samba instead of netatalk. Both OS X and Linux have good support for samba.
|
|
|
|
|
|
#3 |
|
5 Cups of Ubuntu
![]() |
Re: Netatalk - No encrypted authentication
I read about this. But the issue is that I need access over the internet to my server from Mac OS 9.1 up to X 10.4.3 from several machines.
OK, I have FTP running but it is not that comfortable. Netatalk works over TCP, but IMHO Samba does not? Do I think correctly? |
|
|
|
|
|
#4 | ||
|
Gee! These Aren't Roasted!
![]() Join Date: Feb 2005
Location: California, USA
Beans: 201
|
Re: Netatalk - No encrypted authentication
Quote:
I haven't set up netatalk with encrypted passwords, but maybe the info at http://www.anders.com/projects/netatalk/passwords.html is helpful? (I'm guessing you've already looked at that though.) Quote:
By the way, FTP is not encrypted. You might consider scp/sftp which is part of ssh and is encrypted. There are a number of GUI sftp clients for OS X (e.g., fugu). I don't know of any sftp clients for Mac classic, but NiftyTelnet SSH supports a (clunky) scp client. If none of those methods are sufficient, another way to tranfer files might be to set up apache and webdav on your Linux box and upload/download files via web browsers on the macs. Sorry, I don't think I'm really helping here .... |
||
|
|
|
|
|
#5 |
|
Just Give Me the Beans!
![]() Join Date: Dec 2004
Location: Montreal, Canada
Beans: 46
Edubuntu 6.06
|
Re: Netatalk - No encrypted authentication
We are having the same issues over here : http://www.ubuntuforums.org/showthre...ht=uams_dhx.so
Problem seems to be that the uam necessary for encryption (uams_dhx.so) is not included in the Ubuntu package of Netatalk. If anyone can help us compile it from source, we'd be glad! 'Cause, clear text passwords are not my cup of tea! |
|
|
|
|
|
#6 |
|
Just Give Me the Beans!
![]() Join Date: Dec 2004
Location: Montreal, Canada
Beans: 46
Edubuntu 6.06
|
Re: Netatalk - No encrypted authentication
Bump... Ideas anyone?
I can't turn on a server with clear-text passwords. Can't we build the missing module from source? |
|
|
|
|
|
#7 |
|
Gee! These Aren't Roasted!
![]() Join Date: Feb 2005
Location: California, USA
Beans: 201
|
Re: Netatalk - No encrypted authentication
Crossposting.
I just installed netatalk with the following: apt-get source netatalk sudo apt-get build-dep netatalk sudo apt-get install cracklib2-dev cd netatalk-2.0.3 DEB_BUILD_OPTIONS=ssl debuild sudo dpkg -i ../netatalk-*.deb I think the passwords are being sent encrypted. tcpflow indicates that the password was being sent "AFP3.1.DHCAST128". It looks like directory contents (ls) is sent clear text, but file contents is sent encrypted. |
|
|
|
|
|
#8 | |
|
Just Give Me the Beans!
![]() Join Date: Dec 2004
Location: Montreal, Canada
Beans: 46
Edubuntu 6.06
|
Re: Netatalk - No encrypted authentication
Quote:
Code:
sh: dpkg-source: command not found Code:
sudo apt-get build-dep netatalk |
|
|
|
|
|
|
#9 | |
|
Just Give Me the Beans!
![]() Join Date: Dec 2004
Location: Montreal, Canada
Beans: 46
Edubuntu 6.06
|
Re: Netatalk - No encrypted authentication
Quote:
apt-get source netatalk OK, I guess. dpkg command not found error sudo apt-get build-dep netatalk OK, aside from lots of non-authenticated packages sudo apt-get install cracklib2-dev OK, same cd netatalk-2.0.3 What, where? DEB_BUILD_OPTIONS=ssl debuild Where do I define this? sudo dpkg -i ../netatalk-*.deb The issue I now have, which is a real noob one : where is that directory? In the current directory, there are three files (netatalk_2.0.3-1ubuntu1.diff.gz, netatalk_2.0.3-1-1ubuntu1.dsc and netatalk_2.0.3.orig.tar.gz). No Netatalk directory. I know it's somewhere, but I can't remember where. And the build options? What are they? Thanks for your time! |
|
|
|
|
|
|
#10 |
|
Gee! These Aren't Roasted!
![]() Join Date: Feb 2005
Location: California, USA
Beans: 201
|
Re: Netatalk - No encrypted authentication
>apt-get source netatalk OK, I guess. dpkg command not found error
dpkg-source command not found? 'sudo apt-get install dpkg-dev'. (By the way, to find out what package dpkg-source is in, run 'dpkg -S dpkg-source'.) If the error was that the package was not found, you'll need to add universe to your repositories. (Should have documented this for the sake of completeness.) Add the following lines to your /etc/apt/sources.list: Code:
deb-src http://us.archive.ubuntu.com/ubuntu breezy universe deb-src http://security.ubuntu.com/ubuntu breezy-security universe > sudo apt-get build-dep netatalk OK, aside from lots of non authenticated packages > sudo apt-get install cracklib2-dev OK, same Without knowing what specific errors you were getting, this is probably okay. > cd netatalk-2.0.3 What, where? 'apt-get source netatalk' just put it in my current directory. I have that directory and the three netatalk files you mentioned. > DEB_BUILD_OPTIONS=ssl debuild Where do I define this? You just run it. That sets the $DEB_BUILD_OPTIONS environment variable and runs debuild (which reads the environment variable). I copied the command from netatalk-2.0.3/debian/README.Debian. >sudo dpkg -i ../netatalk-*.deb > The issue I now have, which is a real noob one : where is that directory? > In the current directory, there are three files > (netatalk_2.0.3-1ubuntu1.diff.gz, netatalk_2.0.3-1-1ubuntu1.dsc and > netatalk_2.0.3.orig.tar.gz). No Netatalk directory. I know it's somewhere, > but I can't remember where. > And the build options? What are they? See above. > Thanks for your time! Hope it works for you. BTW, I'm running this on breezy powerpc. |
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|