<div dir="ltr"><div><div><div><div>Dear All,<br><br></div>   My name is Rajeev. I have a use case where I need to push the static route from a router to a client machine, I am running the Android in my router. I am using the dhcpd to assign the IP address along with the static route to the client. I found dhcpd is able to send the static route option when I run it on my Linux PC and the dhcp client is able to add the static route in its routing cache. However when I cross compiled the dhcpd for my target (ARM based android ) it doesn't send the static route options except that it sends rest all other options. I have tried with the dhcp-4.1-ESV-R3, dhcp-4.1-ESV-R10, and dhcp-4.2.7 and I found behaviour is same. Below is my dhcpd.conf <br><br>"<br>   subnet 192.168.1.0 netmask 255.255.255.0 {                      <br>   authoritative;                                                    <br>   always-broadcast on;                                              <br>   range 192.168.1.2 192.168.1.2;                              <br>   default-lease-time 120;                                           <br>   max-lease-time 120;                                               <br>   option routers 192.168.1.1;                                    <br>   option ip-forwarding off;                                         <br>   option broadcast-address 100.65.168.243;    <br>   option subnet-mask 255.255.255.252;         <br>   option domain-name-servers 122.175.1.5, 203.145.160.6;<br>   option static-routes 192.168.5.1 192.168.1.10;<br>}      <br>"<br><br></div>Can someone point me out what is that I am missing on the target. Command which I uses to launch the dhcps is as follows:<br><br></div><div>dhcpd -cf /tmp/dhcpd.conf -lf /tmp/dhcpd.lease<br></div><div><br></div>Thanks,<br></div>-Rajeev<br> </div>