diff options
author | Rob Austein <sra@hactrn.net> | 2012-05-07 02:55:00 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2012-05-07 02:55:00 +0000 |
commit | 9f4a94e7389f77f3286aaae0c6e7bae3a15c282c (patch) | |
tree | 23db3d7c8c7c99c816486a2e00b7b20098ec67d0 /scripts/arin-to-csv.py | |
parent | 88e404f1e303fc9e4b4439f301f29fc66643c21e (diff) | |
parent | 636e3c590c96e0f0ab0c95a6982a5056e2cea9fd (diff) |
Merge to trunk. Testbed changes and a few bugfixes that came along
while tracking down testbed issues. See #33.
svn path=/trunk/; revision=4473
Diffstat (limited to 'scripts/arin-to-csv.py')
-rw-r--r-- | scripts/arin-to-csv.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/scripts/arin-to-csv.py b/scripts/arin-to-csv.py index 63368723..dcb508ff 100644 --- a/scripts/arin-to-csv.py +++ b/scripts/arin-to-csv.py @@ -56,18 +56,18 @@ def do_asn(node): find(node, tag_endAsNumber)))) erx_table = { - "AF" : "AFRINIC", - "AP" : "APNIC", - "AR" : "ARIN", - "AV" : "ARIN", - "FX" : "AFRINIC", - "LN" : "LACNIC", - "LX" : "LACNIC", - "PV" : "APNIC", - "PX" : "APNIC", - "RN" : "RIPE", - "RV" : "RIPE", - "RX" : "RIPE" } + "AF" : "afrinic", + "AP" : "apnic", + "AR" : "arin", + "AV" : "arin", + "FX" : "afrinic", + "LN" : "lacnic", + "LX" : "lacnic", + "PV" : "apnic", + "PX" : "apnic", + "RN" : "ripe", + "RV" : "ripe", + "RX" : "ripe" } def do_net(node): handle = find(node, tag_orgHandle) |