-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathconfig.xml
101 lines (95 loc) · 3.41 KB
/
config.xml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0" encoding="utf-8"?>
<Config>
<!-- Primary connection to POOL or your own grin node,
make sure you understand your pool's "password" field policy -->
<PrimaryConnection>
<ConnectionAddress>POOLADDRESS</ConnectionAddress>
<ConnectionPort>4416</ConnectionPort>
<Ssl>true</Ssl>
<Login>userlogin</Login>
<Password>secretpwd</Password>
</PrimaryConnection>
<!-- Backup connection to POOL or your own grin node.
When primary connection is down this is used.
Reconnection chooses randomly between primary and secondary until
succesfull connection is established -->
<SecondaryConnection>
<ConnectionAddress>POOLADDRESS</ConnectionAddress>
<ConnectionPort>3416</ConnectionPort>
<Ssl>false</Ssl>
<Login>userlogin</Login>
<Password></Password>
</SecondaryConnection>
<!-- When mining on backup stratum connection, miner can periodically check
if primary connection is available again and reconnect there
Value is in minutes (integer)
0 = off -->
<ReconnectToPrimary>0</ReconnectToPrimary>
<!-- GrinPro can connect to remote dashbaord - see grinpro.io downloads section -->
<RemoteDashboard>
<!-- IP address of Remote Dashboard whre miner should connect
will use http api, e.g.: 10.0.0.113 -->
<DashboardAddress></DashboardAddress>
<!-- optional name for this rig in remote dashboard -->
<RigName></RigName>
<!--How often (in seconds) should miner push status info to remote dashboard.
If 0 then miner doesnt push, instead dashboard needs to pull (based on user interaction (refreshing page)) -->
<SendInterval>0</SendInterval>
</RemoteDashboard>
<LogOptions>
<!-- set true if you dont want any logs written on disk -->
<DisableLogging>false</DisableLogging>
<!-- DEBUG, INFO, WARNING, ERROR, ..DEBUG will slow down mining -->
<FileMinimumLogLevel>ERROR</FileMinimumLogLevel>
<ConsoleMinimumLogLevel>ERROR</ConsoleMinimumLogLevel>
<!-- logs that are older than this (in days) will be deleted -->
<KeepDays>2</KeepDays>
</LogOptions>
<!-- integer value between 10 and 90 for Rigs with very slow processors -->
<CPUOffloadValue>
0
</CPUOffloadValue>
<!-- This is example for 6 GPUs (5 enabled) - 3 NVidias, 3 AMDs. -->
<GPUOption>
<GPUName>GeForce GTX 1070</GPUName>
<GPUType>NVIDIA</GPUType>
<DeviceID>0</DeviceID>
<PlatformID>0</PlatformID>
<Enabled>true</Enabled>
</GPUOption>
<GPUOption>
<GPUName>GeForce GTX 1070</GPUName>
<GPUType>NVIDIA</GPUType>
<DeviceID>1</DeviceID>
<PlatformID>0</PlatformID>
<Enabled>true</Enabled>
</GPUOption>
<GPUOption>
<GPUName>P106-100</GPUName>
<GPUType>NVIDIA</GPUType>
<DeviceID>2</DeviceID>
<PlatformID>0</PlatformID>
<Enabled>true</Enabled>
</GPUOption>
<GPUOption>
<GPUName>Ellesmere</GPUName>
<GPUType>AMD</GPUType>
<DeviceID>0</DeviceID>
<PlatformID>0</PlatformID>
<Enabled>true</Enabled>
</GPUOption>
<GPUOption>
<GPUName>gfx900</GPUName>
<GPUType>AMD</GPUType>
<DeviceID>0</DeviceID>
<PlatformID>1</PlatformID>
<Enabled>true</Enabled>
</GPUOption>
<GPUOption>
<GPUName>gfx900</GPUName>
<GPUType>AMD</GPUType>
<DeviceID>1</DeviceID>
<PlatformID>1</PlatformID>
<Enabled>false</Enabled>
</GPUOption>
</Config>