Bitcoin Forum
May 21, 2024, 05:00:47 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 [22] 23 24 25 26 27 28 »
  Print  
Author Topic: [DEVICE] SimpleRigResetter - Auto reboot crashed rigs - Extension Boards !!!  (Read 53046 times)
tytanick (OP)
Legendary
*
Offline Offline

Activity: 2660
Merit: 1096


Simplemining.net Admin


View Profile WWW
October 20, 2017, 12:08:39 PM
 #421

I'm not sure how your RMA process works but I may have to buy another and wait for it to arrive before sending in this one.   I don't have many problems but when I do I need the machines reset asap.
If there is broken unit then it will be replaced by new one or ther will be made full refund including shipping costs from you to us.
We have not much cases, like less than 1% of devices with some problem like one port not working or one other strange problem.
From i remember tht would be only third device that had any problems Smiley the many more sold didn had any problems.
So if you will get second device and you will see that there is definitly problem with the first one then no problem.
Just write to shop@simplemining.net and we will solve your problem Smiley
No need to worry.

Also about Extension boards.
We finally made and fully tested 4th extension board prototype that finally dont have any flaws.
Now we ordered production line and production of first batch will be done in about 40-60 days.
Once i will have poduction units and they will be again tested, i will start sale process Smiley
Sorry it took so long but i want to sell only 100% good product.
With new extension boards there will be also new firmware for SRRv1 and SRRv2 with more features Smiley
Once this all process will be done i will try to send everyone email about new firmwre for SRR Smiley

Manage your GPU farm the easy way with Mining OS (30 days free):  SimpleMining.net
Support available at Discord: https://simplemining.net/page/discord and admin@simplemining.net
Bitcointalk thread: https://bitcointalk.org/index.php?topic=1541084.0
burnhardzx1
Member
**
Offline Offline

Activity: 83
Merit: 10

NYXCOIN - The future of Investment and eCommerce


View Profile
October 20, 2017, 01:10:27 PM
 #422

my SSR delivered and all is good. i'll recommend it to all my friends, thank you so much for your quick response this is really much appreciated. cant wait for expansion board...

NYXCOIN - The future of Investment and eCommerce - NYXCOIN
▬▬▬▬ AsicResistant ┃ InstantSend ┃ PrivatSend ┃ Investment ┃ Masternode ▬▬▬▬
BitcoinTalk • Twitter • Facebook • Slac • Discord • Github
readysetgo
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
October 30, 2017, 08:51:36 AM
 #423

i have been using the v1 device for some time and it works great.

is there a way to control it without the windows client? I've seen that in the linux-agent script it is possible to send a command string to the device. Would it be possible to send a switch on/off command to it?

the code part is (maybe change the "action"?) from the file "SRR-Agent-Linux-v2.sh":
Code:
srrSlot=`printf %02X $(( ${srrSlot} - 1 ))`
firstByte="FF"
byteCount="0008"
action="55"
mac="485053$srrSerial"

checksum=`printf %02X $(( (0x${byteCount:0:2} + 0x${byteCount:2:2} + 0x$action + 0x${mac:0:2} + 0x${mac:2:2} + 0x${mac:4:2} + 0x${mac:6:2} + 0x${mac:8:2} + 0x${mac:10:2} + 0x$srrSlot)%0x100  ))`
packet="$firstByte$byteCount$action$mac$srrSlot$checksum"

it would make scripting the SRR muchmuch easier.
thanks for the help!
tytanick (OP)
Legendary
*
Offline Offline

Activity: 2660
Merit: 1096


Simplemining.net Admin


View Profile WWW
November 18, 2017, 11:10:01 PM
 #424

Here is 3 scripts that you want Smiley


Code:
Turning OFF:
#!/bin/bash

# REQUIRED packages: socat

# INPUTY
serial="800002"
port="5"

serial=`echo $serial | xargs`
port=`echo $port | xargs`
port=`printf %02X $(( ${port} -1 ))`

firstByte="FF"
byteCount="0008"
action="52"
# long action="58"
mac="485053$serial"

checksum=`printf %02X $(( (0x${byteCount:0:2} + 0x${byteCount:2:2} + 0x$action + 0x${mac:0:2} + 0x${mac:2:2} + 0x${mac:4:2} + 0x${mac:6:2} + 0x${mac:8:2} + 0x${mac:10:2} + 0x$port)%0x100  ))`
packet="$firstByte$byteCount$action$mac$port$checksum"
echo "Wysyłam pakiet o następującej zawartości: $packet"

echo -n "$packet" | xxd -r -p |socat - UDP-DATAGRAM:255.255.255.255:1051,broadcast







TUNING ON:
#!/bin/bash

# REQUIRED packages: socat

# INPUTY
serial="800002"
port="5"

serial=`echo $serial | xargs`
port=`echo $port | xargs`
port=`printf %02X $(( ${port} -1 ))`

firstByte="FF"
byteCount="0008"
action="51"
# long action="58"
mac="485053$serial"

checksum=`printf %02X $(( (0x${byteCount:0:2} + 0x${byteCount:2:2} + 0x$action + 0x${mac:0:2} + 0x${mac:2:2} + 0x${mac:4:2} + 0x${mac:6:2} + 0x${mac:8:2} + 0x${mac:10:2} + 0x$port)%0x100  ))`
packet="$firstByte$byteCount$action$mac$port$checksum"
echo "Wysyłam pakiet o następującej zawartości: $packet"

echo -n "$packet" | xxd -r -p |socat - UDP-DATAGRAM:255.255.255.255:1051,broadcast




# Reboot rig

#!/bin/bash

# REQUIRED packages: socat

# INPUTY
serial="800002"
port="5"

serial=`echo $serial | xargs`
port=`echo $port | xargs`
port=`printf %02X $(( ${port} -1 ))`

firstByte="FF"
byteCount="0008"
action="53"
# long action="58"
mac="485053$serial"

checksum=`printf %02X $(( (0x${byteCount:0:2} + 0x${byteCount:2:2} + 0x$action + 0x${mac:0:2} + 0x${mac:2:2} + 0x${mac:4:2} + 0x${mac:6:2} + 0x${mac:8:2} + 0x${mac:10:2} + 0x$port)%0x100  ))`
packet="$firstByte$byteCount$action$mac$port$checksum"
echo "Wysyłam pakiet o następującej zawartości: $packet"

echo -n "$packet" | xxd -r -p |socat - UDP-DATAGRAM:255.255.255.255:1051,broadcast

Manage your GPU farm the easy way with Mining OS (30 days free):  SimpleMining.net
Support available at Discord: https://simplemining.net/page/discord and admin@simplemining.net
Bitcointalk thread: https://bitcointalk.org/index.php?topic=1541084.0
mai38
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
November 19, 2017, 12:56:18 AM
 #425

For those who are interested in a SRRV2 Case you can use this RJ45 Panel  with this RJ45 board.  across your local network



KaydenC
Sr. Member
****
Offline Offline

Activity: 610
Merit: 265



View Profile WWW
November 25, 2017, 02:46:15 AM
 #426

Any ETA on the expansion boards?
twofreckles
Sr. Member
****
Offline Offline

Activity: 366
Merit: 250


View Profile
November 25, 2017, 09:54:40 AM
 #427

Any ETA on the expansion boards?

Waiting for those expansion boards as well. Resetters working like a charm expansions will only lower the costs.

tytanick (OP)
Legendary
*
Offline Offline

Activity: 2660
Merit: 1096


Simplemining.net Admin


View Profile WWW
December 02, 2017, 06:11:10 PM
 #428

Hello guys.
The production of Extension Boards is still in progress and we should have them in December.
I think that i wont do preorders on Extension Boards and they will be available in shop as soon as EVERYTHING will be tested, checked and software/firmware will be polished Smiley
In the same time as Extension Boards arrive there will be new firmware for SRRv1 and SRRv2 which will bring more features to devices Smiley
There is big demand on Extension Boards so i am expecting big delays in shipping at first.
Once i will have them ready to shipp i will release the in shop Smiley
Ofcourse i will inform all users who requested to be informed via email Smiley

Manage your GPU farm the easy way with Mining OS (30 days free):  SimpleMining.net
Support available at Discord: https://simplemining.net/page/discord and admin@simplemining.net
Bitcointalk thread: https://bitcointalk.org/index.php?topic=1541084.0
adamvp
Hero Member
*****
Offline Offline

Activity: 1246
Merit: 708



View Profile
December 04, 2017, 07:47:42 PM
 #429

Good to see your support, I will consider to buy your equipement when I will decide to expand my mine for sure :-)

I am looking for signature campaign Wink pm me
mo35
Member
**
Offline Offline

Activity: 142
Merit: 10


View Profile
December 11, 2017, 12:37:12 PM
 #430

bump for expansion boards , i hope everything goes well with production , realy could use them like right now Wink
tytanick (OP)
Legendary
*
Offline Offline

Activity: 2660
Merit: 1096


Simplemining.net Admin


View Profile WWW
December 11, 2017, 04:53:56 PM
 #431

Yes i will have them in December but we need to do some more software testing and becasue of XMass i will release them in January 2018.
Also the SRRv2 are almost out of stock because of bitcoin proce sky rocketing so we also waiting for next SSRv2 batch in production which also will be available in January.
Still all looks promising Smiley
I wont make any preorders in December but i will just release Extension Boards in January.

Manage your GPU farm the easy way with Mining OS (30 days free):  SimpleMining.net
Support available at Discord: https://simplemining.net/page/discord and admin@simplemining.net
Bitcointalk thread: https://bitcointalk.org/index.php?topic=1541084.0
tytanick (OP)
Legendary
*
Offline Offline

Activity: 2660
Merit: 1096


Simplemining.net Admin


View Profile WWW
December 18, 2017, 12:21:17 PM
 #432

We are still making those changes so we will release complete list of features in new year.
Also curently we are OUT OF STOCK in SRRv2 Sad
New batch is in production and it will be available in January 2018.
The Extension Boards will be also available in January 2018.

Manage your GPU farm the easy way with Mining OS (30 days free):  SimpleMining.net
Support available at Discord: https://simplemining.net/page/discord and admin@simplemining.net
Bitcointalk thread: https://bitcointalk.org/index.php?topic=1541084.0
tytanick (OP)
Legendary
*
Offline Offline

Activity: 2660
Merit: 1096


Simplemining.net Admin


View Profile WWW
December 21, 2017, 02:15:38 PM
 #433

I just got this reply from one of my SRR customers !
Best of all Tongue

Quote
Greetings,

I received my SRR order with 2 boxes and cables.Thank you.

I am looking forward to setting this up.
Up till now, I have felt like a farmer checking on my cows morning noon and night.

- Scott

Manage your GPU farm the easy way with Mining OS (30 days free):  SimpleMining.net
Support available at Discord: https://simplemining.net/page/discord and admin@simplemining.net
Bitcointalk thread: https://bitcointalk.org/index.php?topic=1541084.0
zoufou
Member
**
Offline Offline

Activity: 114
Merit: 10


View Profile
December 31, 2017, 12:14:48 PM
 #434

Checkout my setup with homemade smart plugs that can restart any rig anytime, here: https://bitcointalk.org/index.php?topic=2663409.msg27162143#msg27162143
VyprBTC
Full Member
***
Offline Offline

Activity: 350
Merit: 100



View Profile
January 02, 2018, 05:58:50 AM
 #435

Currently have 8 rigs set up with it working pretty well - 1 rig keeps rebooting every couple minutes so I just disabled watchdog for now.

Any update on:

  • Expansion board ETA
  • Web portal for remote management


For remote just rolling into TeamViewer for now, I might have a rig freeze like once a month or so so it's not a huge deal.
tytanick (OP)
Legendary
*
Offline Offline

Activity: 2660
Merit: 1096


Simplemining.net Admin


View Profile WWW
January 05, 2018, 06:57:32 PM
 #436

We are still doing it.
There will be much more options/features in next firmware release for SRR Smiley
There will be posibility to turn off watchdog for each slot or for all device Smiley
Once it will be done i will inform you guys. We just need more time Smiley

Manage your GPU farm the easy way with Mining OS (30 days free):  SimpleMining.net
Support available at Discord: https://simplemining.net/page/discord and admin@simplemining.net
Bitcointalk thread: https://bitcointalk.org/index.php?topic=1541084.0
VyprBTC
Full Member
***
Offline Offline

Activity: 350
Merit: 100



View Profile
January 06, 2018, 08:22:06 PM
 #437

Is there a solution for the 1 rig that keeps resetting besides disabling watchdog for all rigs?



I've tried bumping the interval from 200 to 250 to 350 just keeps resetting that 1 every 200/250/350. Tried deleting, redoing the config, rewriting, nothing so far.
twofreckles
Sr. Member
****
Offline Offline

Activity: 366
Merit: 250


View Profile
January 07, 2018, 08:36:11 AM
 #438

Can't wait to get my hands on it... Got a few of them and they working awesome still more is needed.

yhbae
Newbie
*
Offline Offline

Activity: 119
Merit: 0


View Profile
January 10, 2018, 04:52:00 PM
 #439

I'm about to build a server room in my house down in the basement room. I was planning to place a Netgear Orbi satellite in the room, and connect it to a ethernet switch so that all rigs can have internet. I currently have 33 GPUs (on 6 rigs) running all over my house but I want to expand more.

Does SSR support this configuration? I read somewhere in this thread that using WiFi could be an issue but wasn't sure if this only applies if the rig is directly connected via WiFi adapter.

This device looks very interesting!

Thanks!
tytanick (OP)
Legendary
*
Offline Offline

Activity: 2660
Merit: 1096


Simplemining.net Admin


View Profile WWW
January 10, 2018, 06:18:10 PM
 #440

I'm about to build a server room in my house down in the basement room. I was planning to place a Netgear Orbi satellite in the room, and connect it to a ethernet switch so that all rigs can have internet. I currently have 33 GPUs (on 6 rigs) running all over my house but I want to expand more.

Does SSR support this configuration? I read somewhere in this thread that using WiFi could be an issue but wasn't sure if this only applies if the rig is directly connected via WiFi adapter.

This device looks very interesting!

Thanks!

If this WIFI bridge (i am am thinking right) will pass BROADCAST packets then it shoudl work.
Still wifi is bad - it is always bad, for many years in many systems with many routers i've used - i am jsut saying, WIFI IS BAD Cheesy

The next firmware release that we are polishing will have option of disabling ONLY ONE OR SELECTED rigs from watchdog and not entire device.
There will be many more features but we need to finish it.
Me and my Low level programmer friend are working on this to get on time the firmware and Tool ASAP.
The SRR and Extension Board batch is still producing and i suppose to receive them in about 1-2 weeks.
As i dont like taking preorders i will just release devices as soon as they will be ready.
Now i am thinking that the next real date of restock is about 1 February so 20 more days.


Manage your GPU farm the easy way with Mining OS (30 days free):  SimpleMining.net
Support available at Discord: https://simplemining.net/page/discord and admin@simplemining.net
Bitcointalk thread: https://bitcointalk.org/index.php?topic=1541084.0
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 [22] 23 24 25 26 27 28 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!