Just a nix noob here trying to learn the ways of the command line, I had previously had this small script working that would enable the 252 option of dhcp to keep my windows 7 box from always searching for a proxy address and now i have updated to the newest beta of the merlin build and it doesn't seem to be working anymore.
#!/bin/sh
echo "dhcp-option=lan,252,"\n"" >> /tmp/etc/dnsmasq.conf
killall dnsmasq
dnsmasq -c 1500 --log-async -n
I reboot my router and check the dnsmasq.conf and the dhcp option isn't in there.
is this a possible permission issue since the script was built with a previous version of firmware?
#!/bin/sh
echo "dhcp-option=lan,252,"\n"" >> /tmp/etc/dnsmasq.conf
killall dnsmasq
dnsmasq -c 1500 --log-async -n
I reboot my router and check the dnsmasq.conf and the dhcp option isn't in there.
is this a possible permission issue since the script was built with a previous version of firmware?