mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-05 04:42:23 +08:00
26 lines
1 KiB
TOML
26 lines
1 KiB
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 network usage (mandatory). Possible values:
|
|
# - subnet: this is a subnetwork announced by this AS.
|
|
# - loopback: this is a loopback IP (mainly used in anycast). The IP prefix should be a /32 (ipv4) or /64 (ipv6) one. Overlap check is skipped.
|
|
# If you have no idea what this is, please fill in "subnet".
|
|
# Any other value is considered invalid and will result in this CIDR being skipped entirely.
|
|
type = ""
|
|
|
|
# IP network name (mandatory).
|
|
name = ""
|
|
|
|
# IP network 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 = ""
|