mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-13 14:12:24 +08:00
232f4e8630
TOML has been using for a while, but the documentation is still describing the old Bash syntax. Rewrite them.
24 lines
784 B
TOML
24 lines
784 B
TOML
# Template file for the route registry (route/)
|
|
# Before submission, please:
|
|
# - Rename the file to "AS<ASN>.toml", without the quotes.
|
|
# - Remove any blank lines, comments, and unneeded options.
|
|
|
|
# Multiple IP prefixes can be announced in one file: start every prefix with its
|
|
# CIDR notation as the table name.
|
|
["10.127.0.0/32"]
|
|
|
|
# IP usage (mandatory). Possible values:
|
|
# - subnet: this is a subnetwork announced by this AS.
|
|
# - loopback: this is a loopback IP. The IP prefix should be a /32 one.
|
|
type = ""
|
|
|
|
# IP name (mandatory).
|
|
name = ""
|
|
|
|
# IP description (optional).
|
|
description = ""
|
|
|
|
# The supernet of this IP network (optional). Overlapping IP prefixes are
|
|
# regarded as an error, so if this IP network is a subnet of another one, write
|
|
# their IP prefix here.
|
|
supernet = ""
|