mirror of
https://git.dn42.dev/dn42/registry.git
synced 2025-07-20 09:26:59 +08:00
Initial whois entry for Nizar Murk (MNT-NIZARMURK)
This commit is contained in:
parent
05d42ac216
commit
b543d50904
15855 changed files with 15 additions and 127685 deletions
23
.drone.yml
23
.drone.yml
|
@ -1,23 +0,0 @@
|
|||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: pull-checks
|
||||
|
||||
steps:
|
||||
- name: squashbot
|
||||
image: dn42/pipeline
|
||||
environment:
|
||||
SQUASHBOT_TOKEN:
|
||||
from_secret: SQUASHBOT_TOKEN
|
||||
commands:
|
||||
- /scripts/wrapper
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- pull_request
|
||||
|
||||
---
|
||||
kind: signature
|
||||
hmac: a7844c78365f463971354b5650affed18c0ca3ffd05e9c96a7c3390558c84fb9
|
||||
|
||||
...
|
21
.gitignore
vendored
21
.gitignore
vendored
|
@ -1,21 +0,0 @@
|
|||
_MTN
|
||||
lib/
|
||||
whoisd/
|
||||
__pycache__
|
||||
|
||||
/data/.rpsl
|
||||
|
||||
# ---> Emacs
|
||||
# -*- mode: gitignore; -*-
|
||||
*~
|
||||
\#*\#
|
||||
.\#*
|
||||
|
||||
# ---> macOS
|
||||
# General
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# Thumbnails
|
||||
._*
|
117
README.md
117
README.md
|
@ -1,117 +0,0 @@
|
|||
# Guide for creating a Pull Request
|
||||
|
||||
The dn42 registry is a git repository and changes are made to it using pull requests.
|
||||
|
||||
There are many public guides available on how to work with remote git repositories,
|
||||
e.g. [git documentation](https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes) or [guide at github](https://help.github.com/en/github/using-git)
|
||||
|
||||
1. **Fork the registry repo, then clone your fork to create a local working copy**
|
||||
|
||||
Use the `Fork` button in the gitea UI (at the top right of the repository page), then:
|
||||
|
||||
```sh
|
||||
git clone git@git.dn42.dev:<FOO>/registry.git
|
||||
```
|
||||
|
||||
Where `<FOO>` is your gitea username.
|
||||
|
||||
2. **Make changes in your local copy**
|
||||
|
||||
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 <change some stuff>
|
||||
git add .
|
||||
git commit -S
|
||||
```
|
||||
|
||||
3. **Push your changes back to your forked copy of the registry**
|
||||
|
||||
- You must squash multiple commits together
|
||||
- You must also sign the final commit using your MNTNER [authentication method](https://dn42.dev/howto/Registry-Authentication).
|
||||
|
||||
Whilst not essential, it is also good practice to rebase your work on top of any other changes that may have happened on the master branch of the registry.
|
||||
|
||||
The registry contains a script that can automatically rebase and squash your commits:
|
||||
|
||||
```sh
|
||||
./squash-my-commits -S --push
|
||||
```
|
||||
|
||||
or you can do it manually:
|
||||
|
||||
```sh
|
||||
# Add the main registry repository as another remote, you only need to do this once
|
||||
|
||||
git remote add dn42registry git@git.dn42.dev:dn42/registry.git
|
||||
|
||||
# make sure its up to date
|
||||
|
||||
git fetch dn42registry master
|
||||
|
||||
# rebase your local copy on top of the registry 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 dn42registry/master
|
||||
|
||||
# force push your changes back to your registry copy
|
||||
|
||||
git push --force
|
||||
```
|
||||
|
||||
If you forget to sign your commit you can sign the existing commit using:
|
||||
|
||||
```sh
|
||||
git commit --amend --no-edit -S
|
||||
git push --force
|
||||
```
|
||||
|
||||
4. **Create a pull request**
|
||||
|
||||
In the gitea GUI, select your fork, check your changes again for a final time and then hit the 'Pull Request' button.
|
||||
|
||||
Your changes will go through a number of automatic checks before a final manual review by the registry maintainers. Manual reviews are typically completed once a day.
|
||||
|
||||
5. **Making updates**
|
||||
|
||||
If you need to make changes to fix review issues simply make the updates to your fork and follow the process in (3) to rebase, squash and sign your changes again. **You must do this for every update**.
|
||||
|
||||
**Do not close and re-open a new pull request**, any changes you make on your branch will be automatically updated in the PR. Creating a new PR loses all the history and makes tracking changes harder.
|
||||
|
||||
6. **Tidy Up**
|
||||
|
||||
Once your changes have been accepted and merged, you may delete your local copy and the fork that was created in gitea.
|
||||
|
||||
# Gitea Usage
|
||||
|
||||
The DN42 registry is a community resource for *your* benefit.
|
||||
Registered users are free to create and use their own repositories and use the Drone CI tools, but 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 the United Kingdom 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. If you do copy the registry you must ensure that any copies you make are deleted when no longer required and that you will make best efforts to update or delete personal data when requested.
|
||||
|
||||
You **must not** clone or mirror the registry in to a commercial git repository; commercial terms of service can be incompatible with the use of personal data in the registry.
|
|
@ -1,19 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ "$#" -eq "0" ]
|
||||
then
|
||||
echo "Usage: $0 YOUR-MNT"
|
||||
exit
|
||||
fi
|
||||
|
||||
BASE="$(readlink -f "$0" 2>/dev/null || python -c 'import os,sys;print(os.path.realpath(sys.argv[1]))' "$0")"
|
||||
BASE="$(dirname "$BASE")"
|
||||
cd "$BASE" || exit 1
|
||||
|
||||
if [ "$1" = "--all" ]; then
|
||||
utils/schema-check/dn42-schema.py -v scan data/ || ( echo "Schema validation failed, please check above!" ; exit 1 )
|
||||
else
|
||||
utils/schema-check/dn42-schema.py -v scan data/ -f "data/mntner/$1" || ( echo "Schema validation for mntner object failed, please check above!" ; exit 1 )
|
||||
utils/schema-check/dn42-schema.py -v scan data/ -m "$1" || ( echo "Schema validation for related objects failed, please check above!" ; exit 1 )
|
||||
fi
|
||||
|
18
check-pol
18
check-pol
|
@ -1,18 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
set -o pipefail
|
||||
|
||||
if [ $# -eq 0 ]
|
||||
then
|
||||
echo "Usage: $0 COMMIT YOUR-MNT"
|
||||
exit
|
||||
fi
|
||||
|
||||
BASE="$(readlink -f "$0" 2>/dev/null || python -c 'import os,sys;print(os.path.realpath(sys.argv[1]))' "$0")"
|
||||
BASE="$(dirname "$BASE")"
|
||||
cd "$BASE" || exit 1
|
||||
|
||||
git diff --name-only "$1" | while IFS='/' read -ra LINE; do
|
||||
if [[ "${LINE[0]}" = "data" && -n "${LINE[2]}" ]]; then
|
||||
utils/schema-check/dn42-schema.py -v policy "${LINE[1]}" "${LINE[2]}" "$2"
|
||||
fi
|
||||
done
|
18
check-pol2
18
check-pol2
|
@ -1,18 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
set -o pipefail
|
||||
|
||||
if [ $# -eq 0 ]
|
||||
then
|
||||
echo "Usage: $0 COMMIT YOUR-MNT"
|
||||
exit
|
||||
fi
|
||||
|
||||
BASE="$(readlink -f "$0" 2>/dev/null || python -c 'import os,sys;print(os.path.realpath(sys.argv[1]))' "$0")"
|
||||
BASE="$(dirname "$BASE")"
|
||||
cd "$BASE" || exit 1
|
||||
|
||||
git diff --name-only "$1" | while IFS='/' read -ra LINE; do
|
||||
if [[ "${LINE[0]}" = "data" && -n "${LINE[2]}" ]]; then
|
||||
utils/schema-check/dn42_schema_local.py -v policy "${LINE[1]}" "${LINE[2]}" "$2" "$1"
|
||||
fi
|
||||
done
|
23
check-remote
23
check-remote
|
@ -1,23 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
if [ $# -lt 3 ]
|
||||
then
|
||||
echo "Usage: $0 GIT-USER GIT-BRANCH USER-MNT"
|
||||
exit
|
||||
fi
|
||||
|
||||
clean_up() {
|
||||
git merge --abort > /dev/null
|
||||
}
|
||||
|
||||
(git merge HEAD || clean_up) > /dev/null
|
||||
git pull --ff-only > /dev/null
|
||||
if ! git config "remote.$1.url" > /dev/null; then
|
||||
git remote add "$1" "git@git.dn42:$1/registry.git"
|
||||
fi
|
||||
git fetch "$1" 2> /dev/null
|
||||
git merge --no-ff --no-commit "$1/$2" 2> /dev/null
|
||||
./check-pol HEAD "$3" || (echo "Policy Check FAILED"; clean_up; exit 1)
|
||||
./check-my-stuff "$3" || (echo "Schema Check FAILED"; clean_up; exit 1)
|
||||
echo OK
|
||||
clean_up
|
|
@ -1,7 +0,0 @@
|
|||
as-block: AS1-AS4294967294
|
||||
descr: Root AS-BLOCK
|
||||
remarks: This block is reserved to delegate access for sub-allocations.
|
||||
remarks: You can not freely register any ASN in this block.
|
||||
mnt-by: DN42-MNT
|
||||
policy: closed
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
as-block: AS4201270000-AS4201279999
|
||||
descr: neonetwork ASN space
|
||||
mnt-by: DN42-MNT
|
||||
policy: closed
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-block: AS4242420000-AS4242423999
|
||||
descr: dn42 ASN space for end-users
|
||||
remarks: This block is reserved for end-users allocation.
|
||||
remarks: You can freely register any ASN in this block.
|
||||
remarks: However, please don't allocate sub-blocks in this ASN space.
|
||||
mnt-by: DN42-MNT
|
||||
policy: open
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-block: AS4242424000-AS4242426999
|
||||
descr: Future dn42 use
|
||||
remarks: This block is reserved for future dn42 use.
|
||||
mnt-by: DN42-MNT
|
||||
policy: closed
|
||||
source: DN42
|
|
@ -1,7 +0,0 @@
|
|||
as-block: AS4242427000-AS4242429999
|
||||
descr: dn42 ASN space for sub-allocations
|
||||
remarks: This block is reserved for sub-allocations.
|
||||
remarks: Please don't allocate individual ASN directly in this block.
|
||||
mnt-by: DN42-MNT
|
||||
policy: ask
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
as-block: AS64512-AS65534
|
||||
descr: Private ASN block
|
||||
mnt-by: DN42-MNT
|
||||
policy: closed
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-block: AS64600-AS64855
|
||||
descr: dn42 native ASN block (legacy)
|
||||
remarks: The legacy policy was that if you own 172.22.x.0/24 you own the ASN 64600+x.
|
||||
remarks: With the default allocation policy of an /25 per person now this becomes a problem.
|
||||
remarks: Please only make an assignment from this block if you can't use 4 byte ASNs.
|
||||
mnt-by: DN42-MNT
|
||||
policy: ask
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-block: AS64856-AS64999
|
||||
descr: dn42 native ASN block (legacy)
|
||||
remarks: this block was allocated to encourage people to use the private AS range reserved
|
||||
remarks: by IANA instead of the 76100-76199 block.
|
||||
remarks: Please only make an assignment from this block if you can't use 4 byte ASNs.
|
||||
mnt-by: DN42-MNT
|
||||
policy: closed
|
||||
source: DN42
|
|
@ -1,9 +0,0 @@
|
|||
as-block: AS76100-AS76199
|
||||
descr: Legacy dn42 ASN block
|
||||
remarks: This range was never intented to be used as private ASN
|
||||
remarks: space by IANA. Rather, it is part of a larger block of
|
||||
remarks: "reserved" AS numbers.
|
||||
remarks: The use of this block is now strongly discouraged.
|
||||
mnt-by: DN42-MNT
|
||||
policy: closed
|
||||
source: DN42
|
|
@ -1,7 +0,0 @@
|
|||
as-set: AS-AIRGAPPED
|
||||
descr: AIRGAPPED NET SET
|
||||
members: AS4242420656
|
||||
admin-c: AIRGAPPED-ADMIN-DN42
|
||||
tech-c: AIRGAPPED-TECH-DN42
|
||||
mnt-by: AIRGAPPED-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS-ALANYHQ
|
||||
members: AS4242420916
|
||||
admin-c: ALANYHQ-DN42
|
||||
tech-c: ALANYHQ-DN42
|
||||
mnt-by: ALANYHQ-MNT
|
||||
source: DN42
|
|
@ -1,7 +0,0 @@
|
|||
as-set: AS-ANDI-TEST
|
||||
descr: testing
|
||||
members: AS4242423991
|
||||
admin-c: ANDI-DN42
|
||||
tech-c: ANDI-DN42
|
||||
mnt-by: ANDI--MNT
|
||||
source: DN42
|
|
@ -1,13 +0,0 @@
|
|||
as-set: AS-BAOSHUO
|
||||
remarks: +--------------------------+
|
||||
remarks: | Baoshuo DN42 Network |
|
||||
remarks: | |
|
||||
remarks: | https://baoshuo.ren/dn42 |
|
||||
remarks: +--------------------------+
|
||||
members: AS141776
|
||||
members: AS4242420247
|
||||
members: AS4201270017
|
||||
admin-c: BAOSHUO-DN42
|
||||
tech-c: BAOSHUO-DN42
|
||||
mnt-by: BAOSHUO-MNT
|
||||
source: DN42
|
|
@ -1,33 +0,0 @@
|
|||
as-set: AS-BLAZING
|
||||
descr: Blazing + 1-Hop-Down
|
||||
members: AS4242420022
|
||||
members: AS64526
|
||||
members: AS64606
|
||||
members: AS64654
|
||||
members: AS64674
|
||||
members: AS64720
|
||||
members: AS64737
|
||||
members: AS64828
|
||||
members: AS65026
|
||||
members: AS65043
|
||||
members: AS76140
|
||||
members: AS4242420031
|
||||
members: AS4242420045
|
||||
members: AS4242420077
|
||||
members: AS4242420123
|
||||
members: AS4242420789
|
||||
members: AS4242421093
|
||||
members: AS4242421404
|
||||
members: AS4242421588
|
||||
members: AS4242421888
|
||||
members: AS4242421955
|
||||
members: AS4242422700
|
||||
members: AS4242422777
|
||||
members: AS4242423201
|
||||
members: AS4242423513
|
||||
members: AS4242423723
|
||||
members: AS4242423905
|
||||
admin-c: TOBEE-DN42
|
||||
tech-c: TOBEE-DN42
|
||||
mnt-by: BLAZING-MNT
|
||||
source: DN42
|
|
@ -1,7 +0,0 @@
|
|||
as-set: AS-CCCDA
|
||||
descr: CCC Darmstadt
|
||||
members: AS4242420101
|
||||
admin-c: HEXA-DN42
|
||||
tech-c: HEXA-DN42
|
||||
mnt-by: HEXA-MNT
|
||||
source: DN42
|
|
@ -1,12 +0,0 @@
|
|||
as-set: AS-CCCHB
|
||||
descr: CCCHB dn42 ASN block
|
||||
admin-c: CREST-DN42
|
||||
admin-c: CREST-DN42
|
||||
mnt-by: CREST-MNT
|
||||
remarks: as-block: 64824 - 64839
|
||||
members: AS64825
|
||||
members: AS64827
|
||||
members: AS64828
|
||||
members: AS64831
|
||||
members: AS64839
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-set: AS-EWPRATTEN
|
||||
descr: AS398057 and downstreams
|
||||
members: AS398057
|
||||
members: AS398057:AS-DOWNSTREAMS
|
||||
admin-c: EWPRATTEN-DN42
|
||||
tech-c: EWPRATTEN-DN42
|
||||
mnt-by: EWPRATTEN-MNT
|
||||
source: DN42
|
|
@ -1,9 +0,0 @@
|
|||
as-set: AS-GRMML
|
||||
admin-c: GRMML-DN42
|
||||
tech-c: GRMML-DN42
|
||||
mnt-by: GRMML-MNT
|
||||
members: AS4242420120
|
||||
members: AS4242420121
|
||||
members: AS4242420122
|
||||
members: AS4242420123
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS-HENTAI
|
||||
descr: Hentai Network
|
||||
members: AS140913
|
||||
members: AS4242421025
|
||||
mnt-by: ICECAT-MNT
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-set: AS-MAGICNEKO
|
||||
descr: MAGICNEKO-ALL
|
||||
members: AS-HENTAI
|
||||
members: AS4201270005
|
||||
members: AS4201270008
|
||||
members: AS141706
|
||||
mnt-by: ICECAT-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS-NEO
|
||||
descr: NEO Network AS set
|
||||
members: AS4242421123
|
||||
members: AS4242421121
|
||||
mnt-by: NEO-MNT
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-set: AS-NETRAVNEN:AS-DOWNSTREAM
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
members: AS4242420144:AS-DOWNSTREAM
|
||||
members: AS208391:AS-DOWNSTREAM
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,9 +0,0 @@
|
|||
as-set: AS-NETRAVNEN:AS-NETRAVNEN
|
||||
descr: Autonomous Systems (ASNs) operated by ORG-NETRAVNEN-DN42
|
||||
members: AS4242420144:AS-NETRAVNEN
|
||||
members: AS208391:AS-NETRAVNEN
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-set: AS-NETRAVNEN:AS-PEER
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
members: AS4242420144:AS-PEER
|
||||
members: AS208391:AS-PEER
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-set: AS-NETRAVNEN:AS-TRANSIT
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
members: AS208391:AS-TRANSIT
|
||||
members: AS4242420144:AS-TRANSIT
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-set: AS-NETRAVNEN:AS-UPSTREAM
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
members: AS4242420144:AS-UPSTREAM
|
||||
members: AS208391:AS-UPSTREAM
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,7 +0,0 @@
|
|||
as-set: AS-NEUTRINET
|
||||
mbrs-by-ref: NEUTRINET-MNT
|
||||
members: AS4242420754
|
||||
admin-c: ORG-NEUTRINET-NOC-DN42
|
||||
tech-c: ORG-NEUTRINET-NOC-DN42
|
||||
mnt-by: NEUTRINET-MNT
|
||||
source: DN42
|
|
@ -1,11 +0,0 @@
|
|||
as-set: AS-NIA
|
||||
descr: Niantic Network AS set
|
||||
members: AS4242421331
|
||||
members: AS4242421332
|
||||
members: AS207268
|
||||
mnt-by: NIA-MNT
|
||||
mnt-by: HACKER-MNT
|
||||
mnt-by: DAVIDWANG-MNT
|
||||
mnt-by: NATIVUS-MNT
|
||||
mnt-by: ALEKSANA-MNT
|
||||
source: DN42
|
|
@ -1,9 +0,0 @@
|
|||
as-set: AS-NIA:AS-DOWNSTREAM
|
||||
admin-c: NIA-DN42
|
||||
tech-c: NIA-DN42
|
||||
mnt-by: NIA-MNT
|
||||
mnt-by: HACKER-MNT
|
||||
mnt-by: DAVIDWANG-MNT
|
||||
mnt-by: NATIVUS-MNT
|
||||
mnt-by: ALEKSANA-MNT
|
||||
source: DN42
|
|
@ -1,9 +0,0 @@
|
|||
as-set: AS-NIA:AS-PEER
|
||||
admin-c: NIA-DN42
|
||||
tech-c: NIA-DN42
|
||||
mnt-by: NIA-MNT
|
||||
mnt-by: HACKER-MNT
|
||||
mnt-by: DAVIDWANG-MNT
|
||||
mnt-by: NATIVUS-MNT
|
||||
mnt-by: ALEKSANA-MNT
|
||||
source: DN42
|
|
@ -1,47 +0,0 @@
|
|||
as-set: AS-NIA:AS-TRANSIT
|
||||
members: AS4242421353
|
||||
members: AS4201270006
|
||||
members: AS4201270010
|
||||
members: AS4242420022
|
||||
members: AS4242420140
|
||||
members: AS4242420151
|
||||
members: AS4242420207
|
||||
members: AS4242420251
|
||||
members: AS4242420524
|
||||
members: AS4242420604
|
||||
members: AS4242420731
|
||||
members: AS4242420799
|
||||
members: AS4242420803
|
||||
members: AS4242420807
|
||||
members: AS4242420817
|
||||
members: AS4242420916
|
||||
members: AS4242420977
|
||||
members: AS4242421025
|
||||
members: AS4242421080
|
||||
members: AS4242421214
|
||||
members: AS4242421588
|
||||
members: AS4242421722
|
||||
members: AS4242421916
|
||||
members: AS4242422189
|
||||
members: AS4242422225
|
||||
members: AS4242422244
|
||||
members: AS4242422464
|
||||
members: AS4242422520
|
||||
members: AS4242422547
|
||||
members: AS4242422575
|
||||
members: AS4242422601
|
||||
members: AS4242422761
|
||||
members: AS4242422904
|
||||
members: AS4242423078
|
||||
members: AS4242423088
|
||||
members: AS4242423618
|
||||
members: AS4242423914
|
||||
members: AS76190
|
||||
admin-c: NIA-DN42
|
||||
tech-c: NIA-DN42
|
||||
mnt-by: NIA-MNT
|
||||
mnt-by: HACKER-MNT
|
||||
mnt-by: DAVIDWANG-MNT
|
||||
mnt-by: NATIVUS-MNT
|
||||
mnt-by: ALEKSANA-MNT
|
||||
source: DN42
|
|
@ -1,9 +0,0 @@
|
|||
as-set: AS-NIA:AS-UPSTREAM
|
||||
admin-c: NIA-DN42
|
||||
tech-c: NIA-DN42
|
||||
mnt-by: NIA-MNT
|
||||
mnt-by: HACKER-MNT
|
||||
mnt-by: DAVIDWANG-MNT
|
||||
mnt-by: NATIVUS-MNT
|
||||
mnt-by: ALEKSANA-MNT
|
||||
source: DN42
|
|
@ -1,11 +0,0 @@
|
|||
as-set: AS-NL-ZUID-IX
|
||||
descr: NL Zuid Exchanges
|
||||
members: AS4242420330
|
||||
members: AS4242420324
|
||||
members: AS4242420330
|
||||
members: AS4242420120
|
||||
members: AS4242421340
|
||||
admin-c: NL-ZUID-DN42
|
||||
tech-c: NL-ZUID-DN42
|
||||
mnt-by: MARLINC-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS-NULLL
|
||||
descr: /dev/nulll autonomous systems
|
||||
members: AS207613
|
||||
members: AS4242422428
|
||||
mnt-by: NULLL-MNT
|
||||
source: DN42
|
|
@ -1,12 +0,0 @@
|
|||
as-set: AS-POTATO
|
||||
descr: PotatoNet @ DN42
|
||||
remarks: previously known as "fixmix DN42 Network"
|
||||
mbrs-by-ref: DL-MNT
|
||||
members: AS4242421876
|
||||
members: AS4201270021
|
||||
members: AS17830
|
||||
members: AS211876
|
||||
admin-c: DL-DN42
|
||||
tech-c: DL-DN42
|
||||
mnt-by: DL-MNT
|
||||
source: DN42
|
|
@ -1,11 +0,0 @@
|
|||
as-set: AS-POTATO:AS-DOWNSTREAM
|
||||
descr: PotatoNet @ DN42
|
||||
remarks: previously known as "fixmix DN42 Network"
|
||||
remarks: Leaf (unidirectional transit) Peers
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421876:AS-DOWNSTREAM
|
||||
remarks: ══════════════════════════════
|
||||
admin-c: DL-DN42
|
||||
tech-c: DL-DN42
|
||||
mnt-by: DL-MNT
|
||||
source: DN42
|
|
@ -1,11 +0,0 @@
|
|||
as-set: AS-POTATO:AS-TRANSIT
|
||||
descr: PotatoNet @ DN42
|
||||
remarks: previously known as "fixmix DN42 Network"
|
||||
remarks: Regular (bidirectional transit) Peers
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421876:AS-TRANSIT
|
||||
remarks: ══════════════════════════════
|
||||
admin-c: DL-DN42
|
||||
tech-c: DL-DN42
|
||||
mnt-by: DL-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS-PR0
|
||||
descr: PR0-AS-SET
|
||||
members: AS4242422424
|
||||
members: AS4242422448
|
||||
mnt-by: PR0-MNT
|
||||
source: DN42
|
|
@ -1,7 +0,0 @@
|
|||
as-set: AS-SEADOG007
|
||||
descr: seadog007's asset
|
||||
members: AS4242421069
|
||||
members: AS207468
|
||||
members: AS-TWDS
|
||||
mnt-by: SEADOG007-MNT
|
||||
source: DN42
|
|
@ -1,7 +0,0 @@
|
|||
as-set: AS-SOMA
|
||||
descr: Soma ASNs
|
||||
members: AS4242421299
|
||||
admin-c: NOC-DN42
|
||||
tech-c: NOC-DN42
|
||||
mnt-by: S-MNT
|
||||
source: DN42
|
|
@ -1,7 +0,0 @@
|
|||
as-set: AS-SPLASH
|
||||
descr: Splash
|
||||
members: AS4242420074
|
||||
admin-c: SPLASH-DN42
|
||||
tech-c: SPLASH-DN42
|
||||
mnt-by: SPLASH-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS-SUNNET
|
||||
descr: SUNNET-AS-SET
|
||||
members: AS4242423088
|
||||
members: AS7721
|
||||
mnt-by: SUNNET-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS-TWDS
|
||||
descr: seadog007's asset
|
||||
members: AS131668
|
||||
members: AS18041
|
||||
mnt-by: SEADOG007-MNT
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-set: AS-XVNET
|
||||
descr: Xensor V Network @ DN42
|
||||
mbrs-by-ref: XTEX-MNT
|
||||
members: AS4242420361
|
||||
admin-c: XTEX-DN42
|
||||
tech-c: XTEX-DN42
|
||||
mnt-by: XTEX-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS208391:AS-DOWNSTREAM
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-set: AS208391:AS-NETRAVNEN
|
||||
descr: Autonomous Systems (ASNs) operated by ORG-NETRAVNEN-DN42
|
||||
members: AS208391
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS208391:AS-PEER
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS208391:AS-TRANSIT
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS208391:AS-UPSTREAM
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS398057:AS-DOWNSTREAMS
|
||||
descr: Downstreams of AS398057
|
||||
admin-c: EWPRATTEN-DN42
|
||||
tech-c: EWPRATTEN-DN42
|
||||
mnt-by: EWPRATTEN-MNT
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
as-set: AS4242420119:AS-DOWNSTREAM
|
||||
admin-c: JRB0001-DN42
|
||||
tech-c: JRB0001-DN42
|
||||
mnt-by: JRB0001-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS4242420119:AS-PEER
|
||||
members: AS4242423905
|
||||
admin-c: JRB0001-DN42
|
||||
tech-c: JRB0001-DN42
|
||||
mnt-by: JRB0001-MNT
|
||||
source: DN42
|
|
@ -1,21 +0,0 @@
|
|||
as-set: AS4242420119:AS-TRANSIT
|
||||
members: AS64737
|
||||
members: AS65043
|
||||
members: AS4242420123
|
||||
members: AS4242420197
|
||||
members: AS4242420604
|
||||
members: AS4242421080
|
||||
members: AS4242421722
|
||||
members: AS4242421876
|
||||
members: AS4242421955
|
||||
members: AS4242422225
|
||||
members: AS4242422237
|
||||
members: AS4242422601
|
||||
members: AS4242423088
|
||||
members: AS4242423618
|
||||
members: AS4242423905
|
||||
members: AS4242423914
|
||||
admin-c: JRB0001-DN42
|
||||
tech-c: JRB0001-DN42
|
||||
mnt-by: JRB0001-MNT
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
as-set: AS4242420119:AS-UPSTREAM
|
||||
admin-c: JRB0001-DN42
|
||||
tech-c: JRB0001-DN42
|
||||
mnt-by: JRB0001-MNT
|
||||
source: DN42
|
|
@ -1,13 +0,0 @@
|
|||
as-set: AS4242420123:AS-DOWNSTREAM
|
||||
remarks: GRMML-Home-AS
|
||||
members: AS4242420121
|
||||
remarks: GRMML ExaBGP Anycast
|
||||
members: AS4242420122
|
||||
remarks: ORG-RZL
|
||||
members: AS64636
|
||||
remarks: LEX-AS
|
||||
members: AS64697
|
||||
admin-c: GRMML-DN42
|
||||
tech-c: GRMML-DN42
|
||||
mnt-by: GRMML-MNT
|
||||
source: DN42
|
|
@ -1,38 +0,0 @@
|
|||
as-set: AS4242420123:AS-PEER
|
||||
members: AS4242420022
|
||||
members: AS4242420121
|
||||
members: AS4242420138
|
||||
members: AS4242420140
|
||||
members: AS4242420205
|
||||
members: AS4242420442
|
||||
members: AS4242420789
|
||||
members: AS4242421110
|
||||
members: AS4242421114
|
||||
members: AS4242421123
|
||||
members: AS4242421191
|
||||
members: AS4242421276
|
||||
members: AS4242421339
|
||||
members: AS4242421588
|
||||
members: AS4242421955
|
||||
members: AS4242422100
|
||||
members: AS4242422700
|
||||
members: AS4242423513
|
||||
members: AS4242423514
|
||||
members: AS4242423677
|
||||
members: AS4242423723
|
||||
members: AS4242423773
|
||||
members: AS4242423852
|
||||
members: AS4242423905
|
||||
members: AS64636
|
||||
members: AS64717
|
||||
members: AS64719
|
||||
members: AS64720
|
||||
members: AS64742
|
||||
members: AS64770
|
||||
members: AS64787
|
||||
members: AS64828
|
||||
members: AS65043
|
||||
admin-c: GRMML-DN42
|
||||
tech-c: GRMML-DN42
|
||||
mnt-by: GRMML-MNT
|
||||
source: DN42
|
|
@ -1,13 +0,0 @@
|
|||
as-set: AS4242420123:AS-TRANSIT
|
||||
remarks: JRB0001-MNT
|
||||
members: AS4242420119
|
||||
remarks: ORG-CCCDA
|
||||
members: AS4242420101
|
||||
remarks: HEXA-MNT
|
||||
members: AS64600
|
||||
remarks: XUU-MNT
|
||||
members: AS64737
|
||||
admin-c: GRMML-DN42
|
||||
tech-c: GRMML-DN42
|
||||
mnt-by: GRMML-MNT
|
||||
source: DN42
|
|
@ -1,25 +0,0 @@
|
|||
as-set: AS4242420138:AS-PEER
|
||||
remarks: chrisnew
|
||||
remarks: drathir
|
||||
remarks: eloko
|
||||
remarks: gigga
|
||||
remarks: jamie9898
|
||||
remarks: jonas
|
||||
members: AS4242420789
|
||||
remarks: kpanic
|
||||
members: AS65043
|
||||
remarks: krstn
|
||||
members: AS4242423723
|
||||
remarks: mafio
|
||||
remarks: lantian
|
||||
members: AS4242422547
|
||||
remarks: nurtic-vibe
|
||||
members: AS4242420123
|
||||
remarks: weiti
|
||||
members: AS4242423905
|
||||
remarks: xuu
|
||||
members: AS64737
|
||||
admin-c: HARDB1T-DN42
|
||||
tech-c: HARDB1T-DN42
|
||||
mnt-by: HARDB1T-MNT
|
||||
source: DN42
|
|
@ -1,7 +0,0 @@
|
|||
as-set: AS4242420138:AS-TRANSIT
|
||||
remarks: sky
|
||||
members: AS4242421911
|
||||
admin-c: HARDB1T-DN42
|
||||
tech-c: HARDB1T-DN42
|
||||
mnt-by: HARDB1T-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS4242420144:AS-DOWNSTREAM
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS4242420144:AS-FULLTABLE
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-set: AS4242420144:AS-NETRAVNEN
|
||||
descr: Autonomous Systems (ASNs) operated by ORG-NETRAVNEN-DN42
|
||||
members: AS4242420144
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS4242420144:AS-PEER
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS4242420144:AS-TRANSIT
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,6 +0,0 @@
|
|||
as-set: AS4242420144:AS-UPSTREAM
|
||||
mbrs-by-ref: NETRAVNEN-MNT
|
||||
admin-c: ORG-NETRAVNEN-DN42
|
||||
tech-c: ORG-NETRAVNEN-DN42
|
||||
mnt-by: NETRAVNEN-MNT
|
||||
source: DN42
|
|
@ -1,26 +0,0 @@
|
|||
as-set: AS4242420151:AS-TRANSIT
|
||||
admin-c: BAUEN1-DN42
|
||||
tech-c: BAUEN1-DN42
|
||||
mnt-by: BAUEN1-MNT
|
||||
remarks: BURBLE-MNT
|
||||
members: AS4242422601
|
||||
remarks: SUNNET-MNT
|
||||
members: AS4242423088
|
||||
remarks: KIOUBIT-MNT
|
||||
members: AS4242423914
|
||||
remarks: ALWAYSLIVID-MNT
|
||||
members: AS4242420799
|
||||
remarks: GTDB-MNT
|
||||
remarks: ALANYHQ-MNT
|
||||
members: AS4242420916
|
||||
remarks: NAB-MNT
|
||||
members: AS4242420781
|
||||
remarks: NIA-MNT
|
||||
members: AS4242421331
|
||||
remarks: HEXANET-MNT
|
||||
members: AS4242423078
|
||||
remarks: MAX-MNT
|
||||
members: AS4242421307
|
||||
remarks: BITBAKERS-MNT
|
||||
members: AS4242421224
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-set: AS4242420604:AS-ALL
|
||||
members: AS4242420604:AS-DN42
|
||||
members: AS4242420604:AS-CN
|
||||
members: AS4242420604
|
||||
admin-c: MOECAST-DN42
|
||||
tech-c: MOECAST-DN42
|
||||
mnt-by: MOECAST-MNT
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-set: AS4242420604:AS-CN
|
||||
members: AS4242421228
|
||||
members: AS4242422334
|
||||
members: AS4242421332
|
||||
admin-c: MOECAST-DN42
|
||||
tech-c: MOECAST-DN42
|
||||
mnt-by: MOECAST-MNT
|
||||
source: DN42
|
|
@ -1,53 +0,0 @@
|
|||
as-set: AS4242420604:AS-DN42
|
||||
members: AS4201270000
|
||||
members: AS4242421181
|
||||
members: AS4242422547
|
||||
members: AS4242423618
|
||||
members: AS4242421541
|
||||
members: AS4242420212
|
||||
members: AS4242422339
|
||||
members: AS4242420835
|
||||
members: AS4242422092
|
||||
members: AS4201270010
|
||||
members: AS4242420977
|
||||
members: AS4242422032
|
||||
members: AS4242423735
|
||||
members: AS4242421032
|
||||
members: AS134098
|
||||
members: AS4242421288
|
||||
members: AS4242421099
|
||||
members: AS4201270006
|
||||
members: AS4201270016
|
||||
members: AS4242422330
|
||||
members: AS4242421722
|
||||
members: AS4242423513
|
||||
members: AS4242422244
|
||||
members: AS4242421926
|
||||
members: AS4242420925
|
||||
members: AS4242422189
|
||||
members: AS4242421876
|
||||
members: AS4242420780
|
||||
members: AS4242420827
|
||||
members: AS4242420197
|
||||
members: AS4242422717
|
||||
members: AS4242423704
|
||||
members: AS4242421488
|
||||
members: AS4242422633
|
||||
members: AS4242421826
|
||||
members: AS4242422980
|
||||
members: AS76190
|
||||
members: AS4242422464
|
||||
members: AS4242421331
|
||||
members: AS4242422237
|
||||
members: AS4242422601
|
||||
members: AS4242423914
|
||||
members: AS4242421588
|
||||
members: AS4242423088
|
||||
members: AS4242421080
|
||||
members: AS4242421273
|
||||
members: AS4242421181
|
||||
members: AS4242422225
|
||||
admin-c: MOECAST-DN42
|
||||
tech-c: MOECAST-DN42
|
||||
mnt-by: MOECAST-MNT
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
as-set: AS4242420904:AS-PEER
|
||||
admin-c: Y525-DN42
|
||||
tech-c: Y525-DN42
|
||||
mnt-by: Y525-MNT
|
||||
source: DN42
|
|
@ -1,8 +0,0 @@
|
|||
as-set: AS4242420904:AS-TRANSIT
|
||||
remarks: LANTIAN
|
||||
members: AS4242422547
|
||||
remarks: ZOTAN
|
||||
admin-c: Y525-DN42
|
||||
tech-c: Y525-DN42
|
||||
mnt-by: Y525-MNT
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
as-set: AS4242421050:AS-PEER
|
||||
admin-c: NAPSTERBATER-DN42
|
||||
tech-c: NAPSTERBATER-DN42
|
||||
mnt-by: NAPSTERBATER-MNT
|
||||
source: DN42
|
|
@ -1,59 +0,0 @@
|
|||
as-set: AS4242421050:AS-TRANSIT
|
||||
remarks: BURBLE-MNT
|
||||
members: AS4242422601
|
||||
remarks: TCHEKDA-MNT
|
||||
members: AS4242421722
|
||||
remarks: MUNSTERNET-MNT
|
||||
members: AS4242422237
|
||||
remarks: KIOUBIT-MNT
|
||||
members: AS4242423914
|
||||
remarks: GRGR-MNT
|
||||
members: AS4242421114
|
||||
remarks: TECH9-MNT
|
||||
members: AS4242421588
|
||||
remarks: IEDON-MNT
|
||||
members: AS4242422189
|
||||
remarks: SUNNET-MNT
|
||||
members: AS4242423088
|
||||
remarks: TRIS-MNT
|
||||
members: AS4242422502
|
||||
remarks: DOXZ-MNT
|
||||
members: AS4242422904
|
||||
remarks: GATUNO-MNT
|
||||
members: AS4242420180
|
||||
remarks: OWENSRESEARCH-MNT
|
||||
members: AS4242421099
|
||||
remarks: ANDROW-MNT
|
||||
members: AS4242422575
|
||||
remarks: MOE-MNT
|
||||
members: AS4242422464
|
||||
remarks: JLU5-MNT
|
||||
members: AS4242421080
|
||||
remarks: GCC-MNT
|
||||
remarks: SCOOTERH928-MNT
|
||||
members: AS4242423856
|
||||
remarks: 0XCB-MNT
|
||||
remarks: MOECAST-MNT
|
||||
members: AS4242420604
|
||||
remarks: EASTBOUND-MNT
|
||||
members: AS4242422633
|
||||
remarks: LSS233-MNT
|
||||
members: AS4242421826
|
||||
remarks: DL-MNT
|
||||
members: AS4242421876
|
||||
remarks: NICHOLASCW-MNT
|
||||
members: AS4242421288
|
||||
remarks: SERVERMADE-MNT
|
||||
members: AS4242423770
|
||||
remarks: NICHOLASCW-MNT
|
||||
members: AS4242421288
|
||||
remarks: XINZHAO-MNT
|
||||
members: AS4242421306
|
||||
remarks: NEO-MNT
|
||||
members: AS4242421123
|
||||
remarks: 0X6-MNT
|
||||
members: AS4242420588
|
||||
admin-c: NAPSTERBATER-DN42
|
||||
tech-c: NAPSTERBATER-DN42
|
||||
mnt-by: NAPSTERBATER-MNT
|
||||
source: DN42
|
|
@ -1,21 +0,0 @@
|
|||
as-set: AS4242421191:AS-TRANSIT
|
||||
remarks: DRATHIR-MNT
|
||||
remarks: GRMML-MNT
|
||||
members: AS4242420123
|
||||
remarks: FELICIA-MNT
|
||||
members: AS64717
|
||||
remarks: GIGGA-MNT
|
||||
remarks: JOSENG-MNT
|
||||
members: AS4242420789
|
||||
remarks: WEITI-MNT
|
||||
members: AS4242423905
|
||||
remarks: DTNET-MNT
|
||||
remarks: PF-MNT
|
||||
remarks: NOP-MNT
|
||||
members: AS4242421955
|
||||
remarks: ADNIDOR-MNT
|
||||
members: AS4242423677
|
||||
admin-c: YAMAKAJA-DN42
|
||||
tech-c: YAMAKAJA-DN42
|
||||
mnt-by: YAMAKAJA-MNT
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
as-set: AS4242421231:AS-DOWNSTREAM
|
||||
admin-c: INRIN-DN42
|
||||
tech-c: INRIN-DN42
|
||||
mnt-by: CAESIA-MNT
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
as-set: AS4242421231:AS-PEER
|
||||
admin-c: INRIN-DN42
|
||||
tech-c: INRIN-DN42
|
||||
mnt-by: CAESIA-MNT
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
as-set: AS4242421231:AS-TRANSIT
|
||||
admin-c: INRIN-DN42
|
||||
tech-c: INRIN-DN42
|
||||
mnt-by: CAESIA-MNT
|
||||
source: DN42
|
|
@ -1,63 +0,0 @@
|
|||
as-set: AS4242421488:AS-TRANSIT
|
||||
remarks: ANDROW
|
||||
members: AS4242422575
|
||||
remarks: BAIYU
|
||||
members: AS4242421901
|
||||
remarks: CCCDA
|
||||
members: AS4242420101
|
||||
remarks: CHIMON
|
||||
members: AS4242423868
|
||||
remarks: FIXMIX
|
||||
members: AS4242421876
|
||||
remarks: HERTZ
|
||||
members: AS4242421353
|
||||
remarks: JERRY
|
||||
members: AS4242421876
|
||||
remarks: JLU5
|
||||
members: AS4242421080
|
||||
remarks: JK
|
||||
members: AS4242422717
|
||||
remarks: KIOUBIT
|
||||
members: AS4242423914
|
||||
remarks: KSKB
|
||||
members: AS4242421817
|
||||
remarks: KSKB-NEO
|
||||
members: AS4201271111
|
||||
remarks: LANTIAN
|
||||
members: AS4242422547
|
||||
remarks: LSS233
|
||||
members: AS4242421826
|
||||
remarks: MOECAST
|
||||
members: AS4242420604
|
||||
remarks: MOERAIL
|
||||
members: AS4242420977
|
||||
remarks: MUNSTERNET
|
||||
members: AS4242422237
|
||||
remarks: NARNIA
|
||||
members: AS4242422037
|
||||
remarks: NEO
|
||||
members: AS4242421123
|
||||
remarks: NIA
|
||||
members: AS4242421331
|
||||
remarks: NICHOLASCW
|
||||
members: AS4242421331
|
||||
remarks: SUNNET
|
||||
members: AS4242423088
|
||||
remarks: CARAMELFOX
|
||||
members: AS211169
|
||||
remarks: TBSPACE
|
||||
members: AS4242423088
|
||||
remarks: TCHEKDA
|
||||
members: AS4242421722
|
||||
remarks: TECH9
|
||||
members: AS4242421588
|
||||
remarks: YELLOWLM
|
||||
members: AS4242421588
|
||||
remarks: YFSAMA
|
||||
members: AS4242422520
|
||||
remarks: YUETAU
|
||||
members: AS4242421588
|
||||
remarks: YURA
|
||||
members: AS4242421588
|
||||
mnt-by: KOALA-MNT
|
||||
source: DN42
|
|
@ -1,40 +0,0 @@
|
|||
as-set: AS4242421722:AS-TRANSIT
|
||||
admin-c: TCHEKDA-DN42
|
||||
tech-c: TCHEKDA-DN42
|
||||
mnt-by: TCHEKDA-MNT
|
||||
source: DN42
|
||||
remarks: GERG-MNT
|
||||
remarks: PELETHIEC-MNT
|
||||
members: AS4242421541
|
||||
remarks: AGS-MNT
|
||||
remarks: ANDROW-MNT
|
||||
members: AS4242422575
|
||||
remarks: BAUEN1-MNT
|
||||
members: AS4242420151
|
||||
remarks: BURBLE-MNT
|
||||
members: AS4242422601
|
||||
remarks: TECH9-MNT
|
||||
members: AS4242421588
|
||||
remarks: CONSOMA-MNT
|
||||
members: AS4242420657
|
||||
remarks: CPERRIN-MNT
|
||||
members: AS4242423735
|
||||
remarks: JRB0001-MNT
|
||||
members: AS4242420119
|
||||
remarks: KIOUBIT-MNT
|
||||
members: AS4242423914
|
||||
remarks: TECHNOPOINT-MNT
|
||||
remarks: NOP-MNT
|
||||
members: AS4242421955
|
||||
remarks: MUNSTERNET-MNT
|
||||
members: AS4242422237
|
||||
remarks: NICOLAS-MNT
|
||||
remarks: NIYAWE-MNT
|
||||
members: AS4242421312
|
||||
remarks: P3BK4C-MNT
|
||||
members: AS4242422092
|
||||
remarks: SUNNET-MNT
|
||||
members: AS4242423088
|
||||
remarks: TOPSARUN-MNT
|
||||
remarks: MOE-MNT
|
||||
members: AS4242422464
|
|
@ -1,17 +0,0 @@
|
|||
as-set: AS4242421876:AS-DOWNSTREAM
|
||||
remarks: ══════════════════════════════
|
||||
members: AS140913
|
||||
remarks: Hentai Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420047
|
||||
remarks: DELTAMAN
|
||||
remarks: ══════════════════════════════
|
||||
remarks: iLemonrain DN42 Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420304
|
||||
remarks: 04DCO
|
||||
remarks: ══════════════════════════════
|
||||
admin-c: DL-DN42
|
||||
tech-c: DL-DN42
|
||||
mnt-by: DL-MNT
|
||||
source: DN42
|
|
@ -1,262 +0,0 @@
|
|||
as-set: AS4242421876:AS-TRANSIT
|
||||
remarks: ══════════════════════════════
|
||||
members: AS62396
|
||||
remarks: Marcels AS
|
||||
remarks: ══════════════════════════════
|
||||
members: AS64654
|
||||
remarks: Gateway to ChaosVPN
|
||||
remarks: ══════════════════════════════
|
||||
members: AS64738
|
||||
remarks: welterde
|
||||
remarks: ══════════════════════════════
|
||||
members: AS65043
|
||||
remarks: ICVPN-DREILAENDERECK
|
||||
remarks: ══════════════════════════════
|
||||
members: AS76190
|
||||
remarks: TBSPACE
|
||||
remarks: ══════════════════════════════
|
||||
members: AS141776
|
||||
remarks: Baoshuo DN42 Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420119
|
||||
remarks: JRB0001
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420140
|
||||
remarks: Yangfl Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420151
|
||||
remarks: bauen1 Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420180
|
||||
remarks: Gatuno Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420197
|
||||
remarks: n0emis
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420212
|
||||
remarks: BLING
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420246
|
||||
remarks: XESXEN
|
||||
remarks: ══════════════════════════════
|
||||
remarks: KEVER Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420428
|
||||
remarks: hax404's as
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420604
|
||||
remarks: Moecast Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420737
|
||||
remarks: TrueWinter Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420780
|
||||
remarks: UFFSALOT
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420801
|
||||
remarks: Zeph's network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420817
|
||||
remarks: Ciel's Naive AS
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420827
|
||||
remarks: LORKEP
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420904
|
||||
remarks: Y525
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420925
|
||||
remarks: YuetAu Core Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420927
|
||||
remarks: LIKI4
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242420977
|
||||
remarks: Moerail Network
|
||||
remarks: ══════════════════════════════
|
||||
remarks: YUN
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421032
|
||||
remarks: RADIONOISE
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421037
|
||||
remarks: LIBREHOUSE
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421050
|
||||
remarks: NAPSTERBATERs Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421055
|
||||
remarks: TMWAWPL network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421080
|
||||
remarks: JLU5
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421099
|
||||
remarks: Owens Research Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421181
|
||||
remarks: Main ASN from ne-vlezay80
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421199
|
||||
remarks: JOT23 GLOBAL
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421220
|
||||
remarks: litschi's AS
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421228
|
||||
remarks: Yellowlm Networks (Experimental-dn42)
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421273
|
||||
remarks: spencercw
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421288
|
||||
remarks: NICHOLASCW Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421306
|
||||
remarks: XINZHAO
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421331
|
||||
remarks: Niantic Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421332
|
||||
remarks: Niantic Network CN
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421488
|
||||
remarks: KOALA
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421516
|
||||
remarks: w1kl4s Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421530
|
||||
remarks: Zoddo
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421541
|
||||
remarks: pelethiec's lab network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421588
|
||||
remarks: TECH9 Core Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421592
|
||||
remarks: CAMELUSFERUS
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421722
|
||||
remarks: Tchekda
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421817
|
||||
remarks: KSKB
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421826
|
||||
remarks: Lss233's Primary Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421926
|
||||
remarks: Naive Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242421955
|
||||
remarks: NOP
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422021
|
||||
remarks: tsukiNet
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422037
|
||||
remarks: Narnia
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422049
|
||||
remarks: PPPWAW
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422092
|
||||
remarks: P3BK4C DN42 Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422189
|
||||
remarks: iEdon Networks
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422225
|
||||
remarks: MARAUN
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422237
|
||||
remarks: MUNSTERNET
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422239
|
||||
remarks: ESONHUGH
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422244
|
||||
remarks: icez network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422330
|
||||
remarks: HoshinoTelecom
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422334
|
||||
remarks: NICONEIKOWORKS
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422375
|
||||
remarks: Kutou Akira's Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422464
|
||||
remarks: Yura Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422520
|
||||
remarks: YFsama
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422526
|
||||
remarks: ANILLC
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422547
|
||||
remarks: Lan Tian's Main Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422575
|
||||
remarks: Androw
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422601
|
||||
remarks: burble.dn42
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422633
|
||||
remarks: EASTBOUND
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422688
|
||||
remarks: MiaoTony's MeowNet
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422717
|
||||
remarks: HUJK
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422843
|
||||
remarks: MCBROWN
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242422980
|
||||
remarks: YUUTAW
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242423012
|
||||
remarks: nex private AS
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242423073
|
||||
remarks: PATERNOT
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242423088
|
||||
remarks: SUNNET
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242423240
|
||||
remarks: NUREX
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242423308
|
||||
remarks: TestNet DN42 Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242423315
|
||||
remarks: Unknown Technology Solutions
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242423618
|
||||
remarks: Jerry Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242423735
|
||||
remarks: CPERRIN Network
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242423847
|
||||
remarks: THEQ
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242423856
|
||||
remarks: SCOOTERH928
|
||||
remarks: ══════════════════════════════
|
||||
members: AS4242423914
|
||||
remarks: Kioubit Network
|
||||
remarks: ══════════════════════════════
|
||||
admin-c: DL-DN42
|
||||
tech-c: DL-DN42
|
||||
mnt-by: DL-MNT
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
as-set: AS4242421926:AS-DOWNSTREAM
|
||||
admin-c: ZHAOFENG-DN42
|
||||
tech-c: ZHAOFENG-DN42
|
||||
mnt-by: ZHAOFENG-MNT
|
||||
source: DN42
|
|
@ -1,7 +0,0 @@
|
|||
as-set: AS4242421926:AS-TRANSIT
|
||||
admin-c: ZHAOFENG-DN42
|
||||
tech-c: ZHAOFENG-DN42
|
||||
mnt-by: ZHAOFENG-MNT
|
||||
remarks: BURBLE-MNT
|
||||
members: AS4242422601
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
as-set: AS4242421926:AS-UPSTREAM
|
||||
admin-c: ZHAOFENG-DN42
|
||||
tech-c: ZHAOFENG-DN42
|
||||
mnt-by: ZHAOFENG-MNT
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
as-set: AS4242422237:AS-DOWNSTREAM
|
||||
admin-c: MUNSTERNET-DN42
|
||||
tech-c: MUNSTERNET-DN42
|
||||
mnt-by: MUNSTERNET-MNT
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
as-set: AS4242422237:AS-PEER
|
||||
admin-c: MUNSTERNET-DN42
|
||||
tech-c: MUNSTERNET-DN42
|
||||
mnt-by: MUNSTERNET-MNT
|
||||
source: DN42
|
|
@ -1,69 +0,0 @@
|
|||
as-set: AS4242422237:AS-TRANSIT
|
||||
admin-c: MUNSTERNET-DN42
|
||||
tech-c: MUNSTERNET-DN42
|
||||
mnt-by: MUNSTERNET-MNT
|
||||
remarks: JRB0001
|
||||
members: AS4242420119
|
||||
remarks: BAUEN1-AS bauen1 Network
|
||||
members: AS4242420151
|
||||
remarks: Clement VILLISEK AS for Clement VILLISEK personal use.
|
||||
members: AS4242420308
|
||||
remarks: FNK-AS FNK's DN42 Network,https://boke.wsfnk.com
|
||||
members: AS4242420524
|
||||
remarks: MOECAST-AS Moecast Network
|
||||
members: AS4242420604
|
||||
remarks: AS for HammyNet
|
||||
remarks: UFFSALOT-AS
|
||||
members: AS4242420780
|
||||
remarks: AS for NAB Network
|
||||
members: AS4242420781
|
||||
remarks: RHM-AS
|
||||
members: AS4242420807
|
||||
remarks: NAPSTERBATER-AS NAPSTERBATERs Network
|
||||
members: AS4242421050
|
||||
remarks: JLU5-AS
|
||||
members: AS4242421080
|
||||
remarks: Owens Research Network
|
||||
members: AS4242421099
|
||||
remarks: AS for KILOBYTE Network
|
||||
members: AS4242421243
|
||||
remarks: Niantic Network
|
||||
members: AS4242421331
|
||||
remarks: Netkolik Internet Hizmetleri
|
||||
remarks: TECH9 CORE NETWORK
|
||||
members: AS4242421588
|
||||
remarks: Tchekda Tchekda http://tchekda.dn42
|
||||
members: AS4242421722
|
||||
remarks: FABRATERIA-AS
|
||||
remarks: NOP nop.hu
|
||||
members: AS4242421955
|
||||
remarks: NARNIA-AS Narnia AS
|
||||
members: AS4242422037
|
||||
remarks: P3BK4C DN42 Network
|
||||
members: AS4242422092
|
||||
remarks: IEDON-NET-AS iEdon Networks
|
||||
members: AS4242422189
|
||||
remarks: WXMN-AS waxman.dn42 - http://dn42.wxmn.net/
|
||||
remarks: AS for ZOTAN Network
|
||||
remarks: Yura Yura Network
|
||||
members: AS4242422464
|
||||
remarks: ANDROW-AS Androw - https://www.androw.eu/
|
||||
members: AS4242422575
|
||||
remarks: BURBLE-AS burble.dn42 https://dn42.burble.com/
|
||||
members: AS4242422601
|
||||
remarks: LIBELLULES NETWORK
|
||||
members: AS4242422752
|
||||
remarks: AS for Xnoe
|
||||
members: AS4242422833
|
||||
remarks: DOXZ-AS
|
||||
members: AS4242422904
|
||||
remarks: SIS-DN42 SIS DN42 AS
|
||||
remarks: TAN-NET
|
||||
remarks: SUNNET Email: admin@6700.cc Telegram: tg126955 DN42 IRC: sunnet
|
||||
members: AS4242423088
|
||||
remarks: SHEBANG-AS Shebang
|
||||
remarks: Kioubit Network
|
||||
members: AS4242423914
|
||||
remarks: TBSPACE TBSPACE.DE
|
||||
members: AS76190
|
||||
source: DN42
|
|
@ -1,5 +0,0 @@
|
|||
as-set: AS4242422237:AS-UPSTREAM
|
||||
admin-c: MUNSTERNET-DN42
|
||||
tech-c: MUNSTERNET-DN42
|
||||
mnt-by: MUNSTERNET-MNT
|
||||
source: DN42
|
|
@ -1,39 +0,0 @@
|
|||
as-set: AS4242422904:AS-TRANSIT
|
||||
admin-c: DOXZ-DN42
|
||||
tech-c: DOXZ-DN42
|
||||
mnt-by: DOXZ-MNT
|
||||
remarks: BURBLE-MNT
|
||||
members: AS4242422601
|
||||
remarks: SUNNET-MNT
|
||||
members: AS4242423088
|
||||
remarks: KIOUBIT-MNT
|
||||
members: AS4242421722
|
||||
remarks: TCHEKDA-MNT
|
||||
remarks: ZOTAN-MNT
|
||||
remarks: R8-MNT
|
||||
remarks: WXMN-MNT
|
||||
members: AS4242420101
|
||||
remarks: HEXA-MNT
|
||||
members: AS4242422428
|
||||
remarks: NULLL-MNT
|
||||
members: AS4242422237
|
||||
remarks: MUNSTERNET-MNT
|
||||
members: AS4242423012
|
||||
remarks: NEX-MNT
|
||||
members: AS4242423078
|
||||
remarks: HEXANET-MNT
|
||||
members: AS4242421025
|
||||
remarks: ICECAT-MNT
|
||||
members: AS4242421588
|
||||
remarks: TECH9-MNT
|
||||
members: AS4242423618
|
||||
remarks: JERRY-MNT
|
||||
members: AS4242421080
|
||||
remarks: JLU5-MNT
|
||||
members: AS4242422502
|
||||
remarks: TRIS-MNT
|
||||
members: AS4242421331
|
||||
remarks: NIA-MNT
|
||||
members: AS4201270000
|
||||
remarks: DN42-MNT
|
||||
source: DN42
|
|
@ -1,59 +0,0 @@
|
|||
as-set: AS4242423078:AS-TRANSIT
|
||||
remarks: YI-NETWORK
|
||||
members: AS209557
|
||||
remarks: NeoNetwork Origin
|
||||
members: AS4201270000
|
||||
remarks: Staph
|
||||
members: AS4201270007
|
||||
remarks: BAUEN1-AS
|
||||
members: AS4242420151
|
||||
remarks: N0EMIS-AS
|
||||
members: AS4242420197
|
||||
remarks: XESXEN-AS
|
||||
members: AS4242420246
|
||||
remarks: UFFSALOT-AS
|
||||
members: AS4242420780
|
||||
remarks: AS for NAB Network
|
||||
members: AS4242420781
|
||||
remarks: ALANYHQ-NETWORKS-AS
|
||||
members: AS4242420916
|
||||
remarks: AS for TMWAWPL network
|
||||
members: AS4242421055
|
||||
remarks: JLU5-AS
|
||||
members: AS4242421080
|
||||
remarks: TBSO-AS
|
||||
remarks: BitBakers Network
|
||||
members: AS4242421224
|
||||
remarks: CAESIA
|
||||
members: AS4242421231
|
||||
remarks: AS for BRADLEYCLAUS Network
|
||||
members: AS4242421324
|
||||
remarks: Niantic Network
|
||||
members: AS4242421331
|
||||
remarks: AS for RAITO network
|
||||
members: AS4242421457
|
||||
remarks: KOALA-AS
|
||||
members: AS4242421488
|
||||
remarks: w1kl4s network
|
||||
members: AS4242421516
|
||||
remarks: TECH9 CORE NETWORK
|
||||
members: AS4242421588
|
||||
remarks: MARAUN-AS
|
||||
members: AS4242422225
|
||||
remarks: AS for ZOTAN Network
|
||||
remarks: Yura
|
||||
members: AS4242422464
|
||||
remarks: Global Route Collector
|
||||
members: AS4242422602
|
||||
remarks: DOXZ-AS
|
||||
members: AS4242422904
|
||||
remarks: HEXANET AS
|
||||
members: AS4242423078
|
||||
remarks: CARAMELFOX AS
|
||||
members: AS211169
|
||||
remarks: Kioubit Network
|
||||
members: AS4242423914
|
||||
remarks: VGER-AS
|
||||
members: AS64787
|
||||
mnt-by: HEXANET-MNT
|
||||
source: DN42
|
|
@ -1,53 +0,0 @@
|
|||
as-set: AS4242423770:AS-TRANSIT
|
||||
admin-c: CAFECAFE-DN42
|
||||
tech-c: CAFECAFE-DN42
|
||||
mnt-by: SERVERMADE-MNT
|
||||
remarks: YUUTAW-MNT
|
||||
members: AS4242422980
|
||||
remarks: JERRY-MNT
|
||||
members: AS4242423618
|
||||
remarks: N0EMIS-MNT
|
||||
members: AS4242420197
|
||||
remarks: CPERRIN-MNT
|
||||
members: AS4242423735
|
||||
remarks: ANDROW-MNT
|
||||
members: AS4242422575
|
||||
remarks: P3BK4C-MNT
|
||||
members: AS4242422092
|
||||
remarks: JLU5-MNT
|
||||
members: AS4242421080
|
||||
remarks: AASG-MNT
|
||||
members: AS4242420827
|
||||
remarks: ZODDO-MNT
|
||||
members: AS4242421530
|
||||
remarks: DL-MNT
|
||||
members: AS4242421876
|
||||
remarks: TCHEKDA-MNT
|
||||
members: AS4242421722
|
||||
remarks: BURBLE-MNT
|
||||
members: AS4242422601
|
||||
remarks: EASTBOUND-MNT
|
||||
members: AS4242422633
|
||||
remarks: NUREX-MNT
|
||||
members: AS4242423240
|
||||
remarks: KIOUBIT-MNT
|
||||
members: AS4242423914
|
||||
remarks: TECH9-MNT
|
||||
members: AS4242421588
|
||||
remarks: MUNSTERNET-MNT
|
||||
members: AS4242422237
|
||||
remarks: THEQ-MNT
|
||||
members: AS4242423847
|
||||
remarks: TBSPACE-MNT
|
||||
members: AS76190
|
||||
remarks: CAMELUSFERUS-MNT
|
||||
members: AS4242421592
|
||||
remarks: UFFSALOT-MNT
|
||||
members: AS4242420780
|
||||
remarks: OWENSRESEARCH-MNT
|
||||
members: AS4242421099
|
||||
remarks: SUNNET-MNT
|
||||
members: AS4242423088
|
||||
remarks: EASTBOUND-MNT
|
||||
members: AS4242423240
|
||||
source: DN42
|
|
@ -1,4 +0,0 @@
|
|||
aut-num: AS0
|
||||
as-name: RESERVED
|
||||
mnt-by: DN42-MNT
|
||||
source: DN42
|
|
@ -1,7 +0,0 @@
|
|||
aut-num: AS131668
|
||||
as-name: TWDS-AS-TW
|
||||
descr: Taiwan Digital Streaming Co.
|
||||
admin-c: SEADOG007-DN42
|
||||
tech-c: SEADOG007-DN42
|
||||
mnt-by: SEADOG007-MNT
|
||||
source: APNIC
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue