Bitcoin Forum
May 06, 2024, 06:01:37 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 [3]  All
  Print  
Author Topic: [XMR] Monero stratum proxy (open-source)  (Read 81787 times)
Earl_Vadim
Jr. Member
*
Offline Offline

Activity: 125
Merit: 2


View Profile
September 12, 2017, 06:42:31 AM
 #41

Help me, please..

Now the XMR-PROXY writes in the log:

Code:
2017-09-12 09:32:23,663 INFO proxy # [16ms] Share from '178.120.6.185' accepted

How make logging so...

Code:
2017-09-12 09:32:23,663 INFO proxy # [16ms] Share from 'RIG_NAME' accepted


Config.py
Code:
STRATUM_HOST = "88.xxx.xxx.5"
STRATUM_PORT = 8025

WALLET = '4JUdGzvrMFxxxxxxxxxxxxrw5vtGpKB'
PAYMENT_ID = ''

ENABLE_WORKER_ID = True
WORKER_ID_FROM_IP = True

MONITORING = True
MONITORING_EMAIL = ''

POOL_HOST = 'xmr-usa.dwarfpool.com'
POOL_PORT = 8005

POOL_FAILOVER_ENABLE = True
POOL_HOST_FAILOVER = 'xmr-usa.dwarfpool.com'
POOL_PORT_FAILOVER = 8005

LOGLEVEL = 'INFO'
DEBUG = False
LOGFILE = "logfile.log"

Miner.bat
Code:
start /low NsCpuCNMiner64.exe -o stratum+tcp://88.xxx.xxx.5:8025 -u RIG_NAME -p x
1715018497
Hero Member
*
Offline Offline

Posts: 1715018497

View Profile Personal Message (Offline)

Ignore
1715018497
Reply with quote  #2

1715018497
Report to moderator
1715018497
Hero Member
*
Offline Offline

Posts: 1715018497

View Profile Personal Message (Offline)

Ignore
1715018497
Reply with quote  #2

1715018497
Report to moderator
1715018497
Hero Member
*
Offline Offline

Posts: 1715018497

View Profile Personal Message (Offline)

Ignore
1715018497
Reply with quote  #2

1715018497
Report to moderator
In order to achieve higher forum ranks, you need both activity points and merit points.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
bapparabi
Hero Member
*****
Offline Offline

Activity: 826
Merit: 1000


View Profile
September 12, 2017, 06:57:13 AM
 #42

hi right now i am using https://github.com/zone117x/node-cryptonote-pool for our pool an want to allow support mine direct to exchange and also able to add rig name or worker name ..is there any way possible to implement i this pool script so that it will work with all supported function mention
Daniel.Nguyen
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
September 17, 2017, 02:40:23 AM
 #43

Pleas help me because I setup worker ID and worker id from IP but in the pool statistic show random number. Please help me to configure properly for worker ID and worker ID from IP.

Thanks!
xiphon
Full Member
***
Offline Offline

Activity: 254
Merit: 121



View Profile WWW
October 06, 2017, 08:12:46 PM
 #44

Help me, please..
How make logging so...
Code:
2017-09-12 09:32:23,663 INFO proxy # [16ms] Share from 'RIG_NAME' accepted

There is no code to do that. Configuration won't help here anyhow.

Pleas help me because I setup worker ID and worker id from IP but in the pool statistic show random number. Please help me to configure properly for worker ID and worker ID from IP.

Thanks!

That is exactly how it is intended to be. It is not a random value, it is an ipv4 address represented as a number.

Fairpool https://fairpool.xyz mining pool - Realtime stats, Profit calculation, Instant payouts
LOKI mining pool: https://loki.fairpool.xyz RYO mining pool: https://ryo.fairpool.xyz
XHV Haven mining pool: https://xhv.fairpool.xyz PURK mining pool: https://purk.fairpool.xyz
ETC mining pool: https://etc.fairpool.xyz PGC mining pool: https://pgc.fairpool.xyz
ETP mining pool: https://etp.fairpool.xyz AKA mining pool: https://aka.fairpool.xyz
PASL mining pool: https://pasl.fairpool.xyz NUKO mining pool: https://nuko.fairpool.xyz
yanir99
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
October 17, 2017, 07:54:40 AM
 #45

Hi All,
I just set this up and was wondering if there is a way to set the worker ID that I see in the proxy (not in the pool) to be the username sent from the worker (or any other parameter that I can define).
right now I see the worker ID as the IP of the miner and when I have lots of computers from one IP it can be a bit hard to track which is which.

Thanks!
xt-miner
Newbie
*
Offline Offline

Activity: 67
Merit: 0


View Profile
October 29, 2017, 11:17:40 PM
 #46

Just tested:
xmr-stak-cpu
xmr-stak-nvidia
on https://xmr.mypool.online
(stratum mine.xmr.mypool.online:3335)

darkstilo
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
January 12, 2018, 10:38:20 PM
 #47

i wrote my own it works very well!

node.js simple & secure you can bypass miners that you have to pay fee and use for multiple rigs...

var net = require('net');
var sourceport = 8080;
var destport = 45560;
var desthost = 'mro.pool.minergate.com';
var login = '***@gmail.com'; //for minergate your mail for other pools your wallet

net.createServer(function(s)
{
    var buff = "";
    var connected = false;
    var cli = net.createConnection(destport,desthost);
    s.on('data', function(d) {
        if (connected)
        {
           cli.write(d);
        } else {
           buff += d.toString();
        }
    });
   s.on('error', function() {
   //console.log('dile');
    });
    cli.on('connect', function() {
        connected = true;
   if(buff.indexOf('"login": "')>-1)
   {
   try {
   logincik=buff.split('"login": "')[1].split('"')[0];
   buff=buff.replace(logincik,login);
   } catch(e){}
   }
        cli.write(buff);
      //console.log(buff);
    });
    cli.on('error', function() {
   //console.log('wiy');
    });   
    cli.pipe(s);
}).listen(sourceport);



Hello man, how are you?

Well, it's been a while since I've been looking for articles on stratum proxy and I've found your comment on one of the bitcointalk topics.

Could you please help with this question? If you can, send me a message telegram @ecologyc

I'm desperate, I need it a lot, because I have 300 servers in a single datacenter and 60% of that total is being blocked by the pool, because I think they are flooding.

Thanks in advance!
Pages: « 1 2 [3]  All
  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!