Our next testnet, NodeDiscoveryNet, is looking to see how our network discovery is coming for nodes.
We’ve recently made a change to use only Manual
kbucket inserts, as the default appeared to be overzealous and including a lot of erroneous connection info in our routing table. We’ve also made some other improvements to reduce messaging (there was a misused API returning more nodes than we thought), along with other wee client and node improvements.
With all that, our objectives for this testnet are relatively simple:
- Verify if we still have “lost nodes” and get more logs around that.
- Verify recent improvements to safeup and client
- Discern “normal” node mem usage (specifcally how many nodes can we reliably run per droplet, or indeed shine a light on any issues there).
Connecting to NodeDiscoveryNet
Contact peers to be used for this network (more on how to use this below):
SAFE_PEERS="/ip4/54.82.83.176/tcp/35175/p2p/12D3KooWPhVptRnwNXfqtENhq1GNxCnyNBPcJu7xALPFQ72KTBii"
----
backup peers:
"/ip4/165.22.123.138/tcp/32829/p2p/12D3KooWDBADELzFmK2QsogC5fhyykuKgx1TgwRUTMsxhtNiEvE3"
"/ip4/209.97.135.15/tcp/35163/p2p/12D3KooWKJhKQYLaUkUswudPvadrFRqf2Ek1Y5WCdza2BNbKp2ZK"
"/ip4/144.126.234.217/tcp/36999/p2p/12D3KooWJar7TFTMvs6CkGV74uaManMgg1ifBBK1ymdjanWsN9K7"
"/ip4/206.189.21.85/tcp/45321/p2p/12D3KooWCvzb8wh89pTT7pVbucwQxf77ev1mkJSWTFr24g6YvSVi"
"/ip4/144.126.234.217/tcp/34009/p2p/12D3KooWJko6yg2XBu16jgMUkLtbgc8uT1mzuhvkN1R7faZSKRex"
"/ip4/165.22.123.138/tcp/41377/p2p/12D3KooWBPdhoD9uSbtwFeiQWmTZT2Lhaz2HRrgtLWauMwYQK1pK"
"/ip4/209.97.135.15/tcp/43403/p2p/12D3KooWP99DA2h2BDATrAozCQMSichc4YY2di3hnBnq7qVGAogn"
"/ip4/165.227.237.179/tcp/37839/p2p/12D3KooWPk6QV3YjWFZBHZaZBG7kb6rX2krnESFrvgdiqv9GH1ZD"
Initial Network
We have 100 droplets running a total of ~2000 nodes. One droplet has 2vcpu and 4GB of memory. (this is 2gb above prior testnets, with nodes sometimes peaking higher with churn; this appears fleeting and may just be normal run conditions… ).
Installing Components
Interacting with the network requires the safe
client binary. Running a node requires the safenode
binary.
Obtaining them depends on the operating system you’re using, but the process is almost identical for both.
Install safeup
The safeup
binary can be used to obtain the client and node binaries.
macOS/Linux (root)
curl -sSL https://raw.githubusercontent.com/maidsafe/safeup/main/install.sh | sudo bash
macOS/Linux (current user)
curl -sSL https://raw.githubusercontent.com/maidsafe/safeup/main/install.sh | bash
Windows
Run the following command in a Powershell session (be careful to use Powershell, not cmd):
iex (Invoke-RestMethod -Uri "https://raw.githubusercontent.com/maidsafe/safeup/main/install.ps1")
Install Binaries
Once you have safeup
, you can install the binaries using these commands on any platform. Note: for Linux/macOS users, prefix the commands with sudo
if you wish to install system wide.
Install safenode
:
safeup node -v 0.86.5
Install safe
:
safeup client -v 0.79.5
Using the Client
Once you have the client, you need to either set the SAFE_PEERS
environmental variable or use the --peer=
argument with any of the above network addresses.
Now to upload a directory/file to the network, use the following command:
# using the SAFE_PEERS variable (use 'SET' instead of 'export' on Windows) **[should be $env:SAFE_PEERS.. If set should be lower case I think - JL]**
export SAFE_PEERS="/ip4/206.189.21.247/tcp/45415/p2p/12D3KooWJa8AZnpp8uxUHHU7VJj1Stypm1Nt5bV3Yc62KnatRVFK"
safe files upload -- <path>
# alternatively using the --peer argument. It should be set during each command
safe --peer="/ip4/206.189.21.247/tcp/45415/p2p/12D3KooWJa8AZnpp8uxUHHU7VJj1Stypm1Nt5bV3Yc62KnatRVFK" files upload -- <path>
The file addresses of the content you’ve uploaded are saved locally and are used to enable automatic downloads. Use the following command to download them once more.
To download the content you’ve just uploaded:
safe files download
That will download the file(s) to [default dirs in Linux/Mac/Windows]
To download a file to a particular file name and/or directory use
safe file download [directory/filename] [XORURL]
Running a Node
Connect your node to the network using the SAFE_PEERS
environment variable or the --peer
argument, similar to the client. Consider keeping your logs in a directory for convenience:
SN_LOG=all safenode
Windows is almost identical, but environment variables are handled a little differently:
$env:SN_LOG="all"; safenode