home · news · about · security ·
How To Run Multiple SSH Command. Run date and hostname commands: $ ssh user@host 'date && hostname' You can run sudo command as follows on a remote box called server1.cyberciti.biz. This post summarizes several types of uses for.nix bash aliases: Setting default options for a command (e.g. Set eth0 as default option for ethtool command via alias ethtool='ethtool eth0').
documentation · changelog · used by · support/contact · S9 · T9 · restore ssh · fix hashboards · pool · psuASICseer is running on 64,034 ASICs (63.7 megawatts).
download ASICseer 1.2.2 now · ·
download ASICseer BoardRestore 1.0.3
Table of Contents
Quick Start Guide (with ConfigMaker)
ASICseer is separated into read-only and read-write. Your Panel is read-only and your Remote Config File is read-write.
- Go to ASICseer Downloads. When the page loads, your Remote Config File will be generated and hosted on ConfigMaker.com automatically.
- Under Before Installation, save your new ASIC login information and secret Remote Config File editor (for ASIC login / management)
- Set your custompanel in your Remote Config File, which can be used for multiple farms to report to the same Panel.
- Your worker name is derived from your pool's username and your ASIC hostname automatically. You can customize your worker names.
- Follow the instructions under 'Simple and Easy' installation and wait for the installation to complete.
- After installation finishes, go to 'Miner Configuration' on your ASIC. NOTE: Default passwords will be changed. See security / recovery.
- Make changes in your Remote Config File to manage your ASICs.
You can use the 'Powerful and Advanced' installation to quickly install ASICseer on multiple units via SSH.
Setting up your own Remote Config File
If you want to avoid using ConfigMaker, you can host your Remote Config File on your own world-reachable remote server, vps, or shared hosting account.
- Copy
https://asicseer.com/config.txt
and host it yourself (see Setting up a Server) - Get the link to your Remote Config File like
http://your-server.com/config.txt
NOTE: The linkhttp://your-server.com/config.txt
is an example. You must use your own link. - Make changes to your Remote Config File to manage your ASICs. See Writing your Config for instructions.
- Paste the link to your Remote Config File into the 'Remote Config File' field on the Downloads page and press 'Regenerate Downloads.'
- Re/install ASICseer with your new Remote Config File.
Setting up a Server for your Remote Config File
If you do not have a remote server and do not want to use ConfigMaker, you can create a remote server with DigitalOcean.
- Go to DigitalOcean (follow this link to get $50 credit), create an account, then press 'Create -> Droplet.'
- Click on 'Marketplace' and select the 'LEMP on 18.04' software stack.
- Scroll down, press the left arrow, select '$5/month' droplet (not $40/month), your closest region, 'one-time password', and press 'Create.'
- After the droplet is created, follow the SSH guide to SSH to your DigitalOcean droplet.
- Descend into the world-readable html directory with
cd /var/www/html
- Copy the sample Remote Config File to your DigitalOcean Droplet with
wget -O config.txt https://asicseer.com/config.txt
- Make changes to your Remote Config File on your DigitalOcean droplet with
nano /var/www/html/config.txt
- The link to your Remote Config File is now
http://digital.ocean.ip.address/config.txt
- Paste the link to your Remote Config File into the 'Remote Config File' field on the Downloads page and press 'Regenerate Downloads.'
- Re/install ASICseer with your new Remote Config File.
Using the Multi-ASIC Installer on Windows 10
Ubuntu Windows Subsystem for Linux (WSL) Instructions
- Update Windows 10 to at least Version 10.0.18362 (Build 18362)
- Download and Install Ubuntu 18.04 from the Microsoft Store.
- When Ubuntu prompts
Enter new UNIX username:
useasicseer
for both theusername
andpassword
settings. - Once the
username
andpassword
is set,sudo su
to become theroot
user. - When prompted for your
password
, enterasicseer
- Run the below line to install the required packages:
apt-get update; apt-get -fy install sshpass
You have now prepared a *nix environment. Proceed with 'Using the Multi-ASIC Installer on Linux, Mac, or Windows WSL'.
Using the Multi-ASIC Installer on Linux, Mac, or Windows WSL
- The Multi-ASIC Installer runs on any *nix environment (ubuntu, ethos, fedora, mac osx, windows wsl) local to your ASIC network.
- The *nix environment needs to have
sshpass
awk
sha256sum
curl
installed. - This installer runs an asyncronous ssh script that takes about 1 minute per 15 ASICs (150 ASICs will take 10 minutes)
- Add your
vlan
orinclude
lists into your Remote Config File (see example)
NOTE: Eachvlan
must look like10.8.250.0-255
(last octet is a range) - Open your terminal.
- Become root with
sudo su
- Install
sshpass
awk
sha256sum
curl
if your *nix environment does not have them, examples:- ubuntu, debian:
apt-get -fy install sshpass
- ethos:
apt-get-ubuntu -fy install sshpass
- fedora, centos:
yum -y install sshpass
- mac: follow homebrew installation instructions, then
brew install http://git.io/sshpass.rb
- windows wsl:
apt-get update; apt-get -fy install sshpass
- ubuntu 20.04:
- being root is not recommended. instead, be a normal user.
sudo apt-get -fy install sshpass
mkdir ~/.ssh && chmod 700 ~/.ssh
touch ~/.ssh/config && chmod 600 ~/.ssh/config
- add the below definition into
~/.ssh/config
(usingnano
or your favorite text editor)
- ubuntu, debian:
- Follow the Quick Start Guide to generate your installer script.
- Copy-paste the line under MULTI-ASIC INSTALLER into your terminal and press ENTER.
- Watch the asyncronous installer output. When there is no more output (check by pressing ENTER a few times), installation is finished.
Including and Excluding lists of IPs in the Multi-ASIC Installer
These options are specified in your Remote Config File.
You can include additonal lists (optional) of ASIC IPs by adding include
lines.include http://any.remotely.reachable.url/include_list.txt
include http://another.remotely.reachable.url/another_include_list.txt
You can exclude lists of ASIC IPs (optional) to prevent them from re/installing ASICseer by adding exclude
lines.exclude http://any.remotely.reachable.url/exclude_list.txt
exclude http://another.remotely.reachable.url/another_exclude_list.txt
NOTE:exclude
lists supersede include
lists.
You can generate these lists with your Panel:
- Select any checkbox conditions and/or versions in the checkbox interface at the top of your Panel.
- Select 'ip list' from the dropdown menu and press the 'submit' button.
- Copy-paste the URL from your browser URL bar into your Remote Config File according to the above examples.
NOTE: When using include
and exclude
with panelpass
, you must use proper authentication in the list URLs:
https://admin:panelpass
@public.asicseer.com/?showstyle=s_ips
Securing your ASIC with Passwordless Login and Public Key
To secure your ASIC and to prevent unauthorized logins, you should use passwordless public key authentication. This procedure disables passworded SSH logins and only allows the machine containing the private key to access your ASICs.
- Login to (or create) your *nix environment local to your ASIC network.
- Take appropriate precautions to secure this machine from outside users (vpn, ssh password protection, etc)
- Become the appropriate non-root user (usually
asicseer
if you followed *nix environment instructions) - Run
cd ~; ssh-keygen
and press ENTER (~3 times) until your fingerprint is generated (do not input/select any options) - Run
cat /home/asicseer/.ssh/id_rsa.pub
- Copy your public key to your Remote Config File, starting with 'pubkey ':
pubkey ssh-rsa AAAAB3gZk1XXX...this.is.a.long.string...XXX
- Re/install ASICseer on a single test ASIC (open multiple SSH windows/sessions to this ASIC, just in case)
- SSH to your test ASIC from this machine in another separate window. If everything worked, you will not be prompted for an SSH password.
- Re/install ASICseer on all your ASICs.
NOTE: If you can't SSH to your test ASIC in Step 8:
- Remove the public key from your Remote Config File.
- Run
echo 'NO_START=0' > /etc/default/dropbear; /etc/init.d/dropbear restart
on your test ASIC to remove public key authentication. - Hire a security consultant to assist you with securing your network.
Writing your Config
- Your entire farm can be controlled with a single Remote Config File.
- Each ASIC downloads and applies the Remote Config File settings once every 10 minutes (customizable with response)
- It may take up to 15 minutes for farm-wide Remote Config Files changes to apply to all ASICs.
- Every line preceded with a
#
is considered a 'comment' and is ignored. - See https://asicseer.com/config.txt for an example Remote Config File.
- All ASICseer settings, except for various usernames and passwords, are always lowercase.
Formatting Overview for One-Time Installation Settings
The following settings are used only during ASICseer installation, they are specified like setting value
vlan
See Using the Multi-ASIC Installer on Linux, Mac, or Windows WSLinclude
See Including and Excluding lists of IPs in the Multi-ASIC Installerexclude
See Including and Excluding lists of IPs in the Multi-ASIC Installerpubkey
See Securing your ASIC with Passwordless Login and Public Keycongress
1
-200
(default is15
). Customizes concurrent installations (speed) of Multi-ASIC installer.autoinstall
1
-60
Reruns Multi-ASIC Installer everyN
minutes that you specify. Requires unused DHCP leases.
Formatting Overview for Runtime Settings
After ASICseer is installed, edit your Remote Config File using the asicid setting value
format to send runtime instructions to your ASICs.
asicid
is your ASIC ID (used as the worker name if yourhostname
is stock) and is derived from the last 6 digits of its MAC address.setting
is the setting that you are applying to your ASIC.value
is what you are passing to thesetting
Use global
instead of the asicid to apply a setting
and value
to all ASICs with the same Remote Config File.
Panel Settings
custompanel
takes a 12-digit alphanumeric string and sets a custom Panel using the first 6 digits. See setting custompanel.panelpass
takes a string which is used to password protect your Panel (if set, login is admin/panelpass
)autoupdate
takes valuesyes
orno
. Setting toyes
will update ASICseer to the latest version within 24 hours of its release.location
takes up to a 24-digit worker name (like rack1/rowb2/number34/shelfa5). See Customizing your Worker Name / Location)
NOTE:location
should only be applied to individual ASICs.response
takes values1
-20
(i.e.global response 5
, default is10
mins); alteringresponse
sets Remote Config File pull rate.
NOTE: ConfigMaker.com does not support theresponse
setting. This option is only for Remote Config Files hosted on other services.smallpipe
takes valuesyes
orno
. Setting toyes
will reduce bandwidth requirements associated with panel reporting.panelclear
takes a value in days (ex:1
,2
,3
) and removes ASICs from your Panel if they stop reporting afterpanelclear
days.remove
takes a comma-separated list of asicids and removes them from your Panel.options
takes a comma-separated string likeglobal options nightmode,nocolor,chips
nightmode
turns on nightmodenocolor
removes color rendering to increase loading speedchips
adds a hover that displays individual chip frequencies (slows down panel loading)
See Deleting/Removing ASICs from your Panel for more information.
Pool Settings
poolname1
is the 1st defined pool to which your ASIC will try to connect. Use formatpool.com:port
(don't includestratum+tcp://
)username1
is the 1st pool's username from your pool's site (don't define workers here, see Customizing your Worker Name / Location)poolpass1
is the 1st pool's password from your pool's site (leave asx
if your pool does not require a password)sendworker1
takesip
location
username
custompanel
hostregex
ipregex
orno
to assign your worker name.extranonce1
ist the 1st pool's extranonce subscription status. Defaults tono
and takesyes
if necessary.
Using REGEX to Derive a Worker name from your Hostname
You can use a regex string to derive a worker name either your ASIC hostname or ASIC IP:
global sendworker1 hostregex /REGEX/STRING/
global sendworker1 ipregex /REGEX/STRING/
The regex-derived worker name is sent to your pool without altering your actual ASIC hostname or ASIC IP.
Pool Settings for the Failover Pools
poolname2
,username2
,poolpass2
,sendworker2
,extranonce2
poolname3
,username3
,poolpass3
,sendworker3
,extranonce3
To prevent pool-related downtime, you must have poolname1
, poolname2
, and poolname3
defined to at least two different pool domains/companies (see ASICseer recommendation)
Whitelabel Settings
customer
takes an alphanumeric string to track stats across multiple Panels, replaces 'ASICseer' in Logic/BMminer Versions.logo
takes a world-reachable logo (global logo http://domain.com/img.jpg
) and sets a company logo on your Panel / ASIC webUI.icon
takes a world-reachable favicon (global icon http://domain.com/icon.png
) and sets it on your Panel / ASIC webUI.link
takes a world-reachable link (global link http://domain.com/
) and sets a company link on your Panel / ASIC webUI.css
takes a world-reachable css file (global css http://domain.com/file.css
) and sets a custom css template on your ASIC webUI.
NOTE: thecss
option replaces/css/cascade.css
(click for source) on your ASIC.
Setting an Operator Fee
The owner of the Remote Config File is typically the operator of the ASICs. In some cases, the operator and the actual ASIC owner are not the same entity. In this case, the owner and operator may decide on a revenue share agreement using the operator fee. The operator can set an additional pool and fee percentage. The operator fee instructs healthy ASICs to mine a certain percentage of the time to the operator pool.
- Make a new account at your preferred pool. This account will be dedicated to your fee.
- Add the above stanza to your Remote Config File.
NOTE: In this example, if your panel is abc123.asicseer.com, your fee worker name isfeeaccount.abc123
- Change
poolname-operator
andusername-operator
to the operator pool and username. - Change
operator
to a value between1
-100
(this is a percent)
The operator fee will trigger randomly every four hours, and mine to the operator pool equal to the operator
percentage. You can increase operator payouts by repairing and triaging ASICs, or by increasing the operator
percentage value.
Power Settings
asicboost
takes valuesyes
orno
. Setting toyes
will increase hashrate.autotune
takes valuesyes
,no
,fancheck
, or a numeric value.yes
allows autotuning and increases hashrate.no
prevents autotuning.fancheck
prevents autotuning and sets fans to 100% (for visual checking of broken fans)X
(replace X with a numeric value) limits tuning to X cycles.
allowed
takes valuesyes
(allows mining),no
(prevents mining),contact
(prevents mining, provides ability for fast power-up)
API Method:echo 'ascset|miner-enabled,0' | nc ip.of.asic 4028
orecho 'ascset|miner-enabled,1' | nc ip.of.asic 4028
maxwatts
takes a watt value as low as400
, and sets target/max watts for your ASIC. Increasing this value will increase hashrate.throttle
takes values25
-200
, which throttles yourmaxwatts
setting ifmaxtemp
is reached (see Reducing Facility Overheats)
Temperature Settings
maxtemp
takes two values:temp in C
hours
(default90 6
) and is used for overheat protection and the cool-down period.maxfan
takes:maxfan 20
up tomaxfan 100
(air cooling) ormaxfan liquid 0
up tomaxfan liquid 25
(immersion)exhaust
takes values0
-100
(default50
), which helps facility exhaust by running fans even during cool-down periods.
Advanced Settings
threshold
takes values1
-50
(i.e.global threshold 3
, default is3
); increasingthreshold
reduces tuning aggressiveness.hpc
takes values60
-120
(i.e.global hpc 97
, default is97
); usinghpc
adjusts chip tuning and may alter hashrates/efficiency.mvt
takes values5
-95
(i.e.global mvt 25
, default is25
); usingmvt
adjusts voltage tuning and may alter hashrates/efficiency.
LED Settings
examples:
global blinkgreen hashrate
global blinkred idle
status | |
hashrate | blinks faster as hashrate increases, solid if tuning |
idle | turns on light if ASIC is not mining |
fan | turns on light if a fan is not detected and blinks if a fan is degrading |
hashboard detection | (use both) |
blinkgreen board | blinks GREEN light extremely rapidly if all hashboards are ALIVE, turns it OFF if any hashboards are DEAD |
blinkred board | blinks RED light extremely rapidly if any hashboards are DEAD, turns it OFF if all hashboards are ALIVE |
NOTE: You can specify a chain like: global blinkred board 7 to ONLY blink RED if the specified chain/board (i.e. middle board) is down. | |
manual | |
rapid | blinks rapidly |
solid | solid light |
normal | blink speed similar to stock firmware |
off | no light |
morse code | |
sos | blinks sos in morse code |
worker | blinks the worker name in morse code |
ip | blinks the ip in morse code |
panel | blinks the panel name in morse code |
location | blinks the location in morse code |
ASIC Troubleshooting Settings
The below settings take an incrementing value. If the value is higher than the previously used value, the setting will reapply. Because of this, it is recommended to use the unix timestamp (1616810077
) for these settings, as it will always be higher.
asicid gethelp 1616810077
sends a gethelp diagnostics file to ASICseer support staff (replaceasicid
with your ASIC's asicid)global retune 1616810077
retunes your ASICs.global reboot 1616810077
reboots your ASICs.global uncork 1616810077
deletes throttle data from your ASICs.global reset 1616810077
resets your ASICs as if you had just installed ASICseer for the first time.
Applying Settings by Location
You must have locations defined to apply settings using locations. group=
searches the beginning of your location
for a string and applies your setting
to any ASIC location
that has a match. The location
must start with the string to match.
The below example reboots ASICs with a location
starting with rowc
, and stops mining on ASICs with a location
that has rowd
in it.
Applying Settings by CIDR
Applying Settings by CIDR is useful if you have farms separated by IP ranges. cidr=10.8.200.0/21
matches all ASICs with IPs in a specific CIDR range and applies your setting
to those ASICs.
The below example assigns a specific custompanel
to a specific CIDR
range.
cidr=10.8.200.0/21 custompanel 5xcolo123456
(all ASICs in 10.8.200.0/21
will then report to 5xcolo.asicseer.com)
Applying Settings by Model
Applying Settings by Model is useful if you have different ASIC models. model=
searches the beginning of your ASIC model for a string and applies your setting
to any ASIC model that has a match. The model must start with the string to match.
The below example reboots T9+
ASICs.
model=T9+ reboot 1616810077
Efficient chain switching between BTC and BCH
You can automatically switch to BCH mining whenever the BCH chain experiences low difficulty periods by adding a BCH pool endpoint to your Remote Config File.
- Add the above stanza to your Remote Config File.
- Change
poolname-bchdiff
andusername-bchdiff
to your own BCH pool and username. - Make sure
poolname1
is a BTC pool.
Now, you will automatically switch to your BCH pool whenever the BCH chain difficulty is low.
Customizing your Worker Name / Location
You can use one Remote Config File for all ASICs. Specifying multiple workers does not require separate Remote Config Files.
To switch your worker name and assign a location:
- either change your ASIC hostname on the ASIC itself, OR
- set
asicid location customxname
in your Remote Config File (asicid
is your 6-digit asicid,customxname
is your new worker name)
example:ab34ef location rowc2
- Do not add a
customxname
tousername[1-3]
- correct:
global username1 poolusername
- not correct:
global username1 poolusername.customxname
- correct:
- Do not use the same worker name for multiple ASICs.
- Do not exceed 24 characters for your worker/location names (to ensure maximum pool compatibility)
For more advanced worker settings, see Pool Settings.
Assigning Worker Names / Locations with the IP Report Button
If you use hostnames to manage your worker names and ASIC locations, ASICseer will use them to set Worker Names / Locations during installation. If you have a big farm and don't know where any of your ASICs are located, you can order them with the IP Report button.
NOTE: It is important to do the below steps when your Internet is stable, and your ASICs are online and reporting.
- After installing ASICseer, go to your Panel. Then, physically go to your first Rack ('Rack A') and decide on an order for your ASICs.
- Press and hold the IP Report button for 5 seconds on each 'Rack A' ASIC in order, one by one (wait at least 3 seconds between press-holds)
- Wait at least 3 minutes.
- Your Panel will show a number in the 'ipr' column (seconds ago that the IP Report button was pressed)
- Select 'assign workers' from the dropdown menu and press the 'submit' button.
- Set your worker names like:
a1
,a2
,a3
... - Continue this process for all rows/racks. If you press the IP Report button on all ASICs in your preferred order, they will be ordered correctly.
Remotely Rebooting ASICs
If your ASICs are reachable (i.e. they don't have a ❌ condition), you can reboot them remotely using your Remote Config File.
- Go to your Panel.
- Select any checkbox conditions and/or versions in the checkbox interface at the top of your Panel.
- Select 'reboot manager' from the dropdown menu and press the 'submit' button.
- Your Panel will generate settings for your Remote Config File to reboot your affected ASICs.
- Copy-paste the entire output into your Remote Config File.
Reducing Facility Overheats
Due to environmental conditions (fan health, physical location, airflow, poor facility design, etc) not all ASICs can operate at the same maxwatts
setting. Using the below settings, you can maximize hashrate by allowing ASICseer to tune your entire facility to the individual highest possible hashrate of each ASIC.
Overheats should not be considered normal. If an ASIC overheats, it will enter a 6
hour cool-down period (1
is the smallest possible value). The cool-down period is necessary to avoid cascading heat-related facility-wide failures.
With the above settings, each ASIC will...
- start mining/tuning at
1440
watts. - trigger an overheat and will enter a cool-down period if any hashboard reaches
90
C. - restart mining automatically after a
6
hour cool-down period. - throttle
maxwatts
by100
watts (1340
,1240
,1140
, ...) each time an overheat is triggered.
The minimum and maximum settings for throttle
(an optional setting) are 25
-200
watts. Using the above settings, each ASIC will tune to its highest possible maxwatts setting automatically, with as much granularity as you prefer.
Temperature Legend
- previously throttled
- 🧯continuously throttled
- currently throttled
- 🌶️currently overheated
- ambient temperature fluctuations
- ❄️too cold
To restore throttled ASICs back to their original maxwatts
setting, add this line to your Remote Config File:global uncork 1616810077
(use the asicid instead of global)
ASICs throttling/overheating due to unaddressed environmental conditions will throttle/overheat again even after uncork
is run.
You can use LED settings to find ASICs with temperature problems, and diagnose them for physical problems or environmental conditions. You can also physically swap ASICs in your farm.
ASICs that are too cold cannot maintain their hashrates. Decrease or block facility airflow and exhaust in sections of your facility that have an abnormal amount of cold ASICs.
Managing Temperature
If any hashboard temperature exceeds maxtemp
, mining will turn off for the amount of hours defined (default 6
)
Sshpass Linux Install
Follow the below steps to reduce the chances of your ASICs overheating:
- Set
maxfan
to a higher value (NOTE: higher maxfan settings increase watts and reduce fan lifespan) - Set
maxwatts
to a lower value (this will retune your ASIC) - Set
maxtemp
to90
if it has been set lower. - Observe fans: repair broken fans, missing fan blades, and/or remove loose material obstructing fan movement.
- Remove obstacles: remove airflow obstacles such as cables, connectors, racks, etc, which may impede airflow.
- Balance temperature: swap the overheated ASIC with one that is closer to the floor.
Setting a Custom Panel
ASICseer assigns a 6-character Panel based on a hash of your external IP. This way, all ASICs on one network can report to the same Panel.
If your public IP changes, your Panel link will change.
You can set your own Custom Panel with the custompanel
parameter.
- Set
global custompanel publicsecret
in your Remote Config File (must be the same exact 12 alphanumeric characters on all ASICs) public
(EXACTLY 6 ALPHANUMERIC CHARACTERS) is your preferred Panel ID.secret
(EXACTLY 6 ALPHANUMERIC CHARACTERS) is your private key.
- Example CORRECT usage:
global custompanel suresh987abc
will make all your rigs report to https://suresh.asicseer.com - Example INCORRECT usage:
global custompanel suresh
will do nothing.
Deleting/Removing ASICs from your Panel
Automatic Removal
- Adjust the
panelclear
parameter as described in Writing your Config. - ASICs on the latest ASICseer version will be removed after
panelclear
days. - ASICs on older ASICseer versions will be removed after
panelclear
+ another 10 days.
Manual Removal
- Select any checkbox conditions and/or versions in the checkbox interface at the top of your Panel.
- Select 'remove units' in the dropdown menu and press the 'submit' button.
- Paste the resulting line beginning with
global remove
into your Remote Config File.
NOTE: You can adjust the ASICIDs in the global remove
line to suit your preferences.
Forcing Remote Config and Panel Sync
Sometimes, you may need to sync your Remote Config File to your ASICs.
For a Single ASIC
Navigate to your Miner Configuration page and press the sync config and panel
button.
For Multiple ASICs
NOTE: This is an intensive script and is not meant to be run regularly.
Updating to the Latest ASICseer Version
When a new version is released, your Panel will alert you.
It is highly recommended to keep global autoupdate yes
in your Remote Config File. ASICseer drops support for all previous versions whenever a new version is released, in line with an aggressive development schedule. If any issues occur with previous versions, no support will be provided until you update.
NOTE: There is no difference between updating and installing ASICseer. You can always update by re/installing ASICseer.
If some ASICs miss their update, update them by either re/installing ASICseer or by using the below example methods.
For a Single ASIC
- run the following command directly on the ASIC:
curl -s -k https://install.asicseer.com/deploy/a/autoupdate | sh
For Multiple ASICs
- Add
include http://any.remotely.reachable.url/include_list.txt
to your Remote Config File (like the one from your Panel) - Add
#
in front of all othervlan
include
exclude
definitions to comment them (like#vlan
) - Re-run the Multi-ASIC installer to update/reinstall ASICseer on just the ASICs running older versions.
Importing a CSV of your Panel into Google Sheets
- Open the ASICseer API Example Sheet.
- This opens a read only sheet. To be able to edit the sheet, select 'File' -> 'Make a Copy' in the top left and press OK.
- Edit the
A2
cell to reflect your 6-digit Panel name.
Note: Google Sheets does not support native authentication. If you have a panelpass
specified, add your panelpass in cell B2
Using JSON API to load per-Panel or per-ASIC Data
Using historical API
The following API endpoints can load historical monthly per-Panel and per-ASIC data, useful for enterprise-class customer billing purposes.
https://asicseer.com/api/type
-call
/panel
/month
examples using 02
(the last month):
https://asicseer.com/api/panel-kwh/asdemo/02
· per-panel kilowatt-hours (Google Sheet)https://asicseer.com/api/panel-hash/asdemo/02
· per-panel hashrate (Google Sheet)https://asicseer.com/api/asic-kwh/asdemo/02
· per-asic kilowatt-hours (Google Sheet)https://asicseer.com/api/asic-hash/asdemo/02
· per-asic hashrate (Google Sheet)
How to load ASICseer API data in Google Sheets
- Open the ASICseer API Example Sheet (this example has an JSON loading function in the 'Tools' -> 'Script Editor' menu item)
- This opens a read only sheet. To be able to edit the sheet, select 'File' -> 'Make a Copy' in the top left and press OK.
- Select one of the API tabs at the bottom.
- Edit the
A2
cell to reflect your 6-digit Panel name.
Note: Google Sheets does not support native authentication. If you have a panelpass
specified, change the D2
cell to the below:
https://asicseer.com/apisecure/type
-call
/panel
/month
/panelpass
Using Nicehash for Mining
For mining on Nicehash, use only Nicehash AsicBoost endpoints and extranonce subscription.When Nicehash prompts you to 'select algorithm', select SHA256-AsicBoost. ASICseer will automatically rewrite non-AsicBoost Nicehash endpoints to AsicBoost ones.
If you don't want to set up an account, you can use a wallet address as your pool's username.
Use the following stanza as a guide for mining on Nicehash.
Using SSH to Login to ASICs from Windows 10
- Set up your *nix environment.
- Connect your computer to the same network as your ASICs, using VPN, or by SSHing to a jump box.
- Find the IP of your ASIC (either on your Panel or on your router DHCP client table)
- In your terminal,
ssh -v root@ip.of.your.asic
- Enter your ASIC SSH password when prompted.
- A list of available commands will appear.
Copy-pasting Text: In Windows, CTRL+C copies text. In Windows WSL, CTRL+SHIFT+V pastes text.
List of Common ASICseer Terminal Commands
Sshpass Osx
Clearing your ASIC MAC addresses to Prevent Conficts
In large farms, there may be conflicting MAC addresses that result in multiple ASICs appearing as if they are one device. This results in arp conflicts, incorrect reporting, etc.
If you see multiple ASICs with the same MAC address, you should regenerate the MAC address on your ASIC and then reboot it:
rm /config/mac && sync && sleep 1 && reboot
Identifying Faulty Hashboards
Many people who install ASICseer are surprised to see faulty hashboards after tuning is complete. Don't shoot the messenger.These faulty hashboards existed before you installed ASICseer, you just did not know about them.
See the Restoring Hashboards guide for a detailed explanation regarding how to fix faulty hashboards.
Review the following points:
- ASICseer has developed robust error reporting using metrics from tens of thousands of ASICs.
- The ASICseer error reporting matches pool-side hash losses accurately.
- Pool-side hash is the most accurate metric for determining whether or not hardware is faulty.
- It is not correct to rely on potentially false-negative data provided by stock and/or other firmware.
- It is not possible to fix faulty hashboards with software, regardless of the firmware that you're running.
- Faulty hashboards are usually the result of physical hardware problems.
If your ASIC has identified a faulty hashboard, it will show a 🔗 or 🔘. You can identify the faulty hashboard using the Panel and the [ | ]
hashboard detection symbols.
Sshpass Linux
The below symbols identify which hashboard is detected and working fine from the exhaust side.
[
left hashboard (chain6) detected and working fine.|
middle hashboard (chain7) detected and working fine.]
right hashboard (chain8) detected and working fine.
Using the Global Hashrate Viewer
If you manage many different Panels, you can set a company name to track hashrates across all of them.
Removal of 'braiins' Firmware (and ASICseer Installation)
Use the asicseer_installer tool to remove 'braiins' firmware.
Controlling Power Usage based on Scheduled Power
If your facility has special requirements for scheduled power usage, you can use a php script to serve your Remote Config File.
- Set up your own Remote Config File Server.
- Run:
mkdir -p /var/www/html/config && curl -o /var/www/html/config/index.php http://p.asicseer.com/raw/omcpl
- Run:
nano /var/www/html/config/index.php
to edit your script. - Re/install your ASICs using your Remote Config Link:
http://ip.of.your.server/config/
Uninstalling ASICseer and/or Restoring to Factory Settings
Sshpass Osx
Using the IP Report Button
Use the 'Restore via IP Report Button' functionality as described in Point 3 of the Bitmain© factory restore guide.
Using the WebUI firmware Upgrade Page
- Download the correct Bitmain© firmware for your ASIC.
NOTE: Be careful, any Bitmain© firmware described as having a 'security' or 'secure' firmware actually prevents SSH to your ASIC. - Navigate to the ASIC webUI firmware upgrade page and upload the Bitmain© firmware to your ASIC.
- This will restore all settings and pools to factory settings.
Powerful and Advanced
Robust
Use ./asicseer_installer -u any.firmware.tar.gz ip.of.target.asic webuipass
For robust ASICseer un/installation tools, restoring SSH, and removal of foreign firmwares, use the asicseer_installer tool.
Sshpass Osx Ansible
Get Immediate 24/7 Support via Telegram
Free 24/7 support: Free lifetime support 24/7 via the ASICseer Support Group.
Contact info@asicseer.com for an invitation.
Contacting the ASICseer Team
Direct all Media and Business inquiries to info@asicseer.com
See Get Immediate 24/7 Support via Telegram for access to the ASICseer Support Group.