Block!
tich13 way to go!
I lurk here everyday and read every post.
Happy 4th to my fellow rebels and happy day to all at the best fucking pools ever created.
Happy days to Kano and CK.
A toast to the best programmers and thinkers who not only implement their own magic but never stop evaluating what else is out there which can be used to give us the top mining experience.
I've always believed simplicity is elegance, and nowhere is it shown more than these two pools.
Thank you to all who contribute, be safe with your family, your crypto family, and your money be it fiat or coin.
Keep poppin these babies so we end up with a gorgeous payout!
Edit:
On a side note to the posts I have read regarding those looking for a way to change frequency on a schedule. I cannot jam something out as fast as most of the people experienced with cron jobs as my background was mainly DOS, and then windows with some old skills with my TI products in the late 80s, but, I do know this can be done using a cron job which can be setup to execute. Avalon makes it even easier through the GUI where they allow you to execute a cron job. Doing it with the limited Bitmain GUI you need to do it through SSH in and editing a couple of files to have this more automated.
I recommend posting a small bounty in the mining software area as I'm sure someone can knock this out quickly enough. Who knows, if you get a quote there may be enough interested people to help go in with you and cover the cost.
It may be something Kano or CK would be able to work in their very busy sleepless schedules once coin became a variable.
Just something to think about, and it never hurts to ask.
Random useful contribution for the kano.is forum regulars, newbies, and lurkers:
My currently active time of day cron based frequency adjustment:
Drops the frequency on a S7-LN to 100M M-F from 4:00PM to 7:00PM
On some linux box on the same network:
crontab -l
# m h dom mon dow command
0 16 * * 1-5 /root/antminer/s7ln_slow.sh
0 19 * * 1-5 /root/antminer/s7ln_full.sh
cat /root/antminer/s7ln_slow.sh
#!/bin/sh
minerip="10.15.20.49"
auth="root:root"
pool1url="stratum.kano.is:3333"
pool1user="vhoang_S7LN"
pool1pw="x"
pool2url="solo.ckpool.org:3333"
pool2user="1ACdGz8jn68wHpknGh86oFXeJV6a2NHuva.1"
pool2pw="y"
pool3url="de.kano.is:3333"
pool3user="vhoang_S7LNd"
pool3pw="z"
freq=100
voltage=0650
beep="false"
/usr/bin/curl -X POST -H 'application/x-www-form-urlencoded' \
--data-urlencode "_ant_pool1url=stratum+tcp://$pool1url" \
--data "_ant_pool1user=$pool1user" \
--data "_ant_pool1pw=$pool1pw" \
--data-urlencode "_ant_pool2url=stratum+tcp://$pool2url" \
--data "_ant_pool2user=$pool2user" \
--data "_ant_pool2pw=$pool2pw" \
--data-urlencode "_ant_pool3url=stratum+tcp://$pool3url" \
--data "_ant_pool3user=$pool3user" \
--data "_ant_pool3pw=$pool3pw" \
--data "_ant_nobeeper=$beep" \
--data '_ant_notempoverctrl=false&_ant_fan_customize_switch=false&_ant_fan_customize_value=' \
--data "_ant_freq=$freq" \
--data "_ant_voltage=$voltage" \
--digest -u "$auth" "http://$minerip/cgi-bin/set_miner_conf.cgi"
cat /root/antminer/s7ln_full.sh
#!/bin/sh
minerip="10.15.20.49"
auth="root:root"
pool1url="stratum.kano.is:3333"
pool1user="vhoang_S7LN"
pool1pw="x"
pool2url="solo.ckpool.org:3333"
pool2user="1ACdGz8jn68wHpknGh86oFXeJV6a2NHuva.1"
pool2pw="y"
pool3url="de.kano.is:3333"
pool3user="vhoang_S7LNd"
pool3pw="z"
freq=700
voltage=0706
beep="false"
/usr/bin/curl -X POST -H 'application/x-www-form-urlencoded' \
--data-urlencode "_ant_pool1url=stratum+tcp://$pool1url" \
--data "_ant_pool1user=$pool1user" \
--data "_ant_pool1pw=$pool1pw" \
--data-urlencode "_ant_pool2url=stratum+tcp://$pool2url" \
--data "_ant_pool2user=$pool2user" \
--data "_ant_pool2pw=$pool2pw" \
--data-urlencode "_ant_pool3url=stratum+tcp://$pool3url" \
--data "_ant_pool3user=$pool3user" \
--data "_ant_pool3pw=$pool3pw" \
--data "_ant_nobeeper=$beep" \
--data '_ant_notempoverctrl=false&_ant_fan_customize_switch=false&_ant_fan_customize_value=' \
--data "_ant_freq=$freq" \
--data "_ant_voltage=$voltage" \
--digest -u "$auth" "http://$minerip/cgi-bin/set_miner_conf.cgi"
Disclaimer: this has been tested on my S7-LN, it probably will not work without significant adjustments for any other models or owners.
If you can't get it to work or question(s), start a different topic for discussion.
Otherwise, enjoy the new found power..(save mode).