Skip to main content

TFTP on Mac OS X 10.7 shell script

I've just started getting into Cisco support a little more. It's my goal to eventually specialise (its probably the first time I've found something in I.T. support that I don't eventually get bored with ). Since I've got about 1 of each OS I need make sure I can perform my job on anything. Was working on my macbook pro and needed to download some router configs. Give tftp a kick on Mac OS X 10.7

#!/bin/bash
#* TFTP.sh
#+ A quick script to enable/disable tftp (for use with cisco devices).
#+ Usage: TFTP.sh on

NO_ARGS=0

if [ $# -eq "$NO_ARGS" ] # no arguments?
then
 /bin/echo "Disabling tftp."
 #+ Always unload, just to be on the safe side.
 sudo launchctl unload -w /System/Library/LaunchDaemons/tftp.plist
 #+ Cleanup any files so they aren't floating around ;)
 /bin/echo "Removing default tftp files."
 sudo /bin/rm -f /private/tftpboot/running-config
 sudo /bin/rm -f /private/tftpboot/startup-config
 sudo /bin/rm -f /private/tftpboot/flash
else
 if [ $1 == on ]; then
  /bin/echo "Enabling tftp."
  #+ Load the daemon
  sudo launchctl load -F /System/Library/LaunchDaemons/tftp.plist
  #+ Must be a file to send/receive one. Setup some Cisco defaults.
  /bin/echo "Creating default tftp files."
  sudo touch /private/tftpboot/running-config
  sudo chmod 777 /private/tftpboot/running-config
  sudo touch /private/tftpboot/startup-config
  sudo chmod 777 /private/tftpboot/startup-config
  sudo touch /private/tftpboot/flash
  sudo chmod 777 /private/tftpboot/flash
  pushd /private/tftpboot
  /bin/ls -la /private/tftpboot
 fi
fi

exit 0

Popular posts from this blog

Mac OS X "SOE" Day 7

Page Redirection > continued from day 6... In summary, here is my method for creating a Mac OS X 10.7.3 Standard Operating Environment "SOE" Image. Overview The goal is to create a "MASTER" non-booted SOE that can be used with multiple models and it multiple sites with different local requirements. My intention is to use this "MASTER" image in a manual restore procedure due to the fact netboot facilities cannot be made available to all the sites I support however the DMG files are netboot compatible. Requirements Lion Recovery Disk Assistant v1.0 "TARGET" workstation. A compatible workstation that will be used to install Mac OS X 10.7.3 and capture a DMG image(s). "ADMIN" workstation. A workstation with Disk Utility that you will use to capture your DMG image(s). External storage such as a USB HARD DISK. Setup Downloaded the Lion Recovery Disk Assi...

Mac OS X key-based ssh login

To set up key-based SSH, you must generate the keys the two computers will use to establish and validate the identity of each other. To do this run, the following commands in Terminal: Check to see whether a .ssh folder exists in your home directory by running the command ls -ld ~/.ssh. If .ssh is listed in the output, move to step 2. If .ssh is not listed in the output, run mkdir ~/.ssh and continue to step 2. Run: cd ~/.ssh Run: ssh-keygen -b 1024 -t dsa -f id_dsa -P '' This command generates the public and private keys. The -b flag sets the length of the keys to 1,024-bits, -t indicates to use the DSA hashing algorithm, -f sets the file name as id_dsa, and -P '' sets the private key password to be null. The null private key password allows for automated SSH connections. Run: touch authorized_keys2 Run: cat id_dsa.pub >> authorized_keys2 Run: chmod 400 id_dsa The permissions on the private key must be set so that the file is not world readable. Run...

Mac OS X "SOE" Day 6

Page Redirection > continued from day 5... Continuing on from the "firstboot" phase setup we need to script our "localiser" options. I previously set my build phase to autologin and run the firstboot script, the localiser phase essentially sits there and waits for you to run it. In my case I have an applescript GUI wrapper that requests some info to use in the localisation. I request a TAG number which is an organisational internal number and I also request a user name that will be set as the OWNER. NOTE : I ordered these specifically...not just because it makes sense logically but also technically. For example, setting the Language actually zaps a plist file (.GlobalPreferences) which you need to write to for Locale and Country info. This stuff is going to be totally dependant on your environment, as an example here is what I do. So what's the minimum we need in the "localiser" phase? Depends on how many sites you support,...