开发板上的dhcp 获取ip方式

**************dhcp
开发板上使用的udhcpc udhcpd两个工具都可以从busybox里面直接编译得来
PC上使用的dhcp工具可以使用 sudo  apt-get install udhcpc
                                                 sudo apt-get install udhcpd

用PC做udhcpd服务器,开发板从PC获取ip(反过来是一样的)
PC上: sudo vi /etc/udhcpd.conf
udhcpd.conf在busybox里面有一个原型: busybox-1.14.2/examples/udhcp/udhcpd.conf
修改三个地方:start/end/option dns

start   192.168.4.200   #default: 192.168.0.20
end     192.168.4.254   #default: 192.168.0.254
//分配ip的区间
#Examles
opt dns 192.168.1.2 192.168.1.10
option  subnet  255.255.255.0
opt router  192.168.1.2
opt wins    192.168.1.10
option  dns 192.168.4.127   # appened to above DNS servers for a total of 3
option  domain  local
option  lease   864000
//option  dns 192.168.4.127做服务器的机器的ip地址

用网线把PC和开发板连接起来。
好了之后  sudo udhcpd
开发板上运行    udhcpc  这样就可以从PC获取ip

你可能感兴趣的:(linux)