Thread: DHCP Server
View Single Post
  #2   (View Single Post)  
Old 25th September 2008
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,983
Default

Without more information, I can only guess a misconfigured /etc/hostname.<interface> file.

Here is the applicable code from the 4.3-release version of /etc/netstart:
Code:
        "dhcp")
            [ "$name" = "NONE" ] && name=
            [ "$mask" = "NONE" ] && mask=
            [ "$bcaddr" = "NONE" ] && bcaddr=
            cmd="ifconfig $if $name $mask $bcaddr $ext1 $ext2 down"
            cmd="$cmd;dhclient $if"
Reply With Quote