MacTech Network:   MacForge.net  |  Computer Memory  |  Register Domains  |  Printer Supplies  |  Cables  |  iPod Deals  |  Mac Deals  |  Mac Book Shelf


  MacTech Magazine

The journal of Macintosh technology

 
 
FAXstf

Magazine In Print
  About MacTech  
  Home Page  
  Subscribe  
  Archives DVD  
  Submit News  
  Submit a Tip!  
  Get a copy of MacTech RISK FREE  
Google
Entire Web
mactech.com
Mac Community
More...
MacTech Central
  by Category  
  by Company  
  by Product  
MacTech News
  MacTech News  
  Previous News  
  MacTech RSS  
Article Archives
  Show Indices  
  by Volume  
  by Author  
  Source Code FTP  
Inside MacTech
  Writer's Kit  
  Editorial Staff  
  Editorial Calendar  
  Back Issues  
  Advertising  
Contact Us
  Customer Service  
  MacTech Store  
  Legal/Disclaimers  
  Webmaster Feedback  
ADVERTISEMENT
Click Here

Volume Number: 22
Issue Number: 5
Column Tag: Programming

Tweak Tiger's TFTP

by Aaron Adams

As the networking infrastructure guy, I occasionally have the need to update hardware or backup settings using the TFTP protocol. Tweaking TFTP in Panther required editing a file in /etc/xinetd.d/ that no longer exists in Tiger since xinetd has been deprecated in favor of launchd. No worries, however, because you can make TFTP work in Tiger. It's just that the steps to get there are a bit different. It requires use of the Terminal, but you're good enough, you're smart enough, and... we'll just leave it at that.

Tiger starts the TFTP service based on settings specified in the file /System/Library/LaunchDaemons/tftp.plist. That file contains the command to start the daemon and the optional switches associated with it. By default, the only switch in the plist file is -i /private/tftpboot, which is separated out into two individual program arguments, but is logically a single option. According to the man page for tftpd, the -i option means "Enable insecure mode, no realpath". In all honesty, I'm not sure what that means precisely, but it sounds like no filesystem path is assigned to where TFTP can read and write files. We can fix that.

The first thing to do is make a backup copy of the original tftp.plist file because if bad things happen, we want the ability to start over clean. In the Terminal, copy it with this line:

sudo cp /System/Library/LaunchDaemons/tftp.plist ~/Desktop

Let the editing begin!

sudo nano /System/Library/LaunchDaemons/tftp.plist

Find this line:

<string>-i</string>

and replace -i with -s.

Find this line:

<string>/private/tftpboot</string>

and replace it with

<string>/path/where/you/want/files/saved</string> 

(/Users/yourname/Public might be a good choice.)

Press control-x to exit and save the plist file.

Start up the TFTP server:

sudo service tftp start

If you're using Mac OS X's built-in firewall, be sure to open UDP port 69.

TFTP is purposely a dumb protocol. It requires no authentication, so it can't create files and can only write to files that are publicly writable. So before any data can be saved via tftp to a file, that file has to be created and made publicly writable at the local machine by the user.

To create a file:

touch /path/to/file.name

And then to make it publicly writable:

chmod 777 /path/to/file.name

After a hard day of TFTPing, the service can be stopped with:

sudo service tftp stop

Aaron Adams



Click here to find out more about our best subscription bundle deal ever!
2 years of the magazine, and the all new MacTech DVD ... at 70% off!



Click on the cover to
see this month's issue!

TRIAL SUBSCRIPTION
Get a RISK-FREE subscription to the only technical Mac magazine!
 
 


MacTech Magazine. www.mactech.com
Toll Free 877-MACTECH, Outside US/Canada: 805-494-9797

Register Low Cost (ok dirt cheap!) Domain Names in the MacTech Domain Store. As low as $1.99!
Save on brand compatible and name brank ink jet and laser supplies.
Save on long distance * Upgrade your Computer
Movies with No Late Fees!

See local info about Westlake Village
SJ * BRJ * BJ * OJ * NITS
Staff Site Links



All contents are Copyright 1984-2007 by Xplain Corporation. All rights reserved.

MacTech is a registered trademark of Xplain Corporation. Xplain, Video Depot, Movie Depot, Palm OS Depot, Explain It, MacDev, MacDev-1, THINK Reference, NetProfessional, NetProLive, JavaTech, WebTech, BeTech, LinuxTech, Apple Expo, MacTech Central and the MacTutorMan are trademarks or service marks of Xplain Corporation. Sprocket is a registered trademark of eSprocket Corporation. Other trademarks and copyrights appearing in this printing or software remain the property of their respective holders.