entitydb/README.md

41 lines
816 B
Markdown
Raw Normal View History

2021-06-02 20:44:19 +00:00
# entitydb
2021-06-02 20:52:15 +00:00
EntityDB holds all network allocations and associated information.
## Format
Firstly create an entry by creating a directory with your unique username, `deavmi/` for example.
2021-06-03 08:13:14 +00:00
### Networks
2021-06-02 20:52:15 +00:00
2021-06-03 08:51:27 +00:00
All network declarations are created as entries in the file `deavmi/network` as so:
2021-06-02 20:52:15 +00:00
```
2021-06-03 08:13:14 +00:00
[deavmi.home.network]
# Required network information
Prefix="fdd2:cbf2:61bd::/48"
# For network connectivity tests
RouterIP="fdd2:cbf2:61bd::1"
2021-06-03 08:51:27 +00:00
[deavmi.community.network1]
# Required network information
Prefix="fd08:8441:e254::/48"
# For network connectivity tests
RouterIP="fd08:8441:e254::1"
2021-06-03 08:14:09 +00:00
```
### Services
All network services are declared within `deavmi/services` (file) like so:
```
[Web server]
address="fdd2:cbf2:61bd::2"
port=80
[Babel web]
address="fdd2:cbf2:61bd::2"
port=4444
2021-06-03 15:21:24 +00:00
```