Author

Topic: ANTMINER S2 Discussion and Support Thread - page 166. (Read 355730 times)

hero member
Activity: 635
Merit: 500
its just sad when mining hardware is sitting unused in a UPS depot for an entire weekend

+1

Can't you go to the depo for it. I always do that. When I see customs had cleared, I run to the depo and pick up.

my ups is all sorts of weird. it clears at the airport then moves to a delivery depot about 10km away. UPS does not like to release things until they fulfil the delivery commitment, and in any case the process of picking it up is lengthy PITA. I might give it a try if i get word its in canada for the weekend, but AFAIk it might sit in the airport waiting till monday AM clearance or something else.

Sorry to hear... That sux...

Looks like here in Eu Ups is better...
hero member
Activity: 1372
Merit: 783
better everyday ♥
Hi guys , just wonder with S2 unit how much can make $ per day .Thanks  Huh Tongue

https://bitcoinwisdom.com/bitcoin/calculator

About $30 USD a day.
newbie
Activity: 49
Merit: 0
Any news from Bitmain on the S2 B2 delivery yet?
legendary
Activity: 2128
Merit: 1005
ASIC Wannabe
its just sad when mining hardware is sitting unused in a UPS depot for an entire weekend

+1

Can't you go to the depo for it. I always do that. When I see customs had cleared, I run to the depo and pick up.

my ups is all sorts of weird. it clears at the airport then moves to a delivery depot about 10km away. UPS does not like to release things until they fulfil the delivery commitment, and in any case the process of picking it up is lengthy PITA. I might give it a try if i get word its in canada for the weekend, but AFAIk it might sit in the airport waiting till monday AM clearance or something else.
sr. member
Activity: 379
Merit: 250
its just sad when mining hardware is sitting unused in a UPS depot for an entire weekend

+1

Can't you go to the depo for it. I always do that. When I see customs had cleared, I run to the depo and pick up.

I wish, my local depot claims they do not have a service desk open "after hours and weekends".
hero member
Activity: 635
Merit: 500
its just sad when mining hardware is sitting unused in a UPS depot for an entire weekend

+1

Can't you go to the depo for it. I always do that. When I see customs had cleared, I run to the depo and pick up.
newbie
Activity: 31
Merit: 0
Hi guys , just wonder with S2 unit how much can make $ per day .Thanks  Huh Tongue
sr. member
Activity: 379
Merit: 250
its just sad when mining hardware is sitting unused in a UPS depot for an entire weekend

+1
legendary
Activity: 2128
Merit: 1005
ASIC Wannabe
Well, so I just sent an email to bitmain asking for a tracking number and they answered me that they wont give me a tracking number until 12-13 of April  Sad
 That is because they are late or because they need time to process the tracking numbers as usual ?

Processing. They'll ship everything out on the 10th and 11th, update all the trackings while they're in transit for delivery on Monday. <--- guess based off history.

sounds about right. (Im a little dissapointed they are shipping on a thursday for that reason. Shipping on the 8th or even the 9th would have almost certainly resulted in delivery BEFORE the weekend)
So would shipping it on the 3rd February 2008? The batch isn't due to ship on the 10th, so its shipped on the 10th.
agreed - its just sad when mining hardware is sitting unused in a UPS depot for an entire weekend (typically i order bitmain equipment on a friday or a monday for this reason, and get my gear around wednesday/thursday).  I don't hold it against bitmain, it was clearly specified as by the 10th and I 100% understood that when i ordered
legendary
Activity: 1876
Merit: 1000


Thank you Kano..

as for security.. if someone is on my network close enough to the miners.. I have more issues then just them change my pools....
legendary
Activity: 4592
Merit: 1851
Linux since 1997 RedHat 4
This is news to me...  

the fillowing line is in my init.d file, is this not enough?

config_get _aa default api_allow

Check out lines 76 and 77.... Smiley

EDIT:

http://pastebin.com/cGUkj20L

Is what it should be...

Interesting.. thank you

edit...  now I wish I had put a authorized key on each friken ant!!!

Ok there's no real security issue there - that's the same as I used to have, before I changed them.

Line 75 is a left over from avalon having to initialise the chips and then run cgminer a 2nd time.
On the S1 I think it fails and does nothing.
Edit it and add a '#' in the front to comment it out (that's what I do)

Line 98 is the line that starts cgminer.

So in this case if your api_allow is set it should work fine.
( api-allow is in /etc/config/cgminer )
Line 47 assigns it to _aa

--api-network gets overridden by any value in --api-allow (that's the rule in my code)
legendary
Activity: 1876
Merit: 1000
This is news to me...  

the fillowing line is in my init.d file, is this not enough?

config_get _aa default api_allow

Check out lines 76 and 77.... Smiley

EDIT:

http://pastebin.com/cGUkj20L

Is what it should be...

Interesting.. thank you

edit...  now I wish I had put a authorized key on each friken ant!!!

vip
Activity: 1358
Merit: 1000
AKA: gigavps
This is news to me...  

the fillowing line is in my init.d file, is this not enough?

config_get _aa default api_allow

Check out lines 76 and 77.... Smiley

EDIT:

http://pastebin.com/cGUkj20L

Is what it should be...
legendary
Activity: 4592
Merit: 1851
Linux since 1997 RedHat 4

speaking of S1 code.. when trying to do a switchpool remotely, we are receiving this response:  

Rig: ant2 Message: Access denied to 'switchpool' command

edit:  we have  option api_allow 'W:0/0'
Firstly, don't ever use W:0/0 - it means that anyone who can access your miner can do whatever they like to it
e.g. adding new pools, mining to different users, shutting it down ... etc.

I suspect since I added the API to cgminer ~2.5 years ago, random port scans across the internet to port 4028 have increased Tongue

Anyway,
I can only guess that there is some other option later (in /etc/init.d/cgminer) overriding it.
If there are 2 --api-allow, only the 2nd one is used.
... and FYI (just in case) to add 2 (or more) addresses to --api-allow is like: --api-allow w:127.0.0.1,r:192.168.0/24

Edit: pastebin your /etc/init.d/cgminer in the S1
legendary
Activity: 1876
Merit: 1000
speaking of S1 code.. when trying to do a switchpool remotely, we are receiving this response:  

Rig: ant2 Message: Access denied to 'switchpool' command


edit:  we have  option api_allow 'W:0/0'

I figured this one out yesterday. The option is not being used in /etc/init.d/cgminer  Undecided

You'll need to change this file to make sure the --api-allow is being used. The code is in the line above commented out.

This is news to me... 

the fillowing line is in my init.d file, is this not enough?

config_get _aa default api_allow
vip
Activity: 1358
Merit: 1000
AKA: gigavps
speaking of S1 code.. when trying to do a switchpool remotely, we are receiving this response:  

Rig: ant2 Message: Access denied to 'switchpool' command


edit:  we have  option api_allow 'W:0/0'

I figured this one out yesterday. The option is not being used in /etc/init.d/cgminer  Undecided

You'll need to change this file to make sure the --api-allow is being used. The code is in the line above commented out.
hero member
Activity: 635
Merit: 500
Thanks Kano!

My units won't run hot... ( 4x190cfm)

Edit: Any ideas somebody for higher clocks? How to figure out the codes?
legendary
Activity: 1876
Merit: 1000
Any solution for the high rejected.

I got 1500 accepted 1100 rejected.

(Changing the fans are pain....)
Finally got my hands on the source code.

As mentioned before, the high reject isn't really affecting the hash rate - it's extra shares being sent to the pool.
The actual cause is they've modified the code to bypass the full share difficulty check and do a simple check a 'bit' below required difficulty.
The pools must hate the S2s - they are passing some of the work load of cgminer checking shares, to the pool to do it - to save CPU on the miner.

I don't have an S2 yet ... but should soon. Then I'll be able to work on making the S1 code handle the S2 also (one or the other)
There's no temperature checking in the S2 code, so you should see it simply stop mining or even shutting down if you run it somewhere too hot.

speaking of S1 code.. when trying to do a switchpool remotely, we are receiving this response:  

Rig: ant2 Message: Access denied to 'switchpool' command


edit:  we have  option api_allow 'W:0/0'
legendary
Activity: 4592
Merit: 1851
Linux since 1997 RedHat 4
Any solution for the high rejected.

I got 1500 accepted 1100 rejected.

(Changing the fans are pain....)
Finally got my hands on the source code.

As mentioned before, the high reject isn't really affecting the hash rate - it's extra shares being sent to the pool.
The actual cause is they've modified the code to bypass the full share difficulty check and do a simple check a 'bit' below required difficulty.
The pools must hate the S2s - they are passing some of the work load of cgminer checking shares, to the pool to do it - to save CPU on the miner.

I don't have an S2 yet ... but should soon. Then I'll be able to work on making the S1 code handle the S2 also (one or the other)
There's no temperature checking in the S2 code, so you should see it simply stop mining or even shutting down if you run it somewhere too hot.
hero member
Activity: 635
Merit: 500
Any solution for the high rejected.

I got 1500 accepted 1100 rejected.

(Changing the fans are pain....)
Jump to: