does anyone know any TFTP server for Mac OS X? maybe there is one build-in?

link|improve this question

70% accept rate
In the text of the question, shouldn't it say "TFTP"? They are different protocols. – benc Apr 7 '10 at 1:51
feedback

2 Answers

up vote 3 down vote accepted

It's there, you just have to enable it:

Starting the TFTP server on Mac OS X Leopard (sudo needed) (Note this does not work with Mac OS X Lion):

  • To start the TFTP server, in the terminal window, type: /sbin/service tftp start
    • Your TFTP default folder path will be: /private/tftpboot
  • To Stop the TFTP server, type: /sbin/service tftp stop

To test you can tftp to localhost, or you could create a test file. In terminal, type:

  • echo "testing" >/private/tftpboot/testfile
  • printf "verbose\ntrace\nget testfile\n" | tftp localhost

TFP Server GUI:

If you're into GUIs, this TFTP server GUI app might work for you: http://ww2.unime.it/flr/tftpserver/

link|improve this answer
feedback

This solution works on Mac OS X Lion.

There already is one:

sudo launchctl load -F /System/Library/LaunchDaemons/tftp.plist
sudo launchctl start com.apple.tftpd

And, assuming you don't have a typo in either your subject or problem description:

sudo launchctl load -F /System/Library/LaunchDaemons/ftp.plist
sudo launchctl start com.apple.ftpd
link|improve this answer
why is the start com.apple.ftpd command needed? – Hawken Apr 21 at 15:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.