mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-15 02:04:28 +00:00
ece70ad030
git-svn-id: http://svn.code.sf.net/p/netboot65/code@207 93682198-c243-4bdb-bd91-e943c89aac3b
124 lines
3.5 KiB
Ruby
124 lines
3.5 KiB
Ruby
#cartridge offsets:
|
|
# $18=MAC address (6 bytes)
|
|
# $1E=IP address (4 bytes)
|
|
# $22=netmask (4 bytes)
|
|
# $26=gateway (4 bytes)
|
|
# $2A=DNS (4 bytes)
|
|
# $2E=TFTP server (4 bytes)
|
|
|
|
|
|
@cartridge_offsets={
|
|
#symobol => offset, length
|
|
:mac=>[0x18,6],
|
|
:ip=>[0x1e,4],
|
|
:netmask=>[0x22,4],
|
|
:gateway=>[0x26,4],
|
|
:dns=>[0x2a,4],
|
|
:tftp=>[0x2e,4],
|
|
}
|
|
|
|
@progname=File.basename($0)
|
|
def show_options
|
|
puts "valid options are: #{@cartridge_offsets.keys.join(", ")}"
|
|
puts "mac auto will automagically generate a pseudorandom MAC"
|
|
end
|
|
def usage
|
|
puts "#{@progname} <image> <option> <value> [<option> <value> ..]"
|
|
puts "multiple options may be set"
|
|
show_options
|
|
true
|
|
end
|
|
|
|
number_of_options=ARGV.length
|
|
usage && exit unless number_of_options>=3
|
|
usage && exit unless (number_of_options%2) ==1 #must be an odd number of options
|
|
filename=ARGV[0]
|
|
if !(FileTest.file?(filename)) then
|
|
puts "file '#{filename}' not found"
|
|
exit
|
|
end
|
|
|
|
|
|
filebytes=File.open(filename,"rb").read
|
|
|
|
start_of_kipper_cart_image=filebytes.index("80KIPPER")
|
|
if start_of_kipper_cart_image.nil? then
|
|
puts "file '#{filename}' does not appear to be a kipper cartridge image"
|
|
exit
|
|
end
|
|
|
|
|
|
(number_of_options/2).times do |i|
|
|
option=ARGV[i*2+1]
|
|
value=ARGV[i*2+2]
|
|
# puts "#{option} : #{value}"
|
|
offsets=@cartridge_offsets[option.to_sym]
|
|
if offsets.nil? then
|
|
puts "invalid option #{option}"
|
|
show_options
|
|
exit
|
|
end
|
|
option_offset=start_of_kipper_cart_image+offsets[0]-7
|
|
option_length=offsets[1]
|
|
|
|
if option_length==6 then
|
|
if value.downcase=="auto" then
|
|
require 'digest/md5'
|
|
digest = Digest::MD5.digest(Time.now.to_s)
|
|
mac=[0x00,0x80,0x10,digest[0],digest[1],Kernel.rand(255)]
|
|
else
|
|
split_values=value.split(":")
|
|
if (split_values.length!=6) || (split_values[5].nil?) then
|
|
puts "'#{value}' is not a valid MAC address. (e.g. 12:34:56:78:ab:cd)"
|
|
exit
|
|
end
|
|
mac=[]
|
|
6.times do |j|
|
|
mac[j]=split_values[j].hex
|
|
# puts "#{split_values[j]}->#{"%02X" % mac[j]}"
|
|
end
|
|
end
|
|
packed_option=mac.pack("cccccc")
|
|
else #it must be an IP
|
|
split_values=value.split(".")
|
|
if (split_values.length!=4) || (split_values[3].nil?) then
|
|
puts "'#{value}' is not a valid IP format. (e.g. 192.168.1.64)"
|
|
exit
|
|
end
|
|
ip=[]
|
|
4.times do |j|
|
|
ip[j]=split_values[j].to_i
|
|
# puts "#{split_values[j]}->#{ip[j]}"
|
|
if (ip[j]<0) || (ip[j]>255) then
|
|
puts "'#{value}' is not a valid IP format. (e.g. 192.168.1.64)"
|
|
exit
|
|
end
|
|
|
|
end
|
|
packed_option=ip.pack("cccc")
|
|
end
|
|
filebytes[option_offset,option_length]=packed_option
|
|
end
|
|
|
|
filehandle=File.open(filename,"wb")
|
|
filehandle<<filebytes
|
|
filehandle.close
|
|
#-- LICENSE FOR set_ip_config.rb --
|
|
# The contents of this file are subject to the Mozilla Public License
|
|
# Version 1.1 (the "License"); you may not use this file except in
|
|
# compliance with the License. You may obtain a copy of the License at
|
|
# http://www.mozilla.org/MPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS IS"
|
|
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing rights and limitations
|
|
# under the License.
|
|
#
|
|
# The Original Code is netboot65.
|
|
#
|
|
# The Initial Developer of the Original Code is Jonno Downes,
|
|
# jonno@jamtronix.com.
|
|
# Portions created by the Initial Developer are Copyright (C) 2009
|
|
# Jonno Downes. All Rights Reserved.
|
|
# -- LICENSE END --
|