Jeff,
We first configured the interface to use dhcp, for that we modified the file /etc/network/interfaces, like this:
auto eth0
iface eth0 inet dhcp
We are not using any aditional script, i suppose udhcpc is using it's default script. Using ps -ef, i got that the udhcpc was started with these parameters:
udhcpc -R -n -p /var/run/udhcpc.eth0.pid -i eth0
The contents of the udhcpd.conf are:
start 192.168.2.100
end 192.168.2.254
interface eth0
option subnet 255.255.255.0
option router 192.168.2.1
option dns 8.8.8.8 # google's DNS server
And the udhcpc default script file:
#!/bin/sh
exec run-parts -a “$1” /etc/udhcpc.d
I think we are using the udhcpc client, is the only dhcp client on the conduit.