mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-21 21:00:41 +08:00
Migrate to TOML format (#81)
This commit is contained in:
parent
ec2dca732c
commit
7b933cc469
252 changed files with 922 additions and 857 deletions
8
.editorconfig
Normal file
8
.editorconfig
Normal file
|
@ -0,0 +1,8 @@
|
|||
root = true
|
||||
|
||||
[*.toml]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = false
|
||||
insert_final_newline = false
|
102
.github/workflows/roa.yml
vendored
102
.github/workflows/roa.yml
vendored
|
@ -4,9 +4,9 @@ name: roa_generator
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
branches: [master]
|
||||
schedule:
|
||||
- cron: '0 6 * * 1'
|
||||
- cron: "0 6 * * 1"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -15,54 +15,56 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: actions/checkout@master
|
||||
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
sudo apt update -qq
|
||||
sudo apt install -y python3 git openssh-client
|
||||
sudo apt install -y curl
|
||||
curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
|
||||
export PATH="$HOME/.pyenv/bin:$PATH"
|
||||
eval "$(pyenv init -)"
|
||||
eval "$(pyenv virtualenv-init -)"
|
||||
pyenv install 3.8.2
|
||||
pyenv shell 3.8.2
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
sudo apt update -qq
|
||||
sudo apt install -y python3 git openssh-client
|
||||
sudo apt install -y curl
|
||||
curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
|
||||
export PATH="$HOME/.pyenv/bin:$PATH"
|
||||
eval "$(pyenv init -)"
|
||||
eval "$(pyenv virtualenv-init -)"
|
||||
pyenv install 3.8.2
|
||||
pyenv shell 3.8.2
|
||||
pip install toml
|
||||
|
||||
- name: Run roa script
|
||||
shell: bash
|
||||
run: |
|
||||
export PATH="$HOME/.pyenv/bin:$PATH"
|
||||
eval "$(pyenv init -)"
|
||||
eval "$(pyenv virtualenv-init -)"
|
||||
pyenv shell 3.8.2
|
||||
maxlen4=29
|
||||
maxlen6=64
|
||||
mkdir -p roa_dir
|
||||
pyenv exec python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -o roa_dir/roa46_bird2.conf
|
||||
pyenv exec python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -4 -o roa_dir/roa4_bird2.conf
|
||||
pyenv exec python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -6 -o roa_dir/roa6_bird2.conf
|
||||
pyenv exec python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -j -o roa_dir/roa46.json
|
||||
pyenv exec python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -e -o roa_dir/neonetwork.json
|
||||
pyenv exec python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -r -o roa_dir/rfc8416.json
|
||||
- name: Run roa script
|
||||
shell: bash
|
||||
run: |
|
||||
export PATH="$HOME/.pyenv/bin:$PATH"
|
||||
eval "$(pyenv init -)"
|
||||
eval "$(pyenv virtualenv-init -)"
|
||||
pyenv shell 3.8.2
|
||||
maxlen4=29
|
||||
maxlen6=64
|
||||
mkdir -p roa_dir
|
||||
pyenv exec python3 scripts/roa-ng.py -m ${maxlen4} -M ${maxlen6} -o roa_dir/roa46_bird2.conf
|
||||
pyenv exec python3 scripts/roa-ng.py -m ${maxlen4} -M ${maxlen6} -4 -o roa_dir/roa4_bird2.conf
|
||||
pyenv exec python3 scripts/roa-ng.py -m ${maxlen4} -M ${maxlen6} -6 -o roa_dir/roa6_bird2.conf
|
||||
pyenv exec python3 scripts/roa-ng.py -m ${maxlen4} -M ${maxlen6} -j -o roa_dir/roa46.json
|
||||
pyenv exec python3 scripts/roa-ng.py -m ${maxlen4} -M ${maxlen6} -e -o roa_dir/neonetwork.json
|
||||
pyenv exec python3 scripts/roa-ng.py -m ${maxlen4} -M ${maxlen6} -r -o roa_dir/rfc8416.json
|
||||
pyenv exec python3 scripts/roa-ng.py --summary --output roa_dir/README.txt
|
||||
|
||||
- name: Upload files
|
||||
env:
|
||||
SSHPRIVKEY: ${{ secrets.KEY }}
|
||||
shell: bash
|
||||
run: |
|
||||
cd roa_dir
|
||||
[ -n "$SSHPRIVKEY" ] || (echo SSHPRIVKEY is not set; exit 1)
|
||||
( set -e;
|
||||
mkdir -p ~/.ssh
|
||||
echo "$SSHPRIVKEY" |base64 -d > ~/.ssh/id_ed25519
|
||||
chmod 0600 ~/.ssh/id_ed25519
|
||||
ssh -o StrictHostKeyChecking=no git@github.com || true
|
||||
git init && git add .
|
||||
git config user.name "neonet roa bot"
|
||||
git config user.email "bot@github.com"
|
||||
git commit -m "Generated at $(TZ='UTC' date +%Y%m%d-%H%M%S.%N)"
|
||||
git push --force --quiet "git@github.com:NeoCloud/NeoNetwork-ROA.git" HEAD:master
|
||||
) || (shred ~/.ssh/id_ed25519; exit 1)
|
||||
shred ~/.ssh/id_ed25519
|
||||
- name: Upload files
|
||||
env:
|
||||
SSHPRIVKEY: ${{ secrets.KEY }}
|
||||
shell: bash
|
||||
run: |
|
||||
cd roa_dir
|
||||
[ -n "$SSHPRIVKEY" ] || (echo SSHPRIVKEY is not set; exit 1)
|
||||
( set -e;
|
||||
mkdir -p ~/.ssh
|
||||
echo "$SSHPRIVKEY" | base64 -d > ~/.ssh/id_ed25519
|
||||
chmod 0600 ~/.ssh/id_ed25519
|
||||
ssh -o StrictHostKeyChecking=no git@github.com || true
|
||||
git init && git add .
|
||||
git config user.name "neonet roa bot"
|
||||
git config user.email "bot@github.com"
|
||||
git commit -m "Generated at $(TZ='UTC' date +%Y%m%d-%H%M%S.%N)"
|
||||
git push --force --quiet "git@github.com:NeoCloud/NeoNetwork-ROA.git" HEAD:master
|
||||
) || (shred ~/.ssh/id_ed25519; exit 1)
|
||||
shred ~/.ssh/id_ed25519
|
||||
|
|
63
.github/workflows/test-your-pr.yml
vendored
63
.github/workflows/test-your-pr.yml
vendored
|
@ -13,36 +13,37 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
- uses: actions/checkout@master
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
sudo apt update -qq
|
||||
sudo apt install -y python3 git openssh-client
|
||||
sudo apt install -y curl
|
||||
curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
|
||||
export PATH="$HOME/.pyenv/bin:$PATH"
|
||||
eval "$(pyenv init -)"
|
||||
eval "$(pyenv virtualenv-init -)"
|
||||
pyenv install 3.8.2
|
||||
pyenv shell 3.8.2
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
sudo apt update -qq
|
||||
sudo apt install -y python3 git openssh-client
|
||||
sudo apt install -y curl
|
||||
curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
|
||||
export PATH="$HOME/.pyenv/bin:$PATH"
|
||||
eval "$(pyenv init -)"
|
||||
eval "$(pyenv virtualenv-init -)"
|
||||
pyenv install 3.8.2
|
||||
pyenv shell 3.8.2
|
||||
pip install toml
|
||||
|
||||
- name: Run roa script
|
||||
shell: bash
|
||||
run: |
|
||||
export PATH="$HOME/.pyenv/bin:$PATH"
|
||||
eval "$(pyenv init -)"
|
||||
eval "$(pyenv virtualenv-init -)"
|
||||
pyenv shell 3.8.2
|
||||
maxlen4=29
|
||||
maxlen6=64
|
||||
mkdir -p roa_dir
|
||||
pyenv exec python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -o roa_dir/roa46_bird2.conf
|
||||
pyenv exec python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -4 -o roa_dir/roa4_bird2.conf
|
||||
pyenv exec python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -6 -o roa_dir/roa6_bird2.conf
|
||||
pyenv exec python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -j -o roa_dir/roa46.json
|
||||
pyenv exec python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -e -o roa_dir/neonetwork.json
|
||||
pyenv exec python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -r -o roa_dir/rfc8416.json
|
||||
- name: Run roa script
|
||||
shell: bash
|
||||
run: |
|
||||
export PATH="$HOME/.pyenv/bin:$PATH"
|
||||
eval "$(pyenv init -)"
|
||||
eval "$(pyenv virtualenv-init -)"
|
||||
pyenv shell 3.8.2
|
||||
maxlen4=29
|
||||
maxlen6=64
|
||||
mkdir -p roa_dir
|
||||
pyenv exec python3 scripts/roa-ng.py -m ${maxlen4} -M ${maxlen6} -o roa_dir/roa46_bird2.conf
|
||||
pyenv exec python3 scripts/roa-ng.py -m ${maxlen4} -M ${maxlen6} -4 -o roa_dir/roa4_bird2.conf
|
||||
pyenv exec python3 scripts/roa-ng.py -m ${maxlen4} -M ${maxlen6} -6 -o roa_dir/roa6_bird2.conf
|
||||
pyenv exec python3 scripts/roa-ng.py -m ${maxlen4} -M ${maxlen6} -j -o roa_dir/roa46.json
|
||||
pyenv exec python3 scripts/roa-ng.py -m ${maxlen4} -M ${maxlen6} -e -o roa_dir/neonetwork.json
|
||||
pyenv exec python3 scripts/roa-ng.py -m ${maxlen4} -M ${maxlen6} -r -o roa_dir/rfc8416.json
|
||||
|
|
3
.vscode/extensions.json
vendored
Normal file
3
.vscode/extensions.json
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"recommendations": ["bungcip.better-toml", "bodil.prettier-toml"]
|
||||
}
|
4
.vscode/settings.json
vendored
Normal file
4
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"editor.formatOnSave": true,
|
||||
"python.formatting.provider": "black"
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
NAME="Licson Internal Network"
|
||||
OWNER="licson"
|
||||
DESC=""
|
||||
SOURCE="INET"
|
||||
VALID="YES"
|
4
asn/AS134098.toml
Normal file
4
asn/AS134098.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
name = "Licson Internal Network"
|
||||
owner = "licson"
|
||||
source = "Internet"
|
||||
vaild = true
|
|
@ -1,4 +0,0 @@
|
|||
NAME="NeoNetwork Origin"
|
||||
OWNER="Neo_Chen"
|
||||
DESC=""
|
||||
SOURCE="NeoNetwork"
|
2
asn/AS4201270000.toml
Normal file
2
asn/AS4201270000.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "NeoNetwork Origin"
|
||||
owner = "Neo_Chen"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="Septs Inter-NeoNetwork Exchange"
|
||||
OWNER="Septs"
|
||||
DESC=""
|
||||
SOURCE="NeoNetwork"
|
2
asn/AS4201270001.toml
Normal file
2
asn/AS4201270001.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "Septs Inter-NeoNetwork Exchange"
|
||||
owner = "septs"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="Septs Home"
|
||||
OWNER="Septs"
|
||||
DESC=""
|
||||
SOURCE="NeoNetwork"
|
2
asn/AS4201270002.toml
Normal file
2
asn/AS4201270002.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "Septs HomeLabs"
|
||||
owner = "septs"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="chenx97"
|
||||
OWNER="chenx97"
|
||||
DESC=""
|
||||
SOURCE="NeoNetwork"
|
2
asn/AS4201270003.toml
Normal file
2
asn/AS4201270003.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "chenx97"
|
||||
owner = "chenx97"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="frank"
|
||||
OWNER="frank"
|
||||
DESC=""
|
||||
SOURCE="NeoNetwork"
|
2
asn/AS4201270004.toml
Normal file
2
asn/AS4201270004.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "frank"
|
||||
owner = "frank"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="Icecat"
|
||||
OWNER="Icecat"
|
||||
DESC="NextMoe Group Access Network"
|
||||
SOURCE="NeoNetwork"
|
3
asn/AS4201270005.toml
Normal file
3
asn/AS4201270005.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
name = "Icecat"
|
||||
owner = "Icecat"
|
||||
description = "NextMoe Group Access Network"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="Jerry Network"
|
||||
OWNER="JerryXiao"
|
||||
DESC=""
|
||||
SOURCE="NeoNetwork"
|
2
asn/AS4201270006.toml
Normal file
2
asn/AS4201270006.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "Jerry Network"
|
||||
owner = "JerryXiao"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="Staph"
|
||||
OWNER="Staph"
|
||||
DESC=""
|
||||
SOURCE="NeoNetwork"
|
2
asn/AS4201270007.toml
Normal file
2
asn/AS4201270007.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "Staph"
|
||||
owner = "Staph"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="MagicNeko"
|
||||
OWNER="Icecat"
|
||||
DESC="MagicNeko Network Internet exchange"
|
||||
SOURCE="NeoNetwork"
|
3
asn/AS4201270008.toml
Normal file
3
asn/AS4201270008.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
name = "MagicNeko"
|
||||
owner = "Icecat"
|
||||
description = "MagicNeko Network Internet exchange"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="santost12"
|
||||
OWNER="santost12"
|
||||
DESC=""
|
||||
SOURCE="NeoNetwork"
|
2
asn/AS4201270009.toml
Normal file
2
asn/AS4201270009.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "santost12"
|
||||
owner = "santost12"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="Lan Tian"
|
||||
OWNER="Lan Tian"
|
||||
DESC=""
|
||||
SOURCE="NeoNetwork"
|
2
asn/AS4201270010.toml
Normal file
2
asn/AS4201270010.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "Lan Tian"
|
||||
owner = "Lan Tian"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="LINE-NZ"
|
||||
OWNER="LINE-NZ"
|
||||
DESC=""
|
||||
SOURCE="NeoNetwork"
|
2
asn/AS4201270011.toml
Normal file
2
asn/AS4201270011.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "LINE-NZ"
|
||||
owner = "LINE-NZ"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="Yhi Interconnect"
|
||||
OWNER="Junde Yhi"
|
||||
DESC=""
|
||||
SOURCE="NeoNetwork"
|
2
asn/AS4201270012.toml
Normal file
2
asn/AS4201270012.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "Yhi Interconnect"
|
||||
owner = "Junde Yhi"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="NDOSKRNL"
|
||||
OWNER="Ndoskrnl"
|
||||
DESC="Ndoskrnl's Network"
|
||||
SOURCE="NeoNetwork"
|
3
asn/AS4201270013.toml
Normal file
3
asn/AS4201270013.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
name = "NDOSKRNL"
|
||||
owner = "Ndoskrnl"
|
||||
description = "Ndoskrnl's Network"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="leedagee"
|
||||
OWNER="leedagee"
|
||||
DESC=""
|
||||
SOURCE="NeoNetwork"
|
2
asn/AS4201270014.toml
Normal file
2
asn/AS4201270014.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "leedagee"
|
||||
owner = "leedagee"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="James58899"
|
||||
OWNER="James58899"
|
||||
DESC=""
|
||||
SOURCE="NeoNetwork"
|
2
asn/AS4201270015.toml
Normal file
2
asn/AS4201270015.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "James58899"
|
||||
owner = "James58899"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="Yangfl Network"
|
||||
OWNER="Yangfl"
|
||||
DESC=""
|
||||
SOURCE="DN42"
|
2
asn/AS4242420140.toml
Normal file
2
asn/AS4242420140.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "Yangfl Network"
|
||||
owner = "Yangfl"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="alanyhq"
|
||||
OWNER="alanyhq"
|
||||
DESC="alanyhq main"
|
||||
SOURCE="DN42"
|
3
asn/AS4242420916.toml
Normal file
3
asn/AS4242420916.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
name = "alanyhq"
|
||||
owner = "alanyhq"
|
||||
description = "alanyhq main"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="LibreHouse"
|
||||
OWNER="LibreHouse"
|
||||
DESC=""
|
||||
SOURCE="DN42"
|
2
asn/AS4242421037.toml
Normal file
2
asn/AS4242421037.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "SUNNET"
|
||||
owner = "SUNNET"
|
|
@ -1,4 +0,0 @@
|
|||
NAME="SUNNET"
|
||||
OWNER="SUNNET"
|
||||
DESC=""
|
||||
SOURCE="DN42"
|
2
asn/AS4242423088.toml
Normal file
2
asn/AS4242423088.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = "Yangfl Network"
|
||||
owner = "Yangfl"
|
|
@ -1,13 +0,0 @@
|
|||
NAME="Icecat"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:"
|
||||
"TELEGRAM:@fakeicecat"
|
||||
"IRC:"
|
||||
"MASTODON:"
|
||||
"GITHUB:Myer921"
|
||||
)
|
||||
BABEL=(
|
||||
""
|
||||
)
|
||||
AUTH=""
|
5
entity/Icecat.toml
Normal file
5
entity/Icecat.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
name = "Icecat"
|
||||
|
||||
[contact]
|
||||
telegram = "fakeicecat"
|
||||
github = "Myer921"
|
|
@ -1,13 +0,0 @@
|
|||
NAME="James58899"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:"
|
||||
"TELEGRAM:"
|
||||
"IRC:"
|
||||
"MASTODON:"
|
||||
"GITHUB:"
|
||||
)
|
||||
BABEL=(
|
||||
""
|
||||
)
|
||||
AUTH=""
|
1
entity/James58899.toml
Normal file
1
entity/James58899.toml
Normal file
|
@ -0,0 +1 @@
|
|||
name = "James58899"
|
|
@ -1,13 +0,0 @@
|
|||
NAME="JerryXiao"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:neonet@mail.jerryxiao.cc"
|
||||
"TELEGRAM:@JerryXiao"
|
||||
"IRC:JerryXiao@hackint"
|
||||
"MASTODON:"
|
||||
"GITHUB:isjerryxiao"
|
||||
)
|
||||
BABEL=(
|
||||
""
|
||||
)
|
||||
AUTH="PGP:186242204A2EC70438E9CE3B9D9CE43650FF2BAA"
|
10
entity/JerryXiao.toml
Normal file
10
entity/JerryXiao.toml
Normal file
|
@ -0,0 +1,10 @@
|
|||
name = "JerryXiao"
|
||||
|
||||
[contact]
|
||||
email = "neonet@mail.jerryxiao.cc"
|
||||
telegram = "JerryXiao"
|
||||
irc = "JerryXiao@hackint"
|
||||
github = "isjerryxiao"
|
||||
|
||||
[persona]
|
||||
pgp = "186242204A2EC70438E9CE3B9D9CE43650FF2BAA"
|
|
@ -1,19 +0,0 @@
|
|||
NAME="Junde Yhi"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:lmy441900@live.com"
|
||||
"TELEGRAM:@lmy441900"
|
||||
"MASTODON:@lmy441900@sn.angry.im"
|
||||
"GITHUB:lmy441900"
|
||||
)
|
||||
BABEL=(
|
||||
"zh-N"
|
||||
"zh-hans-N"
|
||||
"zh-hant-2"
|
||||
"en-3"
|
||||
"de-0"
|
||||
"ru-0"
|
||||
"jp-0"
|
||||
"fi-0"
|
||||
)
|
||||
AUTH="PGP:E6C74782A1FBEE741D09885FD274286F672C800A"
|
20
entity/Junde Yhi.toml
Normal file
20
entity/Junde Yhi.toml
Normal file
|
@ -0,0 +1,20 @@
|
|||
name = "Junde Yhi"
|
||||
babel = [
|
||||
"zh-N",
|
||||
"zh-hans-N",
|
||||
"zh-hant-2",
|
||||
"en-3",
|
||||
"de-0",
|
||||
"ru-0",
|
||||
"jp-0",
|
||||
"fi-0",
|
||||
]
|
||||
|
||||
[contact]
|
||||
email = "lmy441900@live.com"
|
||||
telegram = "lmy441900"
|
||||
mastodon = "@lmy441900@sn.angry.im"
|
||||
github = "lmy441900"
|
||||
|
||||
[persona]
|
||||
pgp = "E6C74782A1FBEE741D09885FD274286F672C800A"
|
|
@ -1,13 +0,0 @@
|
|||
NAME="LINE-NZ"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:dn42@line.co.nz"
|
||||
"TELEGRAM:"
|
||||
"IRC:"
|
||||
"MASTODON:"
|
||||
"GITHUB:line-nz"
|
||||
)
|
||||
BABEL=(
|
||||
"en"
|
||||
)
|
||||
AUTH=""
|
6
entity/LINE-NZ.toml
Normal file
6
entity/LINE-NZ.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
name = "LINE-NZ"
|
||||
babel = ["en"]
|
||||
|
||||
[contact]
|
||||
email = "dn42@line.co.nz"
|
||||
github = "line-nz"
|
|
@ -1,13 +0,0 @@
|
|||
NAME="Lan Tian"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:"
|
||||
"TELEGRAM:"
|
||||
"IRC:"
|
||||
"MASTODON:"
|
||||
"GITHUB:"
|
||||
)
|
||||
BABEL=(
|
||||
""
|
||||
)
|
||||
AUTH=""
|
1
entity/Lan Tian.toml
Normal file
1
entity/Lan Tian.toml
Normal file
|
@ -0,0 +1 @@
|
|||
name = "Lan Tian"
|
|
@ -1,17 +0,0 @@
|
|||
NAME="LibreHouse"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:i+noc@outv.im"
|
||||
"TELEGRAM:@outvi"
|
||||
"IRC:"
|
||||
"MASTODON:@outvi@moe.cat"
|
||||
"GITHUB:@outloudvi"
|
||||
)
|
||||
BABEL=(
|
||||
"zh-N"
|
||||
"zh-hans-N"
|
||||
"zh-hant-3"
|
||||
"en-2"
|
||||
"ja-0"
|
||||
)
|
||||
AUTH=""
|
11
entity/LibreHouse.toml
Normal file
11
entity/LibreHouse.toml
Normal file
|
@ -0,0 +1,11 @@
|
|||
name = "LibreHouse"
|
||||
babel = ["zh-N", "en-2"]
|
||||
|
||||
[contact]
|
||||
email = "i+noc@outv.im"
|
||||
telegram = "outvi"
|
||||
mastodon = "@outvi@moe.cat"
|
||||
github = "outloudvi"
|
||||
|
||||
[persona]
|
||||
pgp = "47627D2288B20CC033C7B7D72D83E4E89C15DA36"
|
|
@ -1,13 +0,0 @@
|
|||
NAME="Ndoskrnl"
|
||||
DESC="We can start chat happily with Google Translate :)"
|
||||
CONTACT=(
|
||||
"EMAIL:lollipop.studio.cn@gmail.com"
|
||||
"TELEGRAM:"
|
||||
"IRC:"
|
||||
"MASTODON:"
|
||||
"GITHUB:magic0whi"
|
||||
)
|
||||
BABEL=(
|
||||
"zh|en-1"
|
||||
)
|
||||
AUTH=""
|
7
entity/Ndoskrnl.toml
Normal file
7
entity/Ndoskrnl.toml
Normal file
|
@ -0,0 +1,7 @@
|
|||
name = "Ndoskrnl"
|
||||
description = "We can start chat happily with Google Translate :)"
|
||||
babel = ["en-1", "zh-1"]
|
||||
|
||||
[contact]
|
||||
email = "lollipop.studio.cn@gmail.com"
|
||||
github = "magic0whi"
|
|
@ -1,14 +0,0 @@
|
|||
NAME="Neo_Chen"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:chenkolei@gmail.com"
|
||||
"TELEGRAM:@Neo_Chen"
|
||||
"IRC:Neo_Chen"
|
||||
"MASTODON:@Neo_Chen@mastodon.xyz"
|
||||
"GITHUB:NeoChen1024"
|
||||
)
|
||||
BABEL=(
|
||||
"zh-N"
|
||||
"en-2"
|
||||
)
|
||||
AUTH="PGP:D306BB628837043150CD1E42CA0957540FD996CD"
|
12
entity/Neo_Chen.toml
Normal file
12
entity/Neo_Chen.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
name = "Neo_Chen"
|
||||
babel = ["zh-N", "en-2"]
|
||||
|
||||
[contact]
|
||||
email = "chenkolei@gmail.com"
|
||||
telegram = "Neo_Chen"
|
||||
irc = "Neo_Chen"
|
||||
mastodon = "@Neo_Chen@mastodon.xyz"
|
||||
github = "Neo_Chen"
|
||||
|
||||
[persona]
|
||||
pgp = "D306BB628837043150CD1E42CA0957540FD996CD"
|
|
@ -1,13 +0,0 @@
|
|||
NAME="SUNNET"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:"
|
||||
"TELEGRAM:"
|
||||
"IRC:"
|
||||
"MASTODON:"
|
||||
"GITHUB:"
|
||||
)
|
||||
BABEL=(
|
||||
""
|
||||
)
|
||||
AUTH=""
|
1
entity/SUNNET.toml
Normal file
1
entity/SUNNET.toml
Normal file
|
@ -0,0 +1 @@
|
|||
name = "SUNNET"
|
13
entity/Septs
13
entity/Septs
|
@ -1,13 +0,0 @@
|
|||
NAME="Septs"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:bgp@septs.email"
|
||||
"TELEGRAM:"
|
||||
"IRC:"
|
||||
"MASTODON:"
|
||||
"GITHUB:"
|
||||
)
|
||||
BABEL=(
|
||||
""
|
||||
)
|
||||
AUTH=""
|
17
entity/Staph
17
entity/Staph
|
@ -1,17 +0,0 @@
|
|||
NAME="Staph"
|
||||
DESC="A programming prokaryotic organism"
|
||||
CONTACT=(
|
||||
"EMAIL: staph@aosc.io"
|
||||
"TELEGRAM: @Staph"
|
||||
"IRC: Staph_aureus"
|
||||
"MASTODON:"
|
||||
"GITHUB: StephDC"
|
||||
)
|
||||
BABEL=(
|
||||
"zh-N"
|
||||
"en-4"
|
||||
"ja-2"
|
||||
"es-1"
|
||||
"fr-1"
|
||||
)
|
||||
AUTH=""
|
9
entity/Staph.toml
Normal file
9
entity/Staph.toml
Normal file
|
@ -0,0 +1,9 @@
|
|||
name = "Staph"
|
||||
description = "A programming prokaryotic organism"
|
||||
babel = ["zh-N", "en-4", "ja-2", "es-1", "fr-1"]
|
||||
|
||||
[contact]
|
||||
email = "staph@aosc.io"
|
||||
telegram = "Staph"
|
||||
irc = "Staph_aureus"
|
||||
github = "StephDC"
|
|
@ -1,13 +0,0 @@
|
|||
NAME="Yangfl Network"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:"
|
||||
"TELEGRAM:"
|
||||
"IRC:"
|
||||
"MASTODON:"
|
||||
"GITHUB:"
|
||||
)
|
||||
BABEL=(
|
||||
""
|
||||
)
|
||||
AUTH=""
|
1
entity/Yangfl.toml
Normal file
1
entity/Yangfl.toml
Normal file
|
@ -0,0 +1 @@
|
|||
name = "Yangfl Network"
|
|
@ -1,14 +0,0 @@
|
|||
NAME="alanyhq"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:"
|
||||
"TELEGRAM:@alanyhq"
|
||||
"IRC:alanyhq"
|
||||
"MASTODON:"
|
||||
"GITHUB:"
|
||||
)
|
||||
BABEL=(
|
||||
"zh-N"
|
||||
"en-2"
|
||||
)
|
||||
AUTH=""
|
5
entity/alanyhq.toml
Normal file
5
entity/alanyhq.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
name = "alanyhq"
|
||||
babel = ["zh-N", "en-2"]
|
||||
|
||||
[contact]
|
||||
telegram = "alanyhq"
|
|
@ -1,13 +0,0 @@
|
|||
NAME="chenx97"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:chenx97@gmail.com"
|
||||
"TELEGRAM:"
|
||||
"IRC:"
|
||||
"MASTODON:"
|
||||
"GITHUB:chenx97"
|
||||
)
|
||||
BABEL=(
|
||||
""
|
||||
)
|
||||
AUTH=""
|
5
entity/chenx97.toml
Normal file
5
entity/chenx97.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
name = "chenx97"
|
||||
|
||||
[contact]
|
||||
email = "chenx97@gmail.com"
|
||||
github = "chenx97"
|
13
entity/frank
13
entity/frank
|
@ -1,13 +0,0 @@
|
|||
NAME="frank"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:"
|
||||
"TELEGRAM:"
|
||||
"IRC:"
|
||||
"MASTODON:"
|
||||
"GITHUB:"
|
||||
)
|
||||
BABEL=(
|
||||
""
|
||||
)
|
||||
AUTH=""
|
1
entity/frank.toml
Normal file
1
entity/frank.toml
Normal file
|
@ -0,0 +1 @@
|
|||
name = "frank"
|
|
@ -1,13 +0,0 @@
|
|||
NAME="leedagee"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:leedageea@gmail.com"
|
||||
"TELEGRAM:@leedagee"
|
||||
"IRC:lizr"
|
||||
"GITHUB:leedagee"
|
||||
)
|
||||
BABEL=(
|
||||
"zh-N"
|
||||
"en-2"
|
||||
)
|
||||
AUTH="PGP:47627D2288B20CC033C7B7D72D83E4E89C15DA36"
|
8
entity/leedagee.toml
Normal file
8
entity/leedagee.toml
Normal file
|
@ -0,0 +1,8 @@
|
|||
name = "leedagee"
|
||||
babel = ["zh-N", "zh-hans-N", "zh-hant-3", "en-2", "ja-0"]
|
||||
|
||||
[contact]
|
||||
email = "leedageea@gmail.com"
|
||||
telegram = "leedagee"
|
||||
irc = "lizr"
|
||||
github = "leedagee"
|
|
@ -1,13 +0,0 @@
|
|||
NAME="licson"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:admin@licson.net"
|
||||
"TELEGRAM:licson"
|
||||
"IRC:licson"
|
||||
"MASTODON:"
|
||||
"GITHUB:licson0729"
|
||||
)
|
||||
BABEL=(
|
||||
""
|
||||
)
|
||||
AUTH=""
|
6
entity/licson.toml
Normal file
6
entity/licson.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
name = "licson"
|
||||
|
||||
[contact]
|
||||
email = "admin@licson.net"
|
||||
telegram = "licson"
|
||||
github = "licson0729"
|
|
@ -1,13 +0,0 @@
|
|||
NAME="santost12"
|
||||
DESC=""
|
||||
CONTACT=(
|
||||
"EMAIL:tylersantos12@protonmail.com"
|
||||
"TELEGRAM:"
|
||||
"IRC:"
|
||||
"MASTODON:"
|
||||
"GITHUB:santost12"
|
||||
)
|
||||
BABEL=(
|
||||
""
|
||||
)
|
||||
AUTH=""
|
5
entity/santost12.toml
Normal file
5
entity/santost12.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
name = "santost12"
|
||||
|
||||
[contact]
|
||||
email = "tylersantos12@protonmail.com"
|
||||
github = "santost12"
|
6
entity/septs.toml
Normal file
6
entity/septs.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
name = "septs"
|
||||
|
||||
[contact]
|
||||
email = "bgp@septs.email"
|
||||
telegram = "septs"
|
||||
github = "septs"
|
|
@ -1,6 +0,0 @@
|
|||
ASN="4201270005"
|
||||
DESC=""
|
||||
IP=(
|
||||
"10.127.233.1/24"
|
||||
"fd10:127:233:1c3c::1/64"
|
||||
)
|
3
node/Icecat.toml
Normal file
3
node/Icecat.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
[Icecat-GroupAccessNetwork]
|
||||
asn = 4201270005
|
||||
cidr = ["10.127.233.1/24", "fd10:127:233:1c3c::1/64"]
|
|
@ -1,4 +0,0 @@
|
|||
ASN="4201270015"
|
||||
DESC=""
|
||||
IP=(
|
||||
)
|
2
node/James58899.toml
Normal file
2
node/James58899.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
[James58899]
|
||||
asn = 4201270015
|
|
@ -1,5 +0,0 @@
|
|||
ASN="4201270006"
|
||||
DESC=""
|
||||
IP=(
|
||||
"10.127.x.x/x"
|
||||
)
|
|
@ -1,4 +0,0 @@
|
|||
ASN="4201270006"
|
||||
DESC=""
|
||||
IP=(
|
||||
)
|
|
@ -1,4 +0,0 @@
|
|||
ASN="4201270006"
|
||||
DESC=""
|
||||
IP=(
|
||||
)
|
|
@ -1,4 +0,0 @@
|
|||
ASN="4201270006"
|
||||
DESC=""
|
||||
IP=(
|
||||
)
|
11
node/JerryXiao.toml
Normal file
11
node/JerryXiao.toml
Normal file
|
@ -0,0 +1,11 @@
|
|||
[JerryXiao]
|
||||
asn = 4201270006
|
||||
|
||||
[JerryXiao-SH1]
|
||||
asn = 4201270006
|
||||
|
||||
[JerryXiao-HK1]
|
||||
asn = 4201270006
|
||||
|
||||
[JerryXiao-HK2]
|
||||
asn = 4201270006
|
|
@ -1,5 +0,0 @@
|
|||
ASN="4201270011"
|
||||
DESC="LINE-NZ Cloud"
|
||||
IP=(
|
||||
"10.127.22.9/29"
|
||||
)
|
|
@ -1,5 +0,0 @@
|
|||
ASN="4201270011"
|
||||
DESC="LINE-NZ Home"
|
||||
IP=(
|
||||
"10.127.22.1/29"
|
||||
)
|
9
node/LINE-NZ.toml
Normal file
9
node/LINE-NZ.toml
Normal file
|
@ -0,0 +1,9 @@
|
|||
[LINE-NZ-NZ01]
|
||||
asn = 4201270011
|
||||
description = "LINE-NZ Home"
|
||||
cidr = ["10.127.22.1/29"]
|
||||
|
||||
[LINE-NZ-AU01]
|
||||
asn = 4201270011
|
||||
description = "LINE-NZ Cloud"
|
||||
cidr = ["10.127.22.9/29"]
|
|
@ -1,4 +0,0 @@
|
|||
ASN="4201270010"
|
||||
DESC=""
|
||||
IP=(
|
||||
)
|
2
node/LanTian.toml
Normal file
2
node/LanTian.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
[LanTian]
|
||||
asn = 4201270010
|
|
@ -1,6 +0,0 @@
|
|||
ASN="4201270008"
|
||||
DESC="Magicneko IX LAN interconnection"
|
||||
IP=(
|
||||
"10.127.4.10/24"
|
||||
"fd10:127:0233:7170:2021::10.127.4.10/80"
|
||||
)
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue