mirror of
https://git.dn42.dev/dn42/registry.git
synced 2025-05-08 05:35:23 +08:00
Merge branch 'master' of git.dn42.dev:dn42/registry
This commit is contained in:
commit
441bb61e5e
107 changed files with 652 additions and 237 deletions
123
README.md
123
README.md
|
@ -1,15 +1,112 @@
|
|||
# THE REGISTRY HAS MOVED
|
||||
https://git.dn42.dev/dn42/registry
|
||||
*This repo is https://git.dn42.dev/dn42/registry
|
||||
If you are using a different url, please update as soon as possible*
|
||||
|
||||
UPDATE YOUR BOOKMARKS.
|
||||
THIS COPY WILL BE GOING AWAY SOON.
|
||||
# Guide for creating a Pull Request
|
||||
|
||||
# Tips for a successful Pull Request
|
||||
1. Bonus: Randomly generate IPv6 prefix for new allocations to avoid RFC4193 section 3.2. violation ([script](https://git.dn42.us/dn42/repo-utils/src/master/ulagen.py))
|
||||
2. Squash your commits -- Keep the changes simple to read.
|
||||
3. Run the schema check -- Make sure the changes are valid! Run `./check-my-stuff YOUROWN-MNT`
|
||||
4. BONUS: install the commit hook! Run `./install-commit-hook YOUROWN-MNT`
|
||||
5. Sign your commit -- Makes it easier to verify.
|
||||
6. Bonus: add your pgp fingerprint to your MNT `auth: pgp-fingerprint <pgp-fingerprint>` [[See XUU-MNT example](data/mntner/XUU-MNT)]
|
||||
7. ???
|
||||
8. Profit!
|
||||
1. **Create a local clone of the registry**
|
||||
|
||||
```sh
|
||||
git clone git@git.dn42.dev:dn42/registry.git
|
||||
```
|
||||
|
||||
2. **Create a branch for your changes**
|
||||
|
||||
The name of the branch ***must*** follow a specific format:
|
||||
`<username>-YYYYMMDD/<name>`
|
||||
- `<username>` is your gitea username.
|
||||
- `YYYYMMDD` is the current date.
|
||||
- `<name>` is a descriptive name for your change.
|
||||
|
||||
The branch must be created in the registry on the date described in the branch name, so create the branch and push it to the registry immediately.
|
||||
|
||||
```sh
|
||||
# create a new branch and switch to it
|
||||
|
||||
git checkout -b burble-20200704/mychange
|
||||
|
||||
# push it immediately to the registry
|
||||
|
||||
git push --set-upstream origin burble-20200704/mychange
|
||||
```
|
||||
|
||||
*Note that it can take up to 10 minutes after registering as a new user before you get permission to create the new branch*
|
||||
|
||||
3. **Make your changes on your new branch**
|
||||
|
||||
See the [getting started](https://dn42.dev/howto/Getting-Started) guide in the [Wiki](https://dn42.dev) for more information.
|
||||
|
||||
- `inet6num` must have a random prefix to satisfy [RFC4193](https://tools.ietf.org/html/rfc4193)
|
||||
- Include an [auth method](https://dn42.dev/howto/Registry-Authentication) in your MNTNER so you changes to your objects can be authenticated
|
||||
- Run the schema checking tools to validate your changes
|
||||
- `./fmt-my-stuff MNTNER-MNT`
|
||||
- `./check-my-stuff MNTNER-MNT`
|
||||
- `./check-pol origin/master MNTNER-MNT`
|
||||
|
||||
```sh
|
||||
$EDITOR mychanges
|
||||
git add .
|
||||
git commit
|
||||
```
|
||||
|
||||
4. **Push your changes back to the registry**
|
||||
|
||||
Remember to squash your commits and sign them using your MNTNER [authentication method](https://dn42.dev/howto/Registry-Authentication).
|
||||
It is also good practice to rebase your work on top of any other changes that may have happened on the master branch.
|
||||
|
||||
```sh
|
||||
# make sure your local copy of the master is up to date
|
||||
|
||||
git fetch origin master
|
||||
|
||||
# ensure you are using your new branch
|
||||
|
||||
git checkout burble-20200704/mychange
|
||||
|
||||
# rebase your branch on top of the master
|
||||
#
|
||||
# -i to interactively pick the commits
|
||||
# -S to sign the result with your GPG key (not required for SSH authentication)
|
||||
#
|
||||
# In interactive mode, make sure the first commit says 'pick'
|
||||
# change the rest from 'pick' to 'squash'
|
||||
# save and close to create the commit
|
||||
|
||||
git rebase -i -S origin/master
|
||||
|
||||
# force push your changes back to the registry
|
||||
|
||||
git push --force
|
||||
```
|
||||
|
||||
5. **Create a pull request**
|
||||
|
||||
In the gitea GUI, select your branch, check your changes again for a final time and then hit the 'Pull Request' button.
|
||||
|
||||
If you are using SSH authentication, please post the full commit hash that you signed and SSH signature in to the PR comments.
|
||||
|
||||
Your changes will now go through automatic checking and then manual review by the registry maintainers.
|
||||
|
||||
6. **Making updates**
|
||||
|
||||
If you need to change your PR to fix review issues simply make the updates to your branch and follow the process in (4) to rebase, squash and sign your changes again.
|
||||
Please remember to do this for every update.
|
||||
|
||||
|
||||
# Gitea Usage
|
||||
|
||||
The DN42 registry is a community resource for *your* benefit.
|
||||
Whilst registered users are free to create and use their own repositories, please be considerate in your usage.
|
||||
|
||||
- Repositories should be related to DN42
|
||||
- Do not create tools that make regular, automated, push changes to repositories unless agreed with the registry maintainers
|
||||
- Do not just create a mirror of other, publically available, repositories
|
||||
|
||||
# Data Privacy
|
||||
|
||||
Gitea and the DN42 registry contains personal information for users who are registered in DN42; this information is stored in Canada and viewable by any registered member. In addition, anyone with access to the repository is able to make their own copies of the registry, which they may then process or transfer in arbitrary ways. You must assume that all data entered in to the registry cannot be kept private and will be made publically available.
|
||||
|
||||
Any personal information stored in the registry is optional and voluntarily provided by you. Whilst the registry maintainers will make best efforts to update or delete personal data, you must accept that the technical restrictions of git may make this impossible and that your information will likely have been distributed beyond the control of the registry maintainers.
|
||||
|
||||
If this is not acceptable for you, you must not upload your personal details to the registry.
|
||||
|
||||
All registered users have the capability to make copies of the registry data for their own use. Should you do this, you must ensure that any copies are deleted when no longer required and that you will make best efforts to update or delete personal data when requested.
|
||||
|
|
6
data/aut-num/AS213021
Normal file
6
data/aut-num/AS213021
Normal file
|
@ -0,0 +1,6 @@
|
|||
aut-num: AS213021
|
||||
as-name: samipsolutions
|
||||
admin-c: SM-DN42
|
||||
tech-c: SM-DN42
|
||||
mnt-by: SM-MNT
|
||||
source: RIPE
|
7
data/aut-num/AS4242420225
Normal file
7
data/aut-num/AS4242420225
Normal file
|
@ -0,0 +1,7 @@
|
|||
aut-num: AS4242420225
|
||||
as-name: HEXXNET-AS
|
||||
descr: HEXXNET AS
|
||||
admin-c: HEXXNET-DN42
|
||||
tech-c: HEXXNET-DN42
|
||||
mnt-by: HEXXNET-MNT
|
||||
source: DN42
|
6
data/aut-num/AS4242421691
Normal file
6
data/aut-num/AS4242421691
Normal file
|
@ -0,0 +1,6 @@
|
|||
aut-num: AS4242421691
|
||||
as-name: AS for mcd1992 network
|
||||
admin-c: MCD1992-DN42
|
||||
tech-c: MCD1992-DN42
|
||||
mnt-by: MCD1992-MNT
|
||||
source: DN42
|
6
data/aut-num/AS4242421918
Normal file
6
data/aut-num/AS4242421918
Normal file
|
@ -0,0 +1,6 @@
|
|||
aut-num: AS4242421918
|
||||
as-name: FABRATERIA-AS
|
||||
admin-c: M4OC-DN42
|
||||
tech-c: DESMOND-DN42
|
||||
mnt-by: FABRATERIA-MNT
|
||||
source: DN42
|
|
@ -1,5 +1,13 @@
|
|||
aut-num: AS4242422499
|
||||
as-name: AS for NICOLAS Network
|
||||
descr: nicolas.dn42 https://dn42.nicolas.network/
|
||||
remarks: --------------------------------------------------------
|
||||
New peers are welcome (Wireguard Only)
|
||||
--------------------------------------------------------
|
||||
http://nicolas.network/ (NMS/Node Status)
|
||||
https://dn42.nicolas.network/ (Peering Details/Weathermap)
|
||||
http://lg.nicolas.network/ (Looking Glass)
|
||||
--------------------------------------------------------
|
||||
admin-c: NICOLAS-DN42
|
||||
tech-c: NICOLAS-DN42
|
||||
mnt-by: NICOLAS-MNT
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
aut-num: AS4242422990
|
||||
as-name: AS for TAN
|
||||
aut-num: AS4242422995
|
||||
as-name: TAN-NET
|
||||
admin-c: TAN-DN42
|
||||
tech-c: TAN-DN42
|
||||
mnt-by: TAN-MNT
|
7
data/aut-num/AS4242423395
Normal file
7
data/aut-num/AS4242423395
Normal file
|
@ -0,0 +1,7 @@
|
|||
aut-num: AS4242423395
|
||||
as-name: SHEBANG-AS
|
||||
descr: Shebang
|
||||
admin-c: SHEBANG-DN42
|
||||
tech-c: SHEBANG-DN42
|
||||
mnt-by: SHEBANG-MNT
|
||||
source: DN42
|
|
@ -1,6 +1,6 @@
|
|||
aut-num: AS4242423747
|
||||
as-name: ZHYZ-AS
|
||||
descr: Our email is zhihuiyuze.qq.com abd welcome to send us a message
|
||||
descr: Our email is zhihuiyuze@gmail abd welcome to send us a message
|
||||
admin-c: ZHYZ-DN42
|
||||
tech-c: ZHYZ-DN42
|
||||
mnt-by: ZHYZ-MNT
|
||||
|
|
7
data/aut-num/AS4242423869
Normal file
7
data/aut-num/AS4242423869
Normal file
|
@ -0,0 +1,7 @@
|
|||
aut-num: AS4242423869
|
||||
as-name: Sellerie-AS
|
||||
descr: Sellerie AS
|
||||
admin-c: SELLERIE-DN42
|
||||
tech-c: SELLERIE-DN42
|
||||
mnt-by: SELLERIE-MNT
|
||||
source: DN42
|
|
@ -1,6 +1,6 @@
|
|||
aut-num: AS4242423920
|
||||
as-name: KEBE-AS
|
||||
admin-c: KEVINB-DN42
|
||||
tech-c: KEVINB-DN42
|
||||
admin-c: KEBE-DN42
|
||||
tech-c: KEBE-DN42
|
||||
mnt-by: KEBE-MNT
|
||||
source: DN42
|
||||
|
|
7
data/aut-num/AS49752
Normal file
7
data/aut-num/AS49752
Normal file
|
@ -0,0 +1,7 @@
|
|||
aut-num: AS49752
|
||||
as-name: REDPANDANETWORK-AS
|
||||
descr: Red Panda Network
|
||||
admin-c: REDP-DN42
|
||||
tech-c: REDP-DN42
|
||||
mnt-by: REDPANDA-MNT
|
||||
source: RIPE
|
|
@ -1,42 +1,6 @@
|
|||
aut-num: AS64738
|
||||
as-name: WELTERDE-AS
|
||||
descr: welterde's AS
|
||||
remarks: ------[ peers ]-------------------------------------------------------
|
||||
remarks: more route information goes here
|
||||
remarks: ------< IPv6 communities >--------------------------------------------
|
||||
remarks: (0 ) => (0,<peeras>) Do not advertise to <peeras>
|
||||
remarks: (1 ) => (64738,3001) Prepend 64738 1 time
|
||||
remarks: (2 ) => (64738,3002) Prepend 64738 2 times
|
||||
remarks: (3 ) => (64738,3003) Prepend 64738 3 times
|
||||
remarks: (5 ) => (1,<peeras>) Advertise to <peeras>
|
||||
remarks: (10 ) => (64738,4<location>) Do not advertise at <location>
|
||||
remarks: => (64738,4001) Do not advertise at fal1
|
||||
remarks: (15 ) => (3,<peeras>) Advertise to <peeras>
|
||||
remarks: (20 ) => (64738,5<location>) Advertise at <location>
|
||||
remarks: (25 ) => (64738,3000) Advertise to noone
|
||||
remarks: (100) => (64738,5000) Advertise to everyone
|
||||
remarks:
|
||||
remarks: => (64738,2001) High latency route
|
||||
remarks: => (64738,2011) Low bandwidth route - <= 1MBit
|
||||
remarks: => (64738,2012) Medium bandwidth route - < 10Mbit
|
||||
remarks: => (64738,2013) High bandwidth route - >= 10Mbit
|
||||
remarks: -----< Locations >----------------------------------------------------
|
||||
remarks: (000) => whole AS Implemented via seperate rules
|
||||
remarks: (001) => fal1 Falkenstein1 - hetzner RZ10
|
||||
remarks: (002) => fal2 Falkenstein2 - hetzner RZ12
|
||||
remarks: (003) => fmt1 Fremont1 - egihosting via HE
|
||||
remarks: (004) => ulm1 Ulm1 - @home via acor
|
||||
remarks: (005) => gar1 Garching1 - @home via m-net
|
||||
remarks: (006) => jen1 Jena1 - EUServ
|
||||
remarks: (100) => otr On the run/road - machines not tied to a location
|
||||
remarks: -----< Routers >------------------------------------------------------
|
||||
remarks: (001) => gandalf.fal1
|
||||
remarks: (002) => hex.fal2
|
||||
remarks: (003) => arda.fmt1
|
||||
remarks: (004) => atomi.ulm1
|
||||
remarks: (005) => cizzco-1760-1.gar1
|
||||
remarks: (006) => dwarfen.jen1
|
||||
remarks: (007) => tux.gar1
|
||||
admin-c: WELTERDE-DN42
|
||||
tech-c: WELTERDE-DN42
|
||||
mnt-by: WELTERDE-MNT
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
aut-num: AS64739
|
||||
as-name: SIGI-AS
|
||||
descr: sigi's AS
|
||||
remarks: route information goes here
|
||||
admin-c: WELTERDE-DN42
|
||||
tech-c: WELTERDE-DN42
|
||||
mnt-by: DUMMY-MNT
|
||||
mnt-by: WELTERDE-MNT
|
||||
source: DN42
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
aut-num: AS76115
|
||||
org: ORG-CCCHB
|
||||
as-name: PYROPETER-DEPRECATED-AS
|
||||
descr: PyroPeters old ASN (deprecated, moved to AS4242420000)
|
||||
admin-c: PYROPETER-DN42
|
||||
tech-c: PYROPETER-DN42
|
||||
mnt-by: PYROPETER-MNT
|
||||
source: DN42
|
|
@ -2,5 +2,5 @@ domain: bit.dn42
|
|||
admin-c: JASTRUP-DN42
|
||||
tech-c: JASTRUP-DN42
|
||||
mnt-by: BITBAKERS-MNT
|
||||
nserver: ns1.bit.dn42 172.20.66.10
|
||||
nserver: ns1.bit.dn42 172.21.66.10
|
||||
source: DN42
|
||||
|
|
9
data/dns/fabrateria.dn42
Normal file
9
data/dns/fabrateria.dn42
Normal file
|
@ -0,0 +1,9 @@
|
|||
domain: fabrateria.dn42
|
||||
admin-c: M4OC-DN42
|
||||
tech-c: DESMOND-DN42
|
||||
mnt-by: FABRATERIA-MNT
|
||||
nserver: ns1.fabrateria.dn42 172.22.110.225
|
||||
nserver: ns1.fabrateria.dn42 fd10:fcac:b8f2:4d4c::1
|
||||
nserver: ns2.fabrateria.dn42 172.22.110.226
|
||||
nserver: ns2.fabrateria.dn42 fd10:fcac:b8f2:4d4c::2
|
||||
source: DN42
|
7
data/dns/hosting.dn42
Normal file
7
data/dns/hosting.dn42
Normal file
|
@ -0,0 +1,7 @@
|
|||
domain: hosting.dn42
|
||||
admin-c: MEBUS-DN42
|
||||
tech-c: MEBUS-DN42
|
||||
descr: hosting.dn42 Domain
|
||||
mnt-by: MEBUS-MNT
|
||||
nserver: ns1.mebus.dn42 fd88:c7e:c7b7::1
|
||||
source: DN42
|
6
data/dns/mcd1992.dn42
Normal file
6
data/dns/mcd1992.dn42
Normal file
|
@ -0,0 +1,6 @@
|
|||
domain: mcd1992.dn42
|
||||
admin-c: MCD1992-DN42
|
||||
tech-c: MCD1992-DN42
|
||||
mnt-by: MCD1992-MNT
|
||||
nserver: ns1.mcd1992.dn42 fd69:1691:1691:53::1
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
domain: pyropeter.dn42
|
||||
nserver: ns1.pyropeter.dn42 172.23.196.2
|
||||
admin-c: PYROPETER-DN42
|
||||
tech-c: PYROPETER-DN42
|
||||
mnt-by: DUMMY-MNT
|
||||
source: DN42
|
9
data/dns/tyrasuki.dn42
Normal file
9
data/dns/tyrasuki.dn42
Normal file
|
@ -0,0 +1,9 @@
|
|||
domain: tyrasuki.dn42
|
||||
admin-c: REDP-DN42
|
||||
tech-c: REDP-DN42
|
||||
nserver: ns1.tyrasuki.dn42 172.22.177.31
|
||||
nserver: ns1.tyrasuki.dn42 fd02:685f:edac:ffff::
|
||||
nserver: ns2.tyrasuki.dn42 172.22.177.30
|
||||
nserver: ns2.tyrasuki.dn42 fd02:685f:edac:eeee::
|
||||
mnt-by: REDPANDA-MNT
|
||||
source: DN42
|
7
data/dns/welterde.dn42
Normal file
7
data/dns/welterde.dn42
Normal file
|
@ -0,0 +1,7 @@
|
|||
domain: welterde.dn42
|
||||
descr: welterde.dn42
|
||||
admin-c: WELTERDE-DN42
|
||||
tech-c: WELTERDE-DN42
|
||||
mnt-by: WELTERDE-MNT
|
||||
nserver: ns1.any.welterde.dn42 fdef:5d0d:ee12:0:100:53:42:1
|
||||
source: DN42
|
10
data/dns/zhyz.dn42
Normal file
10
data/dns/zhyz.dn42
Normal file
|
@ -0,0 +1,10 @@
|
|||
domain: zhyz.dn42
|
||||
descr: https://zhyz.ru email:zhihuiyuze@gmail.com
|
||||
nserver: ns1.zhyz.dn42 172.21.75.65
|
||||
nserver: ns1.zhyz.dn42 d37:03b3:cae6::65
|
||||
nserver: ns2.zhyz.dn42 172.21.75.66
|
||||
nserver: ns2.zhyz.dn42 d37:03b3:cae6::66
|
||||
admin-c: ZHYZ-DN42
|
||||
tech-c: ZHYZ-DN42
|
||||
mnt-by: ZHYZ-MNT
|
||||
source: DN42
|
8
data/inet6num/fd01:374d:4ddd::_48
Normal file
8
data/inet6num/fd01:374d:4ddd::_48
Normal file
|
@ -0,0 +1,8 @@
|
|||
inet6num: fd01:374d:4ddd:0000:0000:0000:0000:0000 - fd01:374d:4ddd:ffff:ffff:ffff:ffff:ffff
|
||||
cidr: fd01:374d:4ddd::/48
|
||||
netname: SELLERIE-NETWORK
|
||||
admin-c: SELLERIE-DN42
|
||||
tech-c: SELLERIE-DN42
|
||||
mnt-by: SELLERIE-MNT
|
||||
status: ASSIGNED
|
||||
source: DN42
|
13
data/inet6num/fd02:685f:edac::_48
Normal file
13
data/inet6num/fd02:685f:edac::_48
Normal file
|
@ -0,0 +1,13 @@
|
|||
inet6num: fd02:685f:edac:0000:0000:0000:0000:0000 - fd02:685f:edac:ffff:ffff:ffff:ffff:ffff
|
||||
cidr: fd02:685f:edac::/48
|
||||
netname: REDPANDANETWORK-V6
|
||||
org: ORG-REDPANDANETWORK
|
||||
descr: Red Panda Network - IPv6 assignment
|
||||
country: EU
|
||||
admin-c: REDP-DN42
|
||||
tech-c: REDP-DN42
|
||||
status: ASSIGNED
|
||||
nserver: ns1.tyrasuki.dn42
|
||||
nserver: ns2.tyrasuki.dn42
|
||||
mnt-by: REDPANDA-MNT
|
||||
source: DN42
|
10
data/inet6num/fd10:fcac:b8f2::_48
Normal file
10
data/inet6num/fd10:fcac:b8f2::_48
Normal file
|
@ -0,0 +1,10 @@
|
|||
inet6num: fd10:fcac:b8f2:0000:0000:0000:0000:0000 - fd10:fcac:b8f2:ffff:ffff:ffff:ffff:ffff
|
||||
cidr: fd10:fcac:b8f2::/48
|
||||
netname: FABRATERIA-NETWORK
|
||||
descr: FABRATERIA NETWORK
|
||||
country: IT
|
||||
admin-c: M4OC-DN42
|
||||
tech-c: DESMOND-DN42
|
||||
mnt-by: FABRATERIA-MNT
|
||||
status: ASSIGNED
|
||||
source: DN42
|
|
@ -1,5 +1,5 @@
|
|||
inet6num: fd42:4242:2990:0000:0000:0000:0000:0000 - fd42:4242:2990:ffff:ffff:ffff:ffff:ffff
|
||||
cidr: fd42:4242:2990::/48
|
||||
inet6num: fd42:0212:0995:0000:0000:0000:0000:0000 - fd42:0212:0995:ffff:ffff:ffff:ffff:ffff
|
||||
cidr: fd42:212:995::/48
|
||||
netname: TAN-IPV6
|
||||
descr: IPv6 Address Space for TAN
|
||||
country: SG
|
10
data/inet6num/fd42:4242:3920::_48
Normal file
10
data/inet6num/fd42:4242:3920::_48
Normal file
|
@ -0,0 +1,10 @@
|
|||
inet6num: fd42:4242:3920:0000:0000:0000:0000:0000 - fd42:4242:3920:ffff:ffff:ffff:ffff:ffff
|
||||
cidr: fd42:4242:3920::/48
|
||||
netname: KEBE-NET
|
||||
descr: KEBE Network
|
||||
country: NL
|
||||
admin-c: KEBE-DN42
|
||||
tech-c: KEBE-DN42
|
||||
mnt-by: KEBE-MNT
|
||||
status: ASSIGNED
|
||||
source: DN42
|
10
data/inet6num/fd42:ca7:3395::_48
Normal file
10
data/inet6num/fd42:ca7:3395::_48
Normal file
|
@ -0,0 +1,10 @@
|
|||
inet6num: fd42:0ca7:3395:0000:0000:0000:0000:0000 - fd42:0ca7:3395:ffff:ffff:ffff:ffff:ffff
|
||||
cidr: fd42:ca7:3395::/48
|
||||
netname: SHEBANG-NETWORK
|
||||
descr: Network of SHEBANG
|
||||
country: FR
|
||||
admin-c: SHEBANG-DN42
|
||||
tech-c: SHEBANG-DN42
|
||||
mnt-by: SHEBANG-MNT
|
||||
status: ASSIGNED
|
||||
source: DN42
|
|
@ -1,5 +1,5 @@
|
|||
inet6num: fd42:2092:2092:0000:0000:0000:0000:0000 - fd42:2092:2092:ffff:ffff:ffff:ffff:ffff
|
||||
cidr: fd42:2092:2092::/48
|
||||
inet6num: fd63:672f:38e7:0000:0000:0000:0000:0000 - fd63:672f:38e7:ffff:ffff:ffff:ffff:ffff
|
||||
cidr: fd63:672f:38e7::/48
|
||||
netname: P3BK4C-NETWORK
|
||||
descr: Network of P3BK4C
|
||||
country: GR
|
11
data/inet6num/fd69:1691:1691::_48
Normal file
11
data/inet6num/fd69:1691:1691::_48
Normal file
|
@ -0,0 +1,11 @@
|
|||
inet6num: fd69:1691:1691:0000:0000:0000:0000:0000 - fd69:1691:1691:ffff:ffff:ffff:ffff:ffff
|
||||
cidr: fd69:1691:1691::/48
|
||||
netname: MCD1992-NETWORK
|
||||
descr: Network of mcd1992
|
||||
country: US
|
||||
admin-c: MCD1992-DN42
|
||||
tech-c: MCD1992-DN42
|
||||
mnt-by: MCD1992-MNT
|
||||
status: ASSIGNED
|
||||
nserver: ns1.mcd1992.dn42
|
||||
source: DN42
|
|
@ -5,7 +5,6 @@ country: DE
|
|||
admin-c: PYROPETER-DN42
|
||||
tech-c: PYROPETER-DN42
|
||||
status: ASSIGNED
|
||||
nserver: ns1.pyropeter.dn42
|
||||
cidr: fda1:d26b:7461::/48
|
||||
mnt-by: DUMMY-MNT
|
||||
mnt-by: PYROPETER-MNT
|
||||
source: DN42
|
||||
|
|
9
data/inet6num/fdaa:d0e:147f::_48
Normal file
9
data/inet6num/fdaa:d0e:147f::_48
Normal file
|
@ -0,0 +1,9 @@
|
|||
inet6num: fdaa:0d0e:147f:0000:0000:0000:0000:0000 - fdaa:0d0e:147f:ffff:ffff:ffff:ffff:ffff
|
||||
cidr: fdaa:d0e:147f::/48
|
||||
netname: SkyNetwork-1
|
||||
country: FI
|
||||
admin-c: SM-DN42
|
||||
tech-c: SM-DN42
|
||||
mnt-by: SM-MNT
|
||||
status: ASSIGNED
|
||||
source: DN42
|
9
data/inet6num/fded:8ea7:f687::_48
Normal file
9
data/inet6num/fded:8ea7:f687::_48
Normal file
|
@ -0,0 +1,9 @@
|
|||
inet6num: fded:8ea7:f687:0000:0000:0000:0000:0000 - fded:8ea7:f687:ffff:ffff:ffff:ffff:ffff
|
||||
cidr: fded:8ea7:f687::/48
|
||||
netname: HEXXNET-V6-NET-1
|
||||
country: GB
|
||||
admin-c: HEXXNET-DN42
|
||||
tech-c: HEXXNET-DN42
|
||||
mnt-by: HEXXNET-MNT
|
||||
status: ASSIGNED
|
||||
source: DN42
|
|
@ -4,8 +4,7 @@ descr: welterde's infrastructure ULA net
|
|||
admin-c: WELTERDE-DN42
|
||||
tech-c: WELTERDE-DN42
|
||||
status: ASSIGNED
|
||||
nserver: a.ns.welterde.net
|
||||
nserver: ns1.welterde.dn42
|
||||
nserver: ns1.any.welterde.dn42
|
||||
cidr: fdef:5d0d:ee12::/48
|
||||
mnt-by: DUMMY-MNT
|
||||
mnt-by: WELTERDE-MNT
|
||||
source: DN42
|
||||
|
|
6
data/inetnum/172.20.165.128_26
Normal file
6
data/inetnum/172.20.165.128_26
Normal file
|
@ -0,0 +1,6 @@
|
|||
inetnum: 172.20.165.128 - 172.20.165.191
|
||||
cidr: 172.20.165.128/26
|
||||
netname: MEBUS-LEGACY
|
||||
status: ASSIGNED
|
||||
mnt-by: MEBUS-MNT
|
||||
source: DN42
|
8
data/inetnum/172.20.206.0_27
Normal file
8
data/inetnum/172.20.206.0_27
Normal file
|
@ -0,0 +1,8 @@
|
|||
inetnum: 172.20.206.0 - 172.20.206.31
|
||||
cidr: 172.20.206.0/27
|
||||
netname: SELLERIE-NETWORK
|
||||
admin-c: SELLERIE-DN42
|
||||
tech-c: SELLERIE-DN42
|
||||
mnt-by: SELLERIE-MNT
|
||||
status: ASSIGNED
|
||||
source: DN42
|
|
@ -2,8 +2,8 @@ inetnum: 172.20.246.192 - 172.20.246.223
|
|||
netname: KEBE-NET
|
||||
descr: KEBE Network
|
||||
country: NL
|
||||
admin-c: KEVINB-DN42
|
||||
tech-c: KEVINB-DN42
|
||||
admin-c: KEBE-DN42
|
||||
tech-c: KEBE-DN42
|
||||
mnt-by: KEBE-MNT
|
||||
status: ALLOCATED
|
||||
cidr: 172.20.246.192/27
|
||||
|
|
8
data/inetnum/172.20.46.168_29
Normal file
8
data/inetnum/172.20.46.168_29
Normal file
|
@ -0,0 +1,8 @@
|
|||
inetnum: 172.20.46.168 - 172.20.46.175
|
||||
cidr: 172.20.46.168/29
|
||||
netname: SHEBANG-NETWORK
|
||||
admin-c: SHEBANG-DN42
|
||||
tech-c: SHEBANG-DN42
|
||||
mnt-by: SHEBANG-MNT
|
||||
status: ASSIGNED
|
||||
source: DN42
|
8
data/inetnum/172.22.110.224_27
Normal file
8
data/inetnum/172.22.110.224_27
Normal file
|
@ -0,0 +1,8 @@
|
|||
inetnum: 172.22.110.224 - 172.22.110.255
|
||||
cidr: 172.22.110.224/27
|
||||
netname: FABRATERIA-NETWORK
|
||||
admin-c: M4OC-DN42
|
||||
tech-c: DESMOND-DN42
|
||||
mnt-by: FABRATERIA-MNT
|
||||
status: ASSIGNED
|
||||
source: DN42
|
9
data/inetnum/172.22.114.96_27
Normal file
9
data/inetnum/172.22.114.96_27
Normal file
|
@ -0,0 +1,9 @@
|
|||
inetnum: 172.22.114.96 - 172.22.114.127
|
||||
netname: SAMIPSOLUTIONS-IPV4-BLOCK
|
||||
country: FI
|
||||
admin-c: SM-DN42
|
||||
tech-c: SM-DN42
|
||||
mnt-by: SM-MNT
|
||||
status: ASSIGNED
|
||||
cidr: 172.22.114.96/27
|
||||
source: DN42
|
9
data/inetnum/172.22.128.160_27
Normal file
9
data/inetnum/172.22.128.160_27
Normal file
|
@ -0,0 +1,9 @@
|
|||
inetnum: 172.22.128.160 - 172.22.128.191
|
||||
cidr: 172.22.128.160/27
|
||||
netname: HEXXNET-V4-NET-1
|
||||
country: GB
|
||||
admin-c: HEXXNET-DN42
|
||||
tech-c: HEXXNET-DN42
|
||||
mnt-by: HEXXNET-MNT
|
||||
status: ASSIGNED
|
||||
source: DN42
|
12
data/inetnum/172.22.177.0_27
Normal file
12
data/inetnum/172.22.177.0_27
Normal file
|
@ -0,0 +1,12 @@
|
|||
inetnum: 172.22.177.0 - 172.22.177.31
|
||||
cidr: 172.22.177.0/27
|
||||
netname: REDPANDANETWORK-LEGACY
|
||||
org: ORG-REDPANDANETWORK
|
||||
descr: Red Panda Network - Legacy allocation
|
||||
admin-c: REDP-DN42
|
||||
tech-c: REDP-DN42
|
||||
nserver: ns1.tyrasuki.dn42
|
||||
nserver: ns2.tyrasuki.dn42
|
||||
status: ASSIGNED PI
|
||||
mnt-by: REDPANDA-MNT
|
||||
source: DN42
|
|
@ -1,12 +0,0 @@
|
|||
inetnum: 172.22.253.160 - 172.22.253.175
|
||||
netname: WELTERDE-TRANSFER-3-IP4NET
|
||||
descr: welterde's transfer network
|
||||
admin-c: WELTERDE-DN42
|
||||
tech-c: WELTERDE-DN42
|
||||
status: ASSIGNED
|
||||
nserver: ns1.welterde.dn42
|
||||
nserver: ns2.welterde.dn42
|
||||
nserver: ns3.welterde.dn42
|
||||
cidr: 172.22.253.160/28
|
||||
mnt-by: DUMMY-MNT
|
||||
source: DN42
|
|
@ -1,12 +0,0 @@
|
|||
inetnum: 172.22.253.192 - 172.22.253.255
|
||||
netname: WELTERDE-TRANSFER-1-IP4NET
|
||||
descr: welterde's transfer network
|
||||
admin-c: WELTERDE-DN42
|
||||
tech-c: WELTERDE-DN42
|
||||
status: ASSIGNED
|
||||
nserver: ns1.welterde.dn42
|
||||
nserver: ns2.welterde.dn42
|
||||
nserver: ns3.welterde.dn42
|
||||
cidr: 172.22.253.192/26
|
||||
mnt-by: DUMMY-MNT
|
||||
source: DN42
|
|
@ -1,11 +0,0 @@
|
|||
inetnum: 172.22.41.240 - 172.22.41.255
|
||||
netname: PYROPETER-22-IP4NET
|
||||
descr: PyroPeter's 22er network
|
||||
country: DE
|
||||
admin-c: PYROPETER-DN42
|
||||
tech-c: PYROPETER-DN42
|
||||
mnt-by: FRITZ-MNT
|
||||
status: ASSIGNED
|
||||
nserver: ns1.pyropeter.dn42
|
||||
cidr: 172.22.41.240/28
|
||||
source: DN42
|
|
@ -1,11 +0,0 @@
|
|||
inetnum: 172.23.196.0 - 172.23.196.255
|
||||
netname: PYROPETER-DN42-IP4NET
|
||||
descr: PyroPeter's dn42 network
|
||||
country: DE
|
||||
admin-c: PYROPETER-DN42
|
||||
tech-c: PYROPETER-DN42
|
||||
status: ASSIGNED
|
||||
nserver: ns1.pyropeter.dn42
|
||||
cidr: 172.23.196.0/24
|
||||
mnt-by: PYROPETER-MNT
|
||||
source: DN42
|
|
@ -5,7 +5,6 @@ country: DE
|
|||
admin-c: PYROPETER-DN42
|
||||
tech-c: PYROPETER-DN42
|
||||
status: ASSIGNED
|
||||
nserver: ns1.pyropeter.dn42
|
||||
cidr: 172.23.202.0/24
|
||||
mnt-by: PYROPETER-MNT
|
||||
source: DN42
|
||||
|
|
|
@ -1,73 +0,0 @@
|
|||
key-cert: PGPKEY-08EBD2E8
|
||||
method: PGP
|
||||
owner: Christoffer <christoffer@netravnen.de>
|
||||
fingerpr: 18DD 23C5 5029 3098 DE07 052A 9DCF 2CA0 08EB D2E8
|
||||
remarks: https://www.netravnen.de/pgp/?fingerprint=18dd23c550293098de07052a9dcf2ca008ebd2e8
|
||||
org: ORG-NETRAVNEN
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
||||
certif: -----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
certif:
|
||||
certif: mDMEXAAS+xYJKwYBBAHaRw8BAQdALbnw1RxC+0YdAmJ1+yfqVZk0c47PpF1yhCZF
|
||||
certif: rmUBPZq0LUNocmlzdG9mZmVyIEhhbnNlbiA8Y2hyaXN0b2ZmZXJAbmV0cmF2bmVu
|
||||
certif: LmRlPoiWBBMWCAA+FiEEGN0jxVApMJjeBwUqnc8soAjr0ugFAlwAEvsCGwMFCQtJ
|
||||
certif: i7UFCwkIBwIGFQoJCAsCBBYCAwECHgECF4AACgkQnc8soAjr0uglrwEAswZ2Bl4w
|
||||
certif: dTriXbJ9SxcB0OZdclc9DW8I/Kw+BlISKh8BAPijRMhM2Nrqf05wLjJ34rtwhBwj
|
||||
certif: IHeXBr+J355R6Z4AiQIzBBABCAAdFiEEEt0CHXrC08M9KiVicy9K+wlgyMkFAlwA
|
||||
certif: E0sACgkQcy9K+wlgyMmH8A/9E5VV88bMdvzQHCUF6HUp9ZlLNxZyOe5rodExwEEU
|
||||
certif: bUH3C/oV+g1CCsh9JxGRIzHeDA3sfXcd4uEFYNIcCPG8P3bNEWQJkaYFOw6L4T1x
|
||||
certif: QO5MyZ9YE1kdmaIcXtflP1y7ZYLQqLyTJu2okanzhtt6UyQWUgDN4MNghAswL/6w
|
||||
certif: W55AzByzgH4QmMBXv1n/hzoHkNBpc90zUmOZAtyVTxf27iQhjNOJhBzLhAyVkB+4
|
||||
certif: X3Lm9RERyza2dPBQF2nC1dTiXIVEZMKDpJr4u7vjENP94B6SXl0hRFsX49o5cQrx
|
||||
certif: nQSkvUsDbdyWB3qnRIDt62tNDUuW2yTJziJ/zefFXgPymMzZa0A5MOXjH07GmWfm
|
||||
certif: LPLrP9iqYexPPw64rMsubp0Ld02jjWSKqaIMWQEXXX9j4MgY0k2j3ON3zTUCuMFY
|
||||
certif: W3OKQ9Vwbr8xgULtURhu7uwelUuOUNzoGTvkdBMxEgm9FolJi656HDLaU266A6Jf
|
||||
certif: nDT1qXPMFgQsYTxhWxgT9lInvICD7oDlrRf9mRsxTa8j653HCKBjsW6lmBo8eWeE
|
||||
certif: Y2oU1waQfOqqb7FQul/xVY+cRNQCWNA9QvG8j78MLvBKNYLlnjZgEFirnXWby9+W
|
||||
certif: eC42l0wSGQO5w8pngOaZwd6vQtzPG5Iuigz5sCnSJNLhyddW43xKN4BPdlmns600
|
||||
certif: dO+JAjMEEAEIAB0WIQSv46oqSEzjX1YsHape9PHYlKS//AUCXAATYQAKCRBe9PHY
|
||||
certif: lKS//IgqD/4+e2Ncs33b0jXZWNBliG/Ulp+04DS2DFhCFnuep0ka1y/eyCMMbtTz
|
||||
certif: lc2JfFk1IcCoesOKUlz4vrAgLIikXhhWA4AjqWHoHGPfZ4H1aSbCOevw1ToAo/QI
|
||||
certif: ubH0kWaUzs1deWkyBnNM7EXl/uCOCmCE0P4V5QV+S3mmK7b+cQVSfRBaNFD3jnVw
|
||||
certif: 2cTjUQfY5s3++YjGu1pSQmALKgGsCK9udXzRYHIT252phIdYwD8CWnAYnrpzRNOx
|
||||
certif: 9ebP6N563LapB71C4QYD6em2jtiB3jHdSMWpxGI5GXR+IBYmrb7Cl/bvJGEsJGbv
|
||||
certif: dHgy1D9gZjBoPM5ZCGpjHycR4eCNQqjkyIsiHC7jqP4wKZ2IS+neZskcu8rKD8Kw
|
||||
certif: IwWXpz4PJZzxpRWYwVOH2tPTMH3wWsqKik9NUi8iw6/IM6Tf2Lmj2j6Z9luMYCYt
|
||||
certif: PG3UkAT3izWW1oo2sAA6A/oVCQ/dCArPcQgSj3k+ahJJ3RmfQZiieHOJx/W/EodA
|
||||
certif: YCBmxUVJDJ8j1xNDSIonqB8wdKXKBYjTiz5b4+1UWI5ZzrNKBInGhKfHETqiJLGq
|
||||
certif: QajyvrgyMJ3n9wJxjiJ+ez9B5MBmV9ntmYj6GXNPNWtM59SfgEoLsigiC3B10PUP
|
||||
certif: JnqMyK7CcCbLU7y5NnRmBxtMZMwUusGXVp4nWOhSTRYYvlldsT+a2IkCMwQQAQgA
|
||||
certif: HRYhBMizgqihzc23cf6yTMZUlI/ahr7NBQJcABOBAAoJEMZUlI/ahr7Nna4P/2/n
|
||||
certif: 3FgfOo2Y9LywB8hxB96jhD8RtlG77kwWi/dMqK4scs9tjLBO/L9bFUihC8j03DwJ
|
||||
certif: v9Nck8XsGK8pTMWgsvHIzXKoKm5fRfaEGCOdgcXL3Af/qG56PZ42Jb20KxBlvBNv
|
||||
certif: Q4ZW9oO1/q4ZTwEsBlVbz2XzeqVKVy/xyHziHqBlIpC3h8TS04aju2KBus6hLArs
|
||||
certif: cE+sWfbLzWvpDjfiz8l7I6vHE2xtaLgtIaErk9YkopJf3HJqYunfRg2GOOV4amhP
|
||||
certif: JHd5cd8qmgIHzeX55uEbr/+n37I1xcoZ8mFZDoKikQQ5eIivTz64KFzt2yHgbG3z
|
||||
certif: FwOY4Wwi39Y+XhWGYb70gExx0yPj5icRF/Toa2KP3zlhrGL/awKM9xPxdcHkcCcK
|
||||
certif: PFAr+UBLWOCJAoK/m/C6NyTw5ULHoC6ZLffHMvEzzn/X7gFeXB3pHRvGop+0dJQG
|
||||
certif: K6JWxP/LePPeLyfHPGEZ4D1pMPFWtTaXtX//0t35nQ/5Z6BKah2U+lpl4KtIrtwj
|
||||
certif: WtnTqtXsuRJirIb1tkikc1WQA3if3ZnTJWE4UjWf5WDsyXRmAxTK1minH817kEeZ
|
||||
certif: JPYV1K/xibafd2hUcQnrXKbqE7YBHMKNTfLPwTxR8EUjWTpWmRtL540kPWtSmzfi
|
||||
certif: r+V2x2yxHLVbESHZYzeXb1Q6RcQJ8LjQALPAUUQRiHUEExYIAB0WIQR7k1zO+XqQ
|
||||
certif: lTVRW8wKEDuIVflGfAUCXRIXUAAKCRAKEDuIVflGfIEVAP9j4BS3rE9A8n45fDoq
|
||||
certif: 24BlQhs78ARQ0GSQKM5wQJO9nAD6A9OE9r6Cu9jlPUUPAIIMNq72sPwlFejDLgS0
|
||||
certif: 3eUpXwiIdQQTFggAHRYhBDbv891ns/z4wLa/pZJk57oBuReSBQJdEhdtAAoJEJJk
|
||||
certif: 57oBuReSu6kA/21oebeoJFOQpto6te2t6gqGDCQcgRTIzin7+31UiuB7AP9juIsR
|
||||
certif: funsjb3qIA59Z0GHP4v+p1ze8825QKV3wUSDD4h1BBMWCAAdFiEEvLzeKtZH3fG2
|
||||
certif: 9JBjXnzscaX7ODYFAl0SF4UACgkQXnzscaX7ODa46wD/dTfb1Y0K8DvDjtkj/mPr
|
||||
certif: P4VaeaPgxNf6S82kgLs0ke0A+wQuHw64gjVUept9SvFP6OLbY7j+7lADYPHvbhno
|
||||
certif: e84NiHUEExYIAB0WIQTi3HRSsE7Fb+UZv0VDOXrh55mTDgUCXRIX1AAKCRBDOXrh
|
||||
certif: 55mTDllKAP96I+qMLFmn4IlgbUy5ZJIgdGGG4OrvZZQ1btMKbde/3AEApotJBGh8
|
||||
certif: FZ77zvYNR+e7u6j7TW3kl/QFHmE6j/G2iQS0LUNocml6dG9mZmVyIGhhbnNlbiA8
|
||||
certif: Y2hyaXp0b2ZmZXJAbmV0cmF2bmVuLmRlPoiWBBMWCAA+FiEEGN0jxVApMJjeBwUq
|
||||
certif: nc8soAjr0ugFAl1CkjcCGwMFCQtJi7UFCwkIBwIGFQoJCAsCBBYCAwECHgECF4AA
|
||||
certif: CgkQnc8soAjr0ujdiQEA8THG8mVVoVP83+7994daFh5TZZbY/1HvZG/ZdBf+nVEB
|
||||
certif: ALs6YFBOl0i3eHDE0Sv2UvgOPWS6nr7fylNwygicxoQFuDgEXAAS+xIKKwYBBAGX
|
||||
certif: VQEFAQEHQEN5FPc25RO2t5S1PS6u0nBiuP0A4PI+8wl5Rcg5oCEXAwEIB4h+BBgW
|
||||
certif: CAAmFiEEGN0jxVApMJjeBwUqnc8soAjr0ugFAlwAEvsCGwwFCQtJi7UACgkQnc8s
|
||||
certif: oAjr0uhz6gD/dvSGpgZLK4CabU6LtAgSG5+R0uvwGjubKTXUpEhy3FMA/2uvgG5Q
|
||||
certif: HH5JLMwY3XJYSTTUBtkYz1jdQF5afgBUZacF
|
||||
certif: =MN7u
|
||||
certif: -----END PGP PUBLIC KEY BLOCK-----
|
37
data/key-cert/PGPKEY-30313ECD
Normal file
37
data/key-cert/PGPKEY-30313ECD
Normal file
|
@ -0,0 +1,37 @@
|
|||
key-cert: PGPKEY-30313ECD
|
||||
method: PGP
|
||||
owner: Jan Astrup <jesastrup@gmail.com>
|
||||
fingerpr: 8238 0827 805E 7C1C 0BAF 37C2 8A1B 6457 3031 3ECD
|
||||
remarks:
|
||||
mnt-by: BITBAKERS-MNT
|
||||
source: DN42
|
||||
certif: -----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
certif:
|
||||
certif: mQENBF7eJUEBCAC33w/9Q1kiGOASiCSaN7PRXYAVvHJsm4Scbzi9bM2FOPST7KSl
|
||||
certif: JjRvNOCSicV5yjx9Zotx4kTsBV0u6/PJUm/8wnWhlUFlqY/GeDBT1ZCSwaD/xgKq
|
||||
certif: A2fQKu2FVDEyEari9pXNsddPJTh9h5G25cvw1SflbpBL4K0tRvestwfBUmV8IxY1
|
||||
certif: 5x6zUm5d9sSyM6od9ydYPgqcvqpSLka8Ki+F5+++PuU+zB6NcT25n0hrarzQ/3Dd
|
||||
certif: FJ/m8xTUWRQ8nTPxD3zc/AJyQhTCJB5xA+gz6plToDWGzw1ZarBaDBFiyFFlj6Ce
|
||||
certif: BdKEMXVTMVcWoU7qSrOaIenIIPJ6fC9joVQTABEBAAG0IEphbiBBc3RydXAgPGpl
|
||||
certif: c2FzdHJ1cEBnbWFpbC5jb20+iQFUBBMBCAA+FiEEgjgIJ4BefBwLrzfCihtkVzAx
|
||||
certif: Ps0FAl7eJUECGwMFCQPCZwAFCwkIBwIGFQoJCAsCBBYCAwECHgECF4AACgkQihtk
|
||||
certif: VzAxPs18igf8Cx/owkxJ8aDBBRDEhr9jbI8Efsv8/Fl0ry5/kO/q1girXqozamdk
|
||||
certif: aT2rX7ZEIPpBkNnTahII5gpM9P3lCv1VCXS+yaLgMKoWEfLNMlnKiuDwy6Bci9wt
|
||||
certif: BP59ziVWtun0jRYn8BE4ysOo6KtSFYtrkiDgoX5fYToZv14+ykLE5keF0RHsFZ9c
|
||||
certif: BUbZEm/9weAx5jegLY9JYjTelVINdv8FNQCECFp+7BKU9v56aLLuCeTG84kq3AeN
|
||||
certif: 68nXB7BcXM/h97VnucHUTFTtbANoo7WNrqEy2Ou0c7u0JIs0YvJ2e0OjDYZvvCJs
|
||||
certif: Lqlj1/Z3P588bT5CZfO71eJ7L1z2TlqjRLkBDQRe3iVBAQgAxvR5ZIXQ+6LlX9c/
|
||||
certif: govTyMbGhjagdlk+sw/DEjt7uxEnEy1Q/V50ONbbsBN7iihFZsIcm7GflcBsUZ7p
|
||||
certif: jzjjgJws4Q8RAdB1EsY8/em0Pg1vgyP6opqy5oIuMOZMXtcMJQiDiAljGcUAL0pj
|
||||
certif: pJt17dawvepLB8eBqidc1dj7khl+alRz+YNzU08ofb0RT/RYOmSbaJ6k8JrgODQv
|
||||
certif: 5u9wQQxf+SJNKlaww8/e6xPYqMbKBNO9xO9jD6osFz/cVM4UJ9b4Pv9yRaCci9FN
|
||||
certif: VwxGWoWXsGq3R5q5XEyIoRZ6eXR8fHIDsbMWGr2WLW0XR95oc+04YYciw7tofIV1
|
||||
certif: Nf6m7QARAQABiQE8BBgBCAAmFiEEgjgIJ4BefBwLrzfCihtkVzAxPs0FAl7eJUEC
|
||||
certif: GwwFCQPCZwAACgkQihtkVzAxPs230Af/SxcS7dHScA9GBLdRHsnhGPA1lI742Oyj
|
||||
certif: xEGRTAz3SDK+5IL7X7hgskHLxOGMwPZViPNi+OcK6925RELf6ypxdjEJ6oT4r3Zj
|
||||
certif: t6LIwab5Z0SngBSwqAQbjdGynLPtK1fj7z7C4D9PwkPzAVu/eTkvslzhN88enwza
|
||||
certif: hm646FOZbWRA7LiBdFbHjf9H+J/HIiYGYVrm/SEBz3WJBj4gv0BYbhad3kdGw2Ja
|
||||
certif: +dYAm+Y6WSiFgW+RonajbuJm2N30uY4sKOgi0IPPu180hdCGIyeYPlZVQMm1smXH
|
||||
certif: tLAVJwBAW0POmkv3qIiutqQK1It9wc/YcRAK9CZHrOC5qxegfgvfoQ==
|
||||
certif: =6hn2
|
||||
certif: -----END PGP PUBLIC KEY BLOCK-----
|
50
data/key-cert/PGPKEY-62E3F629
Normal file
50
data/key-cert/PGPKEY-62E3F629
Normal file
|
@ -0,0 +1,50 @@
|
|||
key-cert: PGPKEY-62E3F629
|
||||
method: PGP
|
||||
owner: Netravnen <netravnen+wbkq9@gmail.com>
|
||||
fingerpr: 4853 5AFD 5BA0 CABC 81C2 089B E957 87C0 62E3 F629
|
||||
org: ORG-NETRAVNEN
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
||||
certif: -----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
certif:
|
||||
certif: mQGNBF8BzRwBDADXhylTOPMYTphe31YyWm8Y22usJEQhPJlnaN0dUdNK84PLJ39X
|
||||
certif: ApSdJ0+M4w7ePiM16KARETI5l58cbWLxeYx6biCT7+TXy28bCqI+M3mx9nsDEakj
|
||||
certif: Gsx/h0FZdQ2tRlm6x+BtS0KgPk9efB6DrT6HADxAnVjPq0QJCUTVajyX4CknZ41f
|
||||
certif: H0lpCWRyORDSZezXpe4ZkJjyzujiVeGRsbTEQEoUWrwAFDMtSYRgLqhTYiftChG7
|
||||
certif: eQKdLTc2MJ0eD30bbr3NbrbphbFYcUcsb5kMbG6YH7noZaqvV9qdU9ROuWCYopIR
|
||||
certif: bsBylULPOWzmlwXVgz1f8fk2AruUncBsHxluiR0Q3TL+oY8xqoELmhshfKlmFJsl
|
||||
certif: zF+ohKh8EWXFPQah3rSEq5ypwKeBX+h2b+W+wNL6jwVhIaDaqtwaPoEkDCIvpRQ9
|
||||
certif: nqQ2TvURoOvQCcTNLXxzgRE0PxTCksVuIyHzfsblCehqDsrvab7gWwnwHlLaYLWC
|
||||
certif: KCr+7wCxzWsSWjUAEQEAAbQlTmV0cmF2bmVuIDxuZXRyYXZuZW4rd2JrcTlAZ21h
|
||||
certif: aWwuY29tPokB1AQTAQoAPhYhBEhTWv1boMq8gcIIm+lXh8Bi4/YpBQJfAc0cAhsD
|
||||
certif: BQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEOlXh8Bi4/YpdkYL/1s3
|
||||
certif: 0hGUoQfOiovHZUkDWtiw3TYZIMVwc8OT2tCS2jzbeA38SI8I0aPPlUcHS72pF8qR
|
||||
certif: zEmuRW65xIRebvtX0Boa1XK0+AveaB52cSSutD91GO6MDT75eqsdoR0DMo25wd4+
|
||||
certif: IqwnzUg9Y+Y5eoX2Vw+go96h/XgWd8lnS7o3wr0KRQBTCfF4lxbFfD4yobH8GJgV
|
||||
certif: BVFDGY8mAfTd+2B2/B1eEd8fdbypPvu0LaC9KSl46TvhC8gJyZ4J24EUDxytiryf
|
||||
certif: v99M2NcZyHTPJAdf7/k7T+ucQqz/aZg550HtSGAX2x/2LeQEB7RlSTVGjk+tuc25
|
||||
certif: Vw2RhlYAuUDXso+lRe/jizcaqyQLg8fwzMmxJlCQAA8e01BQjTFXcwOx8xLIS28A
|
||||
certif: st6nRwNrVWnd/deXXd+OOT6vz0PvGYgP3PLjv0Bn/SIlfdyej8WBfXkiOmggjwrB
|
||||
certif: 060rUOQkQIDCZS0AWRJPXkgTLXvxNu1S6BFM39JmARsXpuA91Yfha6Ba7XiLRrkB
|
||||
certif: jQRfAc0cAQwAtNMs5gqGRVGXVF2DwuKLdZMhtg/J6q1M5CH78cse2AggDl78OUZl
|
||||
certif: daqUrhoRq56g4wVHIGioyshcWN1z6RavNBMtPQpOMTOKzWsJQwOe1UmFnMCiAIoo
|
||||
certif: J93jHdegIX41EgrHCr2hqsxJHKp1kg5jaJ7MEDhnYYzGTfLJz4lX72RREAZR4wRF
|
||||
certif: 1Hc/qfAMEPcoD9BdO0ek9CrytxrRRAmPHxJ6SSWAo23fhi0yPGnL/Jgbn5cnNtLg
|
||||
certif: A7GB8Hqfj0viOkBczHd9dfvII/e77PHx5apIRX45ScheScvRkLipSF90pCdps1Ao
|
||||
certif: oFQMpHUn+Q8tcrgJa+fwKvBYjl7Ys6xGSsh4MU8bALKXtgwcNuho/OrnDc8p5lL0
|
||||
certif: CgfZ6XdDRJzmY+KZPUDMiCHgO31E6qYhUtPDTpBDyAgke7wzWkhw0B8En9yELmOW
|
||||
certif: HtCmeNawuYN265EDml/IcjxgztU9zyzOu7QGWmU7LHMRkpkgS3Jn5u2Qy5ACrR5Y
|
||||
certif: gPc1IgCk8FORABEBAAGJAbwEGAEKACYWIQRIU1r9W6DKvIHCCJvpV4fAYuP2KQUC
|
||||
certif: XwHNHAIbDAUJA8JnAAAKCRDpV4fAYuP2KROgDACCwmd8xC6QKoCju+KJiBX+DIcQ
|
||||
certif: bZLMbkYeiYOgGfL6EpRGU3ut6UAbZK2scmWxeQwvXwaW7RfrS1/H7NY+NFOEwJVs
|
||||
certif: R5bUxQHQDThpqwcye35Jnp0h8jLZJE9R4vbuPVkW6KRvu50Bmt6W21Cr4W30IS1p
|
||||
certif: XUXkvCsQaWXa4UycHQNqQpvxsTxzVepwhtNEPtyLRkGT3en84QWmdvBFZH5Nzzjg
|
||||
certif: AYIy0a80Qs1kZVe6nlwaUy+yg+Ae19Snfh5Ok+St0dpkfGSRlmS7V9IFleNEv3Gf
|
||||
certif: SdGcmninqK1Sto2pMfTwyMNqAxU8pLTOo9DtpdpdwnHfIKT1wParMAAcZsA+8CuV
|
||||
certif: k1RY2sw+PDnifOBXjZNuxqtqKxl5p/UorXROCCndrlTDLdf99pHOHw3MRQ0IqSNZ
|
||||
certif: D1vvFAs7TSNxr9KSgXfVIwqIIhDAQQt7pYX/XtXULJL/d2qLIAIA+k1j+9snnFaZ
|
||||
certif: L9co+dSIZlUV/tu3Y8aL1jgZLH4Eb4xhk810ags=
|
||||
certif: =jM0B
|
||||
certif: -----END PGP PUBLIC KEY BLOCK-----
|
|
@ -3,4 +3,5 @@ admin-c: JASTRUP-DN42
|
|||
tech-c: JASTRUP-DN42
|
||||
mnt-by: BITBAKERS-MNT
|
||||
auth: pgp-fingerprint 82380827805E7C1C0BAF37C28A1B645730313ECD
|
||||
auth: PGPKEY-30313ECD
|
||||
source: DN42
|
||||
|
|
6
data/mntner/FABRATERIA-MNT
Normal file
6
data/mntner/FABRATERIA-MNT
Normal file
|
@ -0,0 +1,6 @@
|
|||
mntner: FABRATERIA-MNT
|
||||
admin-c: M4OC-DN42
|
||||
tech-c: DESMOND-DN42
|
||||
mnt-by: FABRATERIA-MNT
|
||||
auth: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBRExRbwt/iiDoWSMQRWdAbd4w/QphHcnW91V0r1ghSz
|
||||
source: DN42
|
|
@ -2,4 +2,6 @@ mntner: FEUERROT-MNT
|
|||
admin-c: FEUERROT-DN42
|
||||
tech-c: FEUERROT-DN42
|
||||
mnt-by: FEUERROT-MNT
|
||||
auth: pgp-fingerprint CA9470EA89B2F6D6E09BEE261E7523CA911AC822
|
||||
auth: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMONNzx0+MKzDfjy9YDBWQyZ94ZjOCPw+T/VHnNqa7hk
|
||||
source: DN42
|
||||
|
|
6
data/mntner/HEXXNET-MNT
Normal file
6
data/mntner/HEXXNET-MNT
Normal file
|
@ -0,0 +1,6 @@
|
|||
mntner: HEXXNET-MNT
|
||||
admin-c: HEXXNET-DN42
|
||||
tech-c: HEXXNET-DN42
|
||||
mnt-by: HEXXNET-MNT
|
||||
source: DN42
|
||||
auth: pgp-fingerprint 24F7557955DAB31998BD92015D24C1AFE8981618
|
|
@ -1,6 +1,6 @@
|
|||
mntner: KEBE-MNT
|
||||
admin-c: KEVINB-DN42
|
||||
tech-c: KEVINB-DN42
|
||||
admin-c: KEBE-DN42
|
||||
tech-c: KEBE-DN42
|
||||
mnt-by: KEBE-MNT
|
||||
auth: pgp-fingerprint B398F83BC349D6BA7099EFE8A11C680D05268CDE
|
||||
source: DN42
|
||||
|
|
6
data/mntner/MCD1992-MNT
Normal file
6
data/mntner/MCD1992-MNT
Normal file
|
@ -0,0 +1,6 @@
|
|||
mntner: MCD1992-MNT
|
||||
admin-c: MCD1992-DN42
|
||||
tech-c: MCD1992-DN42
|
||||
mnt-by: MCD1992-MNT
|
||||
auth: ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvvLHwJszhmW1cUxfxId/2x6sFo8NoFJoL4h+GAZpiYzBfmHBiu0sTf4/KUamBXbVeMtsDzW7DdZ6uOd1IeY44bmsSVOuOJVjxANTn/T9tGtjYPRshMMXEdapf0Ad3IdqKOzJs5kOrEb3uViglPelJr17PxaeGUQEbzutNlQRQq2i6ZU2n1leZieg4w1WQvQCBpxaziQqLk/7NQAf4yfVuhFaxcFV7Dvr4iDfYPHUrzhBTHxWujN9A87eOGTQgQcKYEG1C7pHqCQfwnhK/rwiYopNhcwRvr1v/J9GZJOXgGNwE+w+HSwzYC7L1M77goLieHsjjjMF9EWXU8XMfnj47Q==
|
||||
source: DN42
|
|
@ -3,4 +3,5 @@ admin-c: MEBUS-DN42
|
|||
tech-c: MEBUS-DN42
|
||||
mnt-by: MEBUS-MNT
|
||||
auth: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCf+fYRqliv1hMM5BptvLQpXrOuNw24slTVaVkq6Ws4elNZbfmSWlwVCL8irA77ve4FXeNEh16oQ/KMFUk6McvWFlz4RSyhLSUTv0PGbeEEey5YrmHgAQmE/R3ImNTA+xaG/xTzft386OKjKbHBUlWoZaVQPC0KPYZWlgf0f6Fw13D3vmv/bkWf2T1KLMBxzY/UjH3cNuvj7iOpdiLyMF7PEDLM+DreWiDmYlA/gSpL/zAxJ/q8dX2TEeHCFDG+sYeD/A+dr0H0lbyXo8JTFY5JEyjwg7DX5CLR7OpUXk4Wfwi1JsuuLAvX8la+uGZy85oNlGZSqqQ3BihDBXNXVY2f1rLTqI+0eBz8GFvyQUo2sf+3EOL9gVyMSlx6FSNERszgvrK2qSmdb867bvFCseR57x3cHgdVcQXNPY8xKlxnirXYLUVRSvX/vTnC4r2r/LcwjosuElje2gkkealJRsobjO0JX2iB9irWh0BBLHdvmfLAQkEyoKusyrVbmQuJT+M=
|
||||
auth: pgp-fingerprint B052D1B9222EAB94AC714407F5B3580A566BEB34
|
||||
source: DN42
|
||||
|
|
|
@ -2,7 +2,7 @@ mntner: NETRAVNEN-MNT
|
|||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
auth: PGPKEY-08EBD2E8
|
||||
auth: PGPKEY-62E3F629
|
||||
source: DN42
|
||||
auth: ecdsa-sha2-nistp521 AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBABagVdusHYzzIU1pwPLzd5utY1YEaRUReAraTc8duHi73eSIuTFoRInK7K7gz/YPeSP3Ih/dN8A9Z3eghaGv398nAFXvHGQE/VKzfUs5V1quBkCs5rq9mjpN60Udh/A7kgOw719+QOm6w9Uqe0Vf/kwkTaeEp4gaaQ1vtfODve9yb2gQg== ws-win-00021
|
||||
auth: ecdsa-sha2-nistp521 AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAH8OAaKbEkZLTAfuWTR/VSq3TKAfC0YVXOKLfnYWamiXB927ISuG19v/5Vxlu29ZWjxCg0lCEeR1c08q3oIA4jKFgBAeHEFm2bgF42JPlrqPp8EDyg9/VzqJmky808aoIlXnfO6K/kENRRMzT3A7vmE5xQFmAmTJ3bP8HgKS15SlrY6NQ== NIA3O9L
|
||||
|
|
6
data/mntner/REDPANDA-MNT
Normal file
6
data/mntner/REDPANDA-MNT
Normal file
|
@ -0,0 +1,6 @@
|
|||
mntner: REDPANDA-MNT
|
||||
admin-c: REDP-DN42
|
||||
tech-c: REDP-DN42
|
||||
mnt-by: REDPANDA-MNT
|
||||
auth: pgp-fingerprint 9B91F44036C04F172D7E2C4227A401F86B85D0BC
|
||||
source: DN42
|
5
data/mntner/SELLERIE-MNT
Normal file
5
data/mntner/SELLERIE-MNT
Normal file
|
@ -0,0 +1,5 @@
|
|||
mntner: SELLERIE-MNT
|
||||
tech-c: SELLERIE-DN42
|
||||
mnt-by: SELLERIE-MNT
|
||||
auth: pgp-fingerprint EB978C431D3F6DD6597B5B009784927ADCA261E4
|
||||
source: DN42
|
6
data/mntner/SHEBANG-MNT
Normal file
6
data/mntner/SHEBANG-MNT
Normal file
|
@ -0,0 +1,6 @@
|
|||
mntner: SHEBANG-MNT
|
||||
admin-c: SHEBANG-DN42
|
||||
tech-c: SHEBANG-DN42
|
||||
mnt-by: SHEBANG-MNT
|
||||
auth: pgp-fingerprint 0D5DF035091B1701E5CCF7068B49452817DFB39E
|
||||
source: DN42
|
6
data/mntner/SM-MNT
Normal file
6
data/mntner/SM-MNT
Normal file
|
@ -0,0 +1,6 @@
|
|||
mntner: SM-MNT
|
||||
admin-c: SM-DN42
|
||||
tech-c: SM-DN42
|
||||
mnt-by: SM-MNT
|
||||
auth: pgp-fingerprint CAA4C38744A72685C6DD23439DBA4FB293131B6E
|
||||
source: DN42
|
|
@ -4,3 +4,4 @@ admin-c: SPREITZER-DN42
|
|||
tech-c: SPREITZER-DN42
|
||||
mnt-by: SPREITZER-MNT
|
||||
source: DN42
|
||||
auth: pgp-fingerprint BBB7412E285684255600448768D66FF5DDAC361F
|
||||
|
|
|
@ -2,6 +2,6 @@ mntner: W1KL4S-MNT
|
|||
admin-c: W1KL4S-DN42
|
||||
tech-c: W1KL4S-DN42
|
||||
mnt-by: W1KL4S-MNT
|
||||
auth: pgp-fingerprint 0520E1E9942F365B838A5A2B4D23BFA98644479C
|
||||
auth: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHA+JLd3+Zmd/xWY6P7Vhf/OXxYZn1DH4GQxOpxf+wL8
|
||||
auth: pgp-fingerprint A0D657BA57C0032BAF816019EC32889AB463A9D9
|
||||
auth: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN7Kv0ztWZKTpUr/CS2MlhLSrH7Y5A/E7I9AUk/tgWdv
|
||||
source: DN42
|
||||
|
|
|
@ -5,4 +5,4 @@ mnt-by: ZHYZ-MNT
|
|||
source: DN42
|
||||
auth: pgp-fingerprint 3063182DC8DDC8295327D968F81C854AA3BF45F7
|
||||
auth: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCkJnS/PblMLT3pzFwD+otLnP5WuD62YBsASTdKIspQZc41RCyVw8EBJzJH6OeJ/PmsFm6bdI8YakzK0K1EPkmybiorbznbu4w8gpUJdK5WundTzZS2xGCmPLJRoh1n4UlyF3j2+oEbQTamYKls9KX133vlzr86l0KdQrTNMHpJdWyRUJqRQrocrqSbMl3qWsvxJJuIca4vRN76Xkgrj1es6FZ763AWSLWXVKNXF+2n8RfjPH0NJRebxiee0HHjmExgc8najhbHmEp0fX+3mGrNCZERNkRptQwaQPNwsdvtvIW0NPEjIGJdEBkDO/QRdatXXQVLFTn7+/scrPuyi/Itdb62/wbbEyF06he99Kle4c9RBh1Y1k+IoEXkpI+lp0RY3yhBzZ3NQXDffnLnNeKhPIOpyGOSMCtbd8mZjvwPH7hfaAVlzvUhsMKBu/chtOyaj9oqJ4SuYK2PNIYrR36zksL1wVK+kzpOI9y/i62WzVMwNWxVrgfHqu2ySQKQ7ss=
|
||||
remarks: The maintainer's QQ and telegram are 1722649517 zhihuiyuze
|
||||
remarks: The maintainer's telegram are zhihuiyuze
|
||||
|
|
6
data/organisation/ORG-REDPANDANETWORK
Normal file
6
data/organisation/ORG-REDPANDANETWORK
Normal file
|
@ -0,0 +1,6 @@
|
|||
organisation: ORG-REDPANDANETWORK
|
||||
org-name: Red Panda Network
|
||||
admin-c: REDP-DN42
|
||||
tech-c: REDP-DN42
|
||||
mnt-by: REDPANDA-MNT
|
||||
source: DN42
|
5
data/person/DESMOND-DN42
Normal file
5
data/person/DESMOND-DN42
Normal file
|
@ -0,0 +1,5 @@
|
|||
person: Alessandro Cristofanilli
|
||||
contact: cristofanillia@gmail.com
|
||||
nic-hdl: DESMOND-DN42
|
||||
mnt-by: FABRATERIA-MNT
|
||||
source: DN42
|
|
@ -1,8 +1,6 @@
|
|||
person: feuerrot
|
||||
e-mail: feuerrot@feuerrot.org
|
||||
contact: irc:feuerrot@hackint
|
||||
contact: xmpp:feuerrot@jabber.ccc.de
|
||||
nic-hdl: FEUERROT-DN42
|
||||
pgp-fingerprint: CA9470EA89B2F6D6E09BEE261E7523CA911AC822
|
||||
mnt-by: FEUERROT-MNT
|
||||
source: DN42
|
||||
|
|
7
data/person/HEXXNET-DN42
Normal file
7
data/person/HEXXNET-DN42
Normal file
|
@ -0,0 +1,7 @@
|
|||
person: Adam Sarkozi
|
||||
contact: admin@sarkoziadam.hu
|
||||
www: https://sarkoziadam.hu/
|
||||
pgp-fingerprint: 24F7557955DAB31998BD92015D24C1AFE8981618
|
||||
nic-hdl: HEXXNET-DN42
|
||||
mnt-by: HEXXNET-MNT
|
||||
source: DN42
|
5
data/person/KEBE-DN42
Normal file
5
data/person/KEBE-DN42
Normal file
|
@ -0,0 +1,5 @@
|
|||
person: KEBE
|
||||
e-mail: dn42@kebe.dev
|
||||
nic-hdl: KEBE-DN42
|
||||
mnt-by: KEBE-MNT
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
person: KEVINB
|
||||
e-mail: kevin@bentlage.nu
|
||||
nic-hdl: KEVINB-DN42
|
||||
mnt-by: KEBE-MNT
|
||||
source: DN42
|
6
data/person/M4OC-DN42
Normal file
6
data/person/M4OC-DN42
Normal file
|
@ -0,0 +1,6 @@
|
|||
person: Marco Cristofanilli
|
||||
contact: marco.cristofanilli@gmail.com
|
||||
nic-hdl: M4OC-DN42
|
||||
mnt-by: FABRATERIA-MNT
|
||||
pgp-fingerprint: B65FE332C920BE2D3FEBF899FEFC07BF808B465F
|
||||
source: DN42
|
|
@ -1,6 +1,6 @@
|
|||
person: mc36
|
||||
contact: irc:mc36 @ hackint.org
|
||||
e-mail: matecs@niif.hu
|
||||
e-mail: mc36@freemail.hu
|
||||
nic-hdl: MC36-DN42
|
||||
mnt-by: NOP-MNT
|
||||
source: DN42
|
||||
|
|
5
data/person/MCD1992-DN42
Normal file
5
data/person/MCD1992-DN42
Normal file
|
@ -0,0 +1,5 @@
|
|||
person: Aaron McDaniel
|
||||
e-mail: dn42@fgthou.se
|
||||
nic-hdl: MCD1992-DN42
|
||||
mnt-by: MCD1992-MNT
|
||||
source: DN42
|
|
@ -1,5 +1,6 @@
|
|||
person: Mebus
|
||||
nic-hdl: MEBUS-DN42
|
||||
mnt-by: MEBUS-MNT
|
||||
e-mail: mebus.inbox@googlemail.com
|
||||
e-mail: mebus@mailaix.de
|
||||
pgp-fingerprint: B052D1B9222EAB94AC714407F5B3580A566BEB34
|
||||
source: DN42
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
person: Liang Jingwen
|
||||
contact: liangjw@etlgr.com
|
||||
contact: dn42@cas7.moe
|
||||
contact: telegram: @liangjw
|
||||
pgp-fingerprint: A04C56688622E1D51DB4ED5D263BDBB7ECAB32E4
|
||||
nic-hdl: MOECAST-DN42
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
person: Nicolas CHEVRIER
|
||||
contact: nicolas@chevrier.com
|
||||
contact: dn42@nicolas.network
|
||||
nic-hdl: NICOLAS-DN42
|
||||
mnt-by: NICOLAS-MNT
|
||||
source: DN42
|
||||
|
|
8
data/person/REDP-DN42
Normal file
8
data/person/REDP-DN42
Normal file
|
@ -0,0 +1,8 @@
|
|||
person: Tyrasuki
|
||||
remarks: Tyrasuki's PERSON object
|
||||
contact: telegram: @Tyrasuki
|
||||
contact: twitter: @Tyrasuki
|
||||
e-mail: dn42@tyrasuki.be
|
||||
nic-hdl: REDP-DN42
|
||||
mnt-by: REDPANDA-MNT
|
||||
source: DN42
|
5
data/person/SELLERIE-DN42
Normal file
5
data/person/SELLERIE-DN42
Normal file
|
@ -0,0 +1,5 @@
|
|||
person: SELLERIE
|
||||
contact: mailto:dn42@slrie.de
|
||||
nic-hdl: SELLERIE-DN42
|
||||
mnt-by: SELLERIE-MNT
|
||||
source: DN42
|
5
data/person/SHEBANG-DN42
Normal file
5
data/person/SHEBANG-DN42
Normal file
|
@ -0,0 +1,5 @@
|
|||
person: Shebang
|
||||
contact: dn42@bastien-charles.fr
|
||||
nic-hdl: SHEBANG-DN42
|
||||
mnt-by: SHEBANG-MNT
|
||||
source: DN42
|
9
data/person/SM-DN42
Normal file
9
data/person/SM-DN42
Normal file
|
@ -0,0 +1,9 @@
|
|||
person: Skyler Mäntysaari
|
||||
e-mail: sm+dn42@samip.fi
|
||||
contact: irc:samip537@freenode
|
||||
contact: samip537@techint
|
||||
contact: Telegram: samip537
|
||||
contact: Twitter: mantysaaris
|
||||
nic-hdl: SM-DN42
|
||||
mnt-by: SM-MNT
|
||||
source: DN42
|
|
@ -1,5 +1,5 @@
|
|||
person: w1kl4s
|
||||
contact: w1kl4s@cock.li
|
||||
contact: w1kl4s@hackerspace.pl
|
||||
nic-hdl: W1KL4S-DN42
|
||||
mnt-by: W1KL4S-MNT
|
||||
source: DN42
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
person: Tassilo Schweyer
|
||||
contact: mailto:dn42@welterde.de
|
||||
contact: xmpp:welterde@jabber.welterde.de
|
||||
e-mail: dn42@welterde.de
|
||||
nic-hdl: WELTERDE-DN42
|
||||
mnt-by: DUMMY-MNT
|
||||
mnt-by: WELTERDE-MNT
|
||||
nick: welterde
|
||||
source: DN42
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
person: zhihuiyuze
|
||||
contact: zhihuiyuze@qq.com
|
||||
contact: zhihuiyuze@gmail.com
|
||||
contact: zhyz@zhyz.ru
|
||||
nic-hdl: ZHYZ-DN42
|
||||
mnt-by: ZHYZ-MNT
|
||||
source: DN42
|
||||
|
|
4
data/route/172.20.165.128_26
Normal file
4
data/route/172.20.165.128_26
Normal file
|
@ -0,0 +1,4 @@
|
|||
route: 172.20.165.128/26
|
||||
origin: AS4242420112
|
||||
mnt-by: MEBUS-MNT
|
||||
source: DN42
|
5
data/route/172.20.206.0_27
Normal file
5
data/route/172.20.206.0_27
Normal file
|
@ -0,0 +1,5 @@
|
|||
route: 172.20.206.0/27
|
||||
descr: SELLERIE-NETWORK
|
||||
origin: AS4242423869
|
||||
mnt-by: SELLERIE-MNT
|
||||
source: DN42
|
4
data/route/172.20.46.168_29
Normal file
4
data/route/172.20.46.168_29
Normal file
|
@ -0,0 +1,4 @@
|
|||
route: 172.20.46.168/29
|
||||
origin: AS4242423395
|
||||
mnt-by: SHEBANG-MNT
|
||||
source: DN42
|
|
@ -1,5 +1,5 @@
|
|||
route: 172.21.75.64/26
|
||||
descr: Peer with me at zhihuiyuze@qq.com
|
||||
descr: Peer with me at zhihuiyuze@gmail.com or zhyz@zhyz.ru
|
||||
origin: AS4242423747
|
||||
mnt-by: ZHYZ-MNT
|
||||
source: DN42
|
||||
|
|
4
data/route/172.22.110.224_27
Normal file
4
data/route/172.22.110.224_27
Normal file
|
@ -0,0 +1,4 @@
|
|||
route: 172.22.110.224/27
|
||||
origin: AS4242421918
|
||||
mnt-by: FABRATERIA-MNT
|
||||
source: DN42
|
4
data/route/172.22.114.96_27
Normal file
4
data/route/172.22.114.96_27
Normal file
|
@ -0,0 +1,4 @@
|
|||
route: 172.22.114.96/27
|
||||
origin: AS213021
|
||||
mnt-by: SM-MNT
|
||||
source: DN42
|
|
@ -1,4 +1,4 @@
|
|||
route: 172.22.122.96/27
|
||||
origin: AS4242422990
|
||||
origin: AS4242422995
|
||||
mnt-by: TAN-MNT
|
||||
source: DN42
|
||||
|
|
4
data/route/172.22.128.160_27
Normal file
4
data/route/172.22.128.160_27
Normal file
|
@ -0,0 +1,4 @@
|
|||
route: 172.22.128.160/27
|
||||
origin: AS4242420225
|
||||
mnt-by: HEXXNET-MNT
|
||||
source: DN42
|
4
data/route/172.22.177.0_27
Normal file
4
data/route/172.22.177.0_27
Normal file
|
@ -0,0 +1,4 @@
|
|||
route: 172.22.177.0/27
|
||||
origin: AS49752
|
||||
mnt-by: REDPANDA-MNT
|
||||
source: DN42
|
|
@ -1,4 +0,0 @@
|
|||
route: 172.22.41.240/28
|
||||
origin: AS4242420000
|
||||
mnt-by: PYROPETER-MNT
|
||||
source: DN42
|
|
@ -1,4 +0,0 @@
|
|||
route: 172.23.196.0/24
|
||||
origin: AS4242420000
|
||||
mnt-by: PYROPETER-MNT
|
||||
source: DN42
|
5
data/route6/fd01:374d:4ddd::_48
Normal file
5
data/route6/fd01:374d:4ddd::_48
Normal file
|
@ -0,0 +1,5 @@
|
|||
route6: fd01:374d:4ddd::/48
|
||||
origin: AS4242423869
|
||||
max-length: 48
|
||||
mnt-by: SELLERIE-MNT
|
||||
source: DN42
|
5
data/route6/fd02:685f:edac::_48
Normal file
5
data/route6/fd02:685f:edac::_48
Normal file
|
@ -0,0 +1,5 @@
|
|||
route6: fd02:685f:edac::/48
|
||||
origin: AS49752
|
||||
max-length: 64
|
||||
mnt-by: REDPANDA-MNT
|
||||
source: DN42
|
4
data/route6/fd10:fcac:b8f2::_48
Normal file
4
data/route6/fd10:fcac:b8f2::_48
Normal file
|
@ -0,0 +1,4 @@
|
|||
route6: fd10:fcac:b8f2::/48
|
||||
origin: AS4242421918
|
||||
mnt-by: FABRATERIA-MNT
|
||||
source: DN42
|
|
@ -1,5 +1,5 @@
|
|||
route6: fd37:3b3:cae6::/48
|
||||
descr: Peer with me at zhihuiyuze@qq.com And telegram is zhihuiyuze
|
||||
descr: Peer with me at zhihuiyuze@gmail.com And twitter is zhihuiyuze
|
||||
origin: AS4242423747
|
||||
mnt-by: ZHYZ-MNT
|
||||
source: DN42
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue