11.09.2021
Web page: https://www.bobcatminer.com/
Discord: https://discord.gg/TbuusqZR
User manual : https://fcc.report/FCC-ID/2AZCK-MINER300/5189068.pdf
EORI Romania: https://www.youtube.com/watch?v=8v03lqHctxg
VAT Refund: https://docs.google.com/forms/d/e/1FAIpQLSdmoKS524v0kFYb2NHUQbqNEwfFkxKWK6YnOOWtFuMwIUZS_Q/viewform
Explorer: https://explorer.helium.com/hotspots
Map, real location: https://beta.hotspotrf.com/map/#
Map: https://app.hotspotty.net/hotspots
What Is Antenna Gain: https://www.netxl.com/blog/networking/antenna-gain/#heading_1
Check open port: TCP: 44158:
Bobcat emails:
delivery@bobcatminer.com
customer@bobcatminer.com
support@bobcatminer.com
Tips:
https://www.nowitness.org/antenna/
https://www.reddit.com/r/BobcatMiner300/comments/pjokmu/fast_sync_for_users_stuck_syncing/
https://ardevd.medium.com/mind-the-gap-how-to-fix-a-huge-sync-gap-864876c80858
https://jamesachambers.com/bobcat-300-diagnoser-tool-utility-guide-helium-mining/
https://docs.helium.com/troubleshooting/network-troubleshooting/
Diagnose: https://www.bobcatminer.com/post/bobcat-diagnoser-user-guide
Install:
1. Fast Sync:
{
"status":
"syncing",
"gap":
"4987",
"miner_height": "998400",
"blockchain_height":
"1003387",
"epoch":
"25751"
}
root@gigel:~# curl --user bobcat:miner --request POST http://192.168.8.223/admin/reboot
Rebooting hotspotroot
C:\>curl --user bobcat:miner --request POST http://192.168.x.y/admin/fastsync
Syncing your miner, please leave your power on.
{
"status":
"syncing",
"gap":
"114",
"miner_height": "1003348",
"blockchain_height":
"1003462",
"epoch":
"25900"
}
........................
{
"status":
"synced",
"gap":
"-2",
"miner_height": "1003546",
"blockchain_height":
"1003544",
"epoch":
"25906"
}
C:\>curl 192.168.x.y/status.json
{
"status": "synced",
"gap": "-1",
"miner_height": "1016367",
"blockchain_height": "1016366",
"epoch": "26294"
}
During the FastSync, DL around 80 Mbps, besides this, during the normal initial sync DL around 8 Mbps every several seconds.
Daily normal traffic 3GB, 66% UL, 33% DL
C:\>nslookup bobcatminer
Server: router.xxx
Address: 192.168.1.1
Name: bobcatminer
Address: 192.168.x.y
C:\>nmap -p- 192.168.x.y
Starting Nmap 7.91 ( https://nmap.org ) at 2021-09-11 14:50 GTB Daylight Time
Nmap scan report for bobcatminer (192.168.x.y
Host is up (0.0039s latency).
Not shown: 65531 closed ports
PORT STATE SERVICE
22/tcp open ssh
80/tcp open http
4369/tcp open epmd https://erlang.org/doc/man/epmd.html
44158/tcp open unknown > used for Helium Protocol communication
Nmap done: 1 IP address (1 host up) scanned in 41.98 seconds
Measuring the network quality, connected over Ethernet. Bobcat supports Ethernet 100Mbps:
{
"DownloadSpeed": "90
Mbit/s",
"UploadSpeed": "85
Mbit/s",
"Latency":
"4.912396ms"
}
Find my externel IP:
C:\>curl ifconfig.co
86.121.x.y
C:\>curl ifconfig.co/city
Bucharest
Check if port 44158 is open:
C:\>curl ifconfig.co/port/44158
{
"ip": "86.121.x.y",
"port": 44158,
"reachable": true
}
C:\>curl ifconfig.co/json
C:\>curl https://api.helium.io/v1/hotspots/xxxxxxxxxxx
Checking TCP port 44158 latency:
- From Windows: F:\>paping -p 44158 86.121.x.y
https://code.google.com/archive/p/paping/
paping v1.5.5 - Copyright (c) 2011 Mike Lovell
Connecting to 86.121.162.170 on TCP 44158:
Connected to 86.121.162.170: time=30.52ms protocol=TCP port=44158
Connected to 86.121.162.170: time=28.50ms protocol=TCP port=44158
Connected to 86.121.162.170: time=30.27ms protocol=TCP port=44158
Connected to 86.121.162.170: time=28.27ms protocol=TCP port=44158
Connected to 86.121.162.170: time=56.76ms protocol=TCP port=44158
Connected to 86.121.162.170: time=30.44ms protocol=TCP port=44158
Connection statistics:
Attempted = 6, Connected = 6, Failed = 0 (0.00%)
Approximate connection times:
Minimum = 28.27ms, Maximum = 56.76ms, Average = 34.13ms
- From LInux: hping3: FLAG: SA = SYN ACK, port open
Bobcat Uplink (green) 4-6 Mbps vs Downlink (red) 1-3Mbps, traffic done every ~~ 50 +/- seconds
Bobcat after 48 Hours, stock antenna, changing from 25 to 45 witnesses in last 24 hours. 1.14 HNT/24h.
14.09.2021
Traffic done after the initial synchronization : around 3.5GB/day so around 105 GB/month
After an Internet 10 minutes short outage, the UL/DL traffic catches up very slow - 2-3 hours. What is the mining impact?
Diagnostic report over Bluetooth
If the IP starts with 172.17.x.x, it is the Internal Docket container IP, not the one provided by the local network, you can ignore it.
16.09.2021
How to find the Bobcat IP ?
1. Easiest way: Install Android app: Angry Port Scanner , scan for port 44158
2. other methods:
- Look in the router
- From Diagnostic Report window
- Nslookup bobcatminer
C:\nslookup bobcatminer
Server: router.asus.com
Address: 192.168.x.y
Name: bobcatminer
Address: 192.168.z.v
- In Windows, you can do this with:
for /l %i in (1,1,254) do ping -n 1 -w 50 192.168.0.%i
Basically, you are running ping in a 'for' loop. The arguments are thus:
- /l -- causes 'for' to loop
- %i -- incrementing variable
- (start, increment, end) -- the start, increment, and ending values
- -n -- number of packets to send
- -w -- time in milliseconds to wait for a reply
After that completes, you can review the ARP table with
arp -a
From <https://superuser.com/questions/29640/inverse-arp-lookup>
seed.helium.io
C:\>nslookup seed.helium.io
Server: UnKnown
Address: 10.160.1.1
Non-authoritative answer:
Name: seed.helium.io
Addresses: 54.207.252.240
18.223.200.123
52.14.209.51
13.237.200.108
3.141.114.10
35.82.232.132
3.34.10.207
54.77.28.37
13.238.174.45
3.34.112.22
18.139.45.54
54.232.171.76
35.162.25.187
18.138.26.136
54.66.57.169
3.38.19.15
44.235.149.49
3.67.159.30
18.198.132.196
54.75.67.249
34.249.122.195
18.195.81.30
18.141.125.188
18.230.47.214
17.09.2021 Bobcat access statistics:
ccess Time MAC Address / Client Name Domain Name
2021-9-17 07:30:07 bobcatminer api.helium.io
2021-9-08 15:59:49 bobcatminer bobcatminer-registry.cn-shanghai.cr.aliyuncs.com
2021-9-17 07:23:30 bobcatminer cdn02.quay.io
2021-9-08 15:59:50 bobcatminer cri-5elympsk32wrp0ey-registry.oss-cn-shanghai.aliyuncs.com
2021-9-08 15:59:47 bobcatminer dockerauth.cn-shanghai.aliyuncs.com
2021-9-09 14:56:34 bobcatminer eu868.s3.amazonaws.com
2021-9-09 13:04:59 bobcatminer eu868.s3.eu-west-3.amazonaws.com
2021-9-17 07:30:19 bobcatminer ifconfig.co
2021-9-17 07:56:21 bobcatminer iot-060a02x1.mqtt.iothub.aliyuncs.com
2021-9-17 09:00:03 bobcatminer iot-060a08zr.mqtt.iothub.aliyuncs.com
2021-9-17 07:22:06 bobcatminer iotx-ota.oss-cn-shanghai.aliyuncs.com
2021-9-17 07:23:05 bobcatminer ipv4.connman.net
2021-9-16 21:15:50 bobcatminer onboarding.dewi.org
2021-9-17 07:23:30 bobcatminer quay.io
2021-9-08 16:00:39 bobcatminer snapshots.helium.wtf
2021-9-17 03:23:42 bobcatminer www.speedtest.net
18.09.2021 Helium API - Hotspot Info. (Use Firefox)
https://www.youtube.com/watch?v=Sc6kIAc96Jc
https://api.helium.io/v1/hotspots/113NXiejfsFt8gaiuv82X755xocFpu1B9c5UrhRqTf6wzGAh5sa
C:\>curl https://api.helium.io/v1/hotspots/xxxxxxxxxxx
23.09.2021 How much Reward for data packets
1 DC = 24 Byte Packet = $0.00001 USD (Credit Card purchases: minimum $10)
112 DC = 0.00112 USD - spent by the Sensor Owner ?
0.000059 HNT x 20 USD = 0.00111746 - received by the Hotspot Owner
the same figures?
28.09.2021
Hotspot Spoofing in China proven with a mapper
29.09.2021 Bobcat UE Certification: https://d523ddbc-be3d-4ce8-9f4a-86e1d9b2472b.filesusr.com/ugd/a849fd_3200871a720f4bd2820545cac16798d1.pdf?ref=bobcat
ERP, EIRP ...
02.10.2021
Bobcat traffic during synching. mainly DL, in red
09.10.2021
New 5.8 dBi antenna + 1m cable
Cable +connectors loss: 0.6 dBi
No comments:
Post a Comment