> For the complete documentation index, see [llms.txt](https://scdo-project.gitbook.io/scdo-wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://scdo-project.gitbook.io/scdo-wiki/developer/go-scdo/privatenet.md).

# Private Net

## Steps to build your own SCDO-network

Refer to [Getting Started With SCDO](https://github.com/scdoproject/scdowiki/tree/37e83702a88d801ce9b9b46db76adc84fe8634e8/Dev/go-scdo/Getting-Started-With-SCDO.html) to start a single node

* If you need to start one or multiple nodes to form a network，modify the list in the staticNodes field found in the file nodes1.json under `go-scdo\cmd\node\config`. The format for the staticNodes address is of the form “ip:port”. To add one or more addresses, use ”staticNodes”:\[“ip:port”,…]，where ip address is the ip of the servers in the cluster. Do not add your own machine address as it will be invalid. The addresses must be the nodes within the cluster. Refer to pic1 and pic2.

```
"p2p": {
    "privateKey":"0xf65e40c6809643b25ce4df33153da2f3338876f181f83d2281c6ac4a987b1479",
    "staticNodes": [],
    "address": "0.0.0.0:8057",
    "networkID": 1
  }
```

* For the configuration of other fields in nodes1.json, refer to **How to customize your node configurations** at [Getting Started With SCDO](https://github.com/scdoproject/scdowiki/tree/37e83702a88d801ce9b9b46db76adc84fe8634e8/Dev/go-scdo/Getting-Started-With-SCDO.html).
* When modifications are complete, the nodes will form a cluster when started.
