nsbin/mac-adresses-csv-to-dhcpd.sh

39 lines
901 B
Bash
Executable File

#!/bin/sh
# Nico Schottelius
# Generate dhcpd.conf from CSV file
# Usage: mac-adresses-csv-to-dhcpd.sh a dryad 192.168.54. 0 2 ./08-12180\ MAC\ Adressen.csv
sep=';'
name='dryad'
hostname="$1"; shift
ipnbase="$1"; shift
ipstart="$1"; shift
field="$1"; shift
file="$1"; shift
awk "-F$sep" 'BEGIN {
hc=1;
}
function mac2dp(mac)
{
i=0;
newmac=""
while (i < 5) {
newmac = sprintf("%s%s:",newmac,substr(mac,(1+i*2),2));
i++;
}
newmac = sprintf("%s%s",newmac,substr(mac,(1+i*2),2));
return newmac;
}
/^S-09/ {
mac = mac2dp($field);
print " host " hostname hc " {\n" \
" hardware ethernet " mac ";\n" \
" fixed-address " ipnbase (ipstart+hc) ";\n" \
" }\n";
hc++;
}' ipnbase="$ipnbase" field="$field" ipstart="$ipstart" hostname="$hostname" < "$file"