All Projects → iotaledger → autopeering-sim

iotaledger / autopeering-sim

Licence: Apache-2.0 license
Autopeering Simulator

Programming Languages

go
31211 projects - #10 most used programming language
javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language
CSS
56736 projects
HTML
75241 projects

A simulator for testing the IOTA autopeering module

Discord StackExchange Apache 2.0 license Go version Build status Go Report Card

AboutDesignGetting startedSupporting the projectJoining the discussion


About

This repository is where the IOTA Foundation's Research Team simulates tests on the autopeering module to study and evaluate its performance.

By making this repository open source, the goal is to allow you to run your own simulations and get involved with development.

To find out more details about autopeering, see the following resources:

You can also see a working example of autopeering in our prototype node software called GoShimmer.

Design

The autopeering module is divided into two submodules:

  • Peer discovery: Responsible for operations such as discovering new peers and verifying their online status

  • Neighbor selection: Responsible for finding and managing neighbors

Autopeering design

Prerequisites

To complete this guide, you need to have at least version 1.13 of Go installed on your device.

To check if you have Go installed, run the following command:

go version

Getting started

To get started, follow these steps to build and run the simulator.

  1. Clone this repository

    git clone https://github.com/iotaledger/autopeering-sim.git
  2. Change into the autopeering-sim directory

    cd autopeering-sim
  3. Build the executable file

    go build -o sim
  4. If you're using Windows, append the .exe file extension to the sim file

  5. Run the simulation

    ./sim
    
  6. Open a web browser and go to http://localhost:8844 to see the simulator

visualize simulation

The highlighted colors show the following:

Blue line: New connections between neighbors Red line: A dropped connection between neighbors Blue circle: A node that is accepting a peering request Green circle: A node that is sending a peering request

Examining the data

To analyse the results of the simulation, read the .csv files in the data directory:

  • comvAnalysis: Proportion of nodes with a complete neighborhood and average number of neighbors as a function of time
  • linkAnalysis: Probability Density Function (PDF) of the time a given link stays active
  • msgAnalysis: Number of peering requests sent, accepted, rejected, received and the number of connections dropped of each peer, as well as their average

Visualizing the data

To generate graphs of the data, run the provided Python script.

You must have Python and PIP installed to run this script. The script generates graphs in .eps files, so to view the graphs, you also need an application that can open these files.

  1. Install the dependencies

    pip install numpy matplotlib
  2. Run the script plot.py script from the simulation directory

    python plot.py
    

The graphs provide two figures:

  • The proportion of nodes with a complete neighborhood and the average number of neighbors as a function of time
  • The Probability Density Function (PDF) of the time a given link stays active

Example graph

Parameters

These parameters affect how the simulation behaves. As a result, changing these parameters has an affect on how long the protocol takes to converge.

To change any of these parameters, edit them in the config.json file.

Parameter Type Description
NumberNodes int Number of nodes that try to autopeer in the simulation
Duration int Duration of the simulation in seconds
SaltLifetime int How often the public salt changes for each node in seconds
VisualEnabled bool Whether the visualization server is enabled
DropOnUpdate bool Whether to drop all connections to neighbors each time the SaltLifetime parameter expires

Protobuf files

The messages exchanged during autopeering are serialized using Protocol Buffers. To generate the corresponding Go files after changing the protobuf files, use the following command:

make compile

Supporting the project

If you want to contribute to the code, consider posting a bug report, feature request or a pull request.

See the contributing guidelines for more information.

Joining the discussion

If you want to get involved in the community, need help getting started, have any issues related to the repository or just want to discuss blockchain, distributed ledgers, and IoT with other people, feel free to join our Discord.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].