Author

Topic: Claymore's Dual Ethereum AMD+NVIDIA GPU Miner v15.0 (Windows/Linux) - page 981. (Read 6590565 times)

sr. member
Activity: 857
Merit: 262
Hello

Its possible that claymore bat send a email to me when miner stopped?

Thanks

You can execute .bat file in EthMan when miner stopped/disconnected/overheated or its hashrate is low. Probably you can send email from .bat.
Miner itself cannot send email, use pool for it.

Could anyone help here? I'd like to send myself an email from .bat file, but the hint here was "probably you can send", so anyone would give an definite answer if this can be done or perfectly publish a code for .bat file?


The easiest way probably is to use smtplib in python.

Code:

def send_email(user, pwd, recipient, subject, body):
    gmail_user = user
    gmail_pwd = pwd
    FROM = user
    TO = recipient if type(recipient) is list else [recipient]
    SUBJECT = subject
    TEXT = body

    # Prepare actual message
    message = """\From: %s\nTo: %s\nSubject: %s\n\n%s
    """ % (FROM, ", ".join(TO), SUBJECT, TEXT)
    try:
        server = smtplib.SMTP("smtp.gmail.com", 587)
        server.ehlo()
        server.starttls()
        server.login(gmail_user, gmail_pwd)
        server.sendmail(FROM, TO, message)
        server.close()
        print("successfully sent email to: " + recipient +
              " on " + datetime.now().strftime('%Y-%m-%d %H:%M:%S'))
    except:
        print("failed to send mail")
sr. member
Activity: 390
Merit: 250
legendary
Activity: 1564
Merit: 1027
sr. member
Activity: 390
Merit: 250
I can only find V8.0 in the downloads?
legendary
Activity: 1736
Merit: 1006
Hello guys, I have a question. While I am successful mining ETH, I am totally unable to dual mine . Probably is something very stupid I am missing in the options settings, but I am receiving constantly an error from the DCR or LBC pool:

“DCR: Job timeout, disconnect, retry in 20 sec...”

I am introducing as options settings like these:

-wd 1 -r 1 -epool eth.coinmine.pl:4000 -ewal myuser.myworker -epsw mypass -esm 2 -dpool stratum+tcp://dcr-us.coinmine.pl:2222 -dwal myuser.myworker -dpsw mypass -allpools 1

-wd 1 -r 1 -epool eth-eu.dwarfpool.com:8008 -ewal MYWALLET -epsw x -dpool stratum+tcp://dcr-us.coinmine.pl:2222 -dwal myuser.myworker -dpsw mypass -mode 0 -dcoin dcr -allpools 1

-wd 1 -r 1 -epool eth-eu.dwarfpool.com:8008 -ewal MYWALLET -epsw x -dpool stratum+tcp://lbry.suprnova.cc:6256 -dwal myuser.myworker -dpsw fulgor -mode 0 -dcoin lbc -allpools 1

Even using the examples on Claymore's first post with his own wallets I still get those errors

Do you see something wrong that may explain it? Maybe something related to my router or internet provider? :-(

its not you or anything
its everyone having issues with it
i get rejected shares on 3 different pools
tried mutliple settings even took off the overclocking and ran stock still the same issue
so its not just you almost everyone is having the same issue

Thanks, good to know I am not the only one suffering this issue. But as aarons6 says, and many other people in the forum claim, people is being successful double-mining... What is our issue, then?  Huh Huh

here is my bat file
Code:
setx GPU_FORCE_64BIT_PTR 0
setx GPU_MAX_HEAP_SIZE 100
setx GPU_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_SINGLE_ALLOC_PERCENT 100
EthDcrMiner64.exe -epool us2.ethermine.org:4444 -ewal ETH_WALLET -epsw x -dpool stratum+tcp://decred.mine.zpool.ca:5744 -dwal BTC_WALLET -allpools 1

newbie
Activity: 3
Merit: 0
Hello

Its possible that claymore bat send a email to me when miner stopped?

Thanks
Powershell can. Just use the bat to run the shell script.
https://www.howtogeek.com/120011/stupid-geek-tricks-how-to-send-email-from-the-command-line-in-windows-without-extra-software/

Also, on most cell carriers there's a way to email-to-txt

Лecнo бpaт!
(Easy bro!)

sendEmail - Send email from a console near you!
Written by: Brandon Zehm <[email protected]>
http://caspian.dotconf.net/
http://www.tsheets.com/

Just put it in the folder where your sample.bat lives and add a line in that .bat

Emailer\sendEmail.exe -o tls=yes -f SendingEmailAddress -t ReceivingMailAddress -s smtp.OfMailServer:port -xu SendingEmailAddress -xp YourPassword -u "RIGs watcher - %1" -m "Your text %1"
newbie
Activity: 48
Merit: 0
How can i make claymore to list my GPUs in the same order as the pci lanes?
sr. member
Activity: 422
Merit: 270
Hello guys, I have a question. While I am successful mining ETH, I am totally unable to dual mine . Probably is something very stupid I am missing in the options settings, but I am receiving constantly an error from the DCR or LBC pool:

“DCR: Job timeout, disconnect, retry in 20 sec...”

I am introducing as options settings like these:

-wd 1 -r 1 -epool eth.coinmine.pl:4000 -ewal myuser.myworker -epsw mypass -esm 2 -dpool stratum+tcp://dcr-us.coinmine.pl:2222 -dwal myuser.myworker -dpsw mypass -allpools 1

-wd 1 -r 1 -epool eth-eu.dwarfpool.com:8008 -ewal MYWALLET -epsw x -dpool stratum+tcp://dcr-us.coinmine.pl:2222 -dwal myuser.myworker -dpsw mypass -mode 0 -dcoin dcr -allpools 1

-wd 1 -r 1 -epool eth-eu.dwarfpool.com:8008 -ewal MYWALLET -epsw x -dpool stratum+tcp://lbry.suprnova.cc:6256 -dwal myuser.myworker -dpsw fulgor -mode 0 -dcoin lbc -allpools 1

Even using the examples on Claymore's first post with his own wallets I still get those errors

Do you see something wrong that may explain it? Maybe something related to my router or internet provider? :-(

its not you or anything
its everyone having issues with it
i get rejected shares on 3 different pools
tried mutliple settings even took off the overclocking and ran stock still the same issue
so its not just you almost everyone is having the same issue

Thanks, good to know I am not the only one suffering this issue. But as aarons6 says, and many other people in the forum claim, people is being successful double-mining... What is our issue, then?  Huh Huh
legendary
Activity: 1736
Merit: 1006
Does anyone know what the most stable driver version to use for a Windows 10 64bit with dual AMD RX480 video cards is?

im just using the newest drivers that just came out, seems ok.

i underclock my 480s to 1000/2000. it shaves about 10c off the cards with no noticeable decrease in speed.

legendary
Activity: 1736
Merit: 1006
Hello guys, I have a question. While I am successful mining ETH, I am totally unable to dual mine . Probably is something very stupid I am missing in the options settings, but I am receiving constantly an error from the DCR or LBC pool:

“DCR: Job timeout, disconnect, retry in 20 sec...”

I am introducing as options settings like these:

-wd 1 -r 1 -epool eth.coinmine.pl:4000 -ewal myuser.myworker -epsw mypass -esm 2 -dpool stratum+tcp://dcr-us.coinmine.pl:2222 -dwal myuser.myworker -dpsw mypass -allpools 1

-wd 1 -r 1 -epool eth-eu.dwarfpool.com:8008 -ewal MYWALLET -epsw x -dpool stratum+tcp://dcr-us.coinmine.pl:2222 -dwal myuser.myworker -dpsw mypass -mode 0 -dcoin dcr -allpools 1

-wd 1 -r 1 -epool eth-eu.dwarfpool.com:8008 -ewal MYWALLET -epsw x -dpool stratum+tcp://lbry.suprnova.cc:6256 -dwal myuser.myworker -dpsw fulgor -mode 0 -dcoin lbc -allpools 1

Even using the examples on Claymore's first post with his own wallets I still get those errors

Do you see something wrong that may explain it? Maybe something related to my router or internet provider? :-(

its not you or anything
its everyone having issues with it
i get rejected shares on 3 different pools
tried mutliple settings even took off the overclocking and ran stock still the same issue
so its not just you almost everyone is having the same issue

im having really good success on ethermine and zpool.

newbie
Activity: 1
Merit: 0
Does anyone know what the most stable driver version to use for a Windows 10 64bit with dual AMD RX480 video cards is?
newbie
Activity: 16
Merit: 0
Hello

Its possible that claymore bat send a email to me when miner stopped?

Thanks
Powershell can. Just use the bat to run the shell script.
https://www.howtogeek.com/120011/stupid-geek-tricks-how-to-send-email-from-the-command-line-in-windows-without-extra-software/

Also, on most cell carriers there's a way to email-to-txt
sr. member
Activity: 366
Merit: 250
Hello

Its possible that claymore bat send a email to me when miner stopped?

Thanks

You can execute .bat file in EthMan when miner stopped/disconnected/overheated or its hashrate is low. Probably you can send email from .bat.
Miner itself cannot send email, use pool for it.

Could anyone help here? I'd like to send myself an email from .bat file, but the hint here was "probably you can send", so anyone would give an definite answer if this can be done or perfectly publish a code for .bat file?


It can be done - but no, you can't really easily do it from a batch file. You need a lot of software to do it right.

OK, maybe I'm looking at it from wrong perspective Smiley How can I give myself info about rig down (claymore running on windows)?
I know some pools has some email notification once rig goes offline, but not all of them. So is there some easy way to notify myself? Thx in advance.
sr. member
Activity: 366
Merit: 250
Hello

Its possible that claymore bat send a email to me when miner stopped?

Thanks

You can execute .bat file in EthMan when miner stopped/disconnected/overheated or its hashrate is low. Probably you can send email from .bat.
Miner itself cannot send email, use pool for it.

Could anyone help here? I'd like to send myself an email from .bat file, but the hint here was "probably you can send", so anyone would give an definite answer if this can be done or perfectly publish a code for .bat file?
hero member
Activity: 672
Merit: 500
Hello guys, I have a question. While I am successful mining ETH, I am totally unable to dual mine . Probably is something very stupid I am missing in the options settings, but I am receiving constantly an error from the DCR or LBC pool:

“DCR: Job timeout, disconnect, retry in 20 sec...”

I am introducing as options settings like these:

-wd 1 -r 1 -epool eth.coinmine.pl:4000 -ewal myuser.myworker -epsw mypass -esm 2 -dpool stratum+tcp://dcr-us.coinmine.pl:2222 -dwal myuser.myworker -dpsw mypass -allpools 1

-wd 1 -r 1 -epool eth-eu.dwarfpool.com:8008 -ewal MYWALLET -epsw x -dpool stratum+tcp://dcr-us.coinmine.pl:2222 -dwal myuser.myworker -dpsw mypass -mode 0 -dcoin dcr -allpools 1

-wd 1 -r 1 -epool eth-eu.dwarfpool.com:8008 -ewal MYWALLET -epsw x -dpool stratum+tcp://lbry.suprnova.cc:6256 -dwal myuser.myworker -dpsw fulgor -mode 0 -dcoin lbc -allpools 1

Even using the examples on Claymore's first post with his own wallets I still get those errors

Do you see something wrong that may explain it? Maybe something related to my router or internet provider? :-(

its not you or anything
its everyone having issues with it
i get rejected shares on 3 different pools
tried mutliple settings even took off the overclocking and ran stock still the same issue
so its not just you almost everyone is having the same issue
newbie
Activity: 16
Merit: 0
Also, here's a snip of my log of them sending the reboot.bat and restarting the miner
Quote
00:02:52:428   6384   srv pck: 73
00:02:52:429   6384   Remote management: file reboot.bat was uploaded
00:02:52:429   6384   srv bs: 0
00:02:52:429   6384   sent: 440
00:02:53:338   26e0   recv: 48
00:02:53:338   26e0   srv pck: 48
00:02:53:339   26e0   Remote management required restart
00:02:53:339   26e0   Rebooting
newbie
Activity: 16
Merit: 0
One of my miners has been hijacked with Eth Manager  Tongue
his address is daggerhashimoto.usa.nicehash.com:3353 -ewal 1D8J2tkRbt5R7TNZKdBYdq8qx2aJDFqU1M
https://www.nicehash.com/?p=miners&addr=1D8J2tkRbt5R7TNZKdBYdq8qx2aJDFqU1M

you have yourself a virus. this is a very old address.


damn, any more information on it?

no but ive seen something like this before.. you can search that wallet on here for a thread back in 2015..

if the manager has a way to only allow certain ip addresses id set it to yours only. ive never checked out the manager.

ETHman is just the manager. Any ip anywhere can connect to a miner with the -mport flag on. Everyone using Claymore needs to be setting "-mport 0" to disable the manager or "-mport -3333" to leave the monitoring open.

Did a bit of poking and prodding. This is what I found.
ETHman lets you see the speed/temp of the miner AND send the epools/dpools.bat and reboot.bat remotely and run them. The miner itself defaults to leaving the door open (WTF Claymore?!?). Just get the ip of someone using claymore and do a port scan and you're in.

I'm figuring that's what happened to me. My pools and reboot bats where changed, then the miner was restarted to change the miningpool.

It's was only for about 9 hours, I'm not going to cry about it. BUT its a huge ass hole in Claymore.

This shit needs to be bolded and posted at the top, not hidden at the bottom of the documentation.
Quote
-mport   remote monitoring/management port. Default value is -3333 (read-mode), specify "-mport 0" to disable remote monitoring/management feature.
   Specify negative value to enable monitoring (get statistics) but disable management (restart, uploading files), for example, "-mport -3333" enables port 3333 for remote monitoring, but remote management will be blocked.
   You can also use your web browser to see current miner state, for example, type "localhost:3333" in web browser.
   Warning: use negative option value or disable remote management entirely if you think that you can be attacked via this port!
   By default, miner will accept connections on specified port on all network adapters, but you can select desired network interface directly, for example, "-mport 127.0.0.1:3333" opens port on localhost only.
legendary
Activity: 1736
Merit: 1006
One of my miners has been hijacked with Eth Manager  Tongue
his address is daggerhashimoto.usa.nicehash.com:3353 -ewal 1D8J2tkRbt5R7TNZKdBYdq8qx2aJDFqU1M
https://www.nicehash.com/?p=miners&addr=1D8J2tkRbt5R7TNZKdBYdq8qx2aJDFqU1M

you have yourself a virus. this is a very old address.


damn, any more information on it?

no but ive seen something like this before.. you can search that wallet on here for a thread back in 2015..

if the manager has a way to only allow certain ip addresses id set it to yours only. ive never checked out the manager.



newbie
Activity: 16
Merit: 0
One of my miners has been hijacked with Eth Manager  Tongue
his address is daggerhashimoto.usa.nicehash.com:3353 -ewal 1D8J2tkRbt5R7TNZKdBYdq8qx2aJDFqU1M
https://www.nicehash.com/?p=miners&addr=1D8J2tkRbt5R7TNZKdBYdq8qx2aJDFqU1M

you have yourself a virus. this is a very old address.


damn, any more information on it?
legendary
Activity: 1736
Merit: 1006
One of my miners has been hijacked with Eth Manager  Tongue
his address is daggerhashimoto.usa.nicehash.com:3353 -ewal 1D8J2tkRbt5R7TNZKdBYdq8qx2aJDFqU1M
https://www.nicehash.com/?p=miners&addr=1D8J2tkRbt5R7TNZKdBYdq8qx2aJDFqU1M

you have yourself a virus. this is a very old address.
Jump to: