mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-22 18:00:41 +08:00
Added ASN registeration file
This commit is contained in:
parent
d820d45a3c
commit
d6324782e4
4 changed files with 17 additions and 2 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
nodes.png
|
5
asn.txt
Normal file
5
asn.txt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# NeoNetwork uses the 32 bit private AS number range
|
||||||
|
# 4201048576 ~ 4202097152
|
||||||
|
|
||||||
|
# ASN Name
|
||||||
|
4201048576 Neo_Chen
|
9
makegraph.sh
Executable file
9
makegraph.sh
Executable file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -xe
|
||||||
|
|
||||||
|
if which dot 2>&1 > /dev/null ; then
|
||||||
|
dot -T png nodes.dot -o nodes.png
|
||||||
|
else
|
||||||
|
echo 'You need to install graphviz first'
|
||||||
|
fi
|
|
@ -1,7 +1,7 @@
|
||||||
digraph ""
|
digraph ""
|
||||||
{
|
{
|
||||||
labelloc="t";
|
labelloc="t";
|
||||||
label="NeoNetwork OSPF Transit";
|
label="NeoNetwork Nodes";
|
||||||
rankdir=TD
|
rankdir=TD
|
||||||
node [shape=box]
|
node [shape=box]
|
||||||
c [label="caasih.nerdpol.ovh"]
|
c [label="caasih.nerdpol.ovh"]
|
||||||
|
@ -9,7 +9,7 @@ digraph ""
|
||||||
np11 [label="NeoPDP-11"]
|
np11 [label="NeoPDP-11"]
|
||||||
cklvax [label="cklvax"]
|
cklvax [label="cklvax"]
|
||||||
neobox [label="NeoBOX"]
|
neobox [label="NeoBOX"]
|
||||||
local [label="10.127.1.0/24 (CRoom)"]
|
local [label="CROOM (10.127.1.0/24)"]
|
||||||
np [label="NeoPortable"]
|
np [label="NeoPortable"]
|
||||||
nv [label="NeoVAX"]
|
nv [label="NeoVAX"]
|
||||||
|
|
Loading…
Reference in a new issue