http://www.cs.bell-labs.com/who/ches/map/gallery/tld/nz.gif I think I'm there, just below uummm.... you know, that other node. -- Juha The malformed orange Fails to satisfy the eye: Segmentation fault. --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
Juha Saarinen wrote:
http://www.cs.bell-labs.com/who/ches/map/gallery/tld/nz.gif
I think I'm there, just below uummm.... you know, that other node.
Might have been more interesting if it was coloured by AS. They have done that on some other plots I seem to recall, like the global one. Stephen. -- ----------------------------------------------------------------------- Stephen Donnelly (BCMS) email: sfd(a)cs.waikato.ac.nz WAND Group Room GG.15 phone +64 7 838 4086 Computer Science Department, University of Waikato, New Zealand ----------------------------------------------------------------------- --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
:: Might have been more interesting if it was coloured by AS. They have :: done that on some other plots I seem to recall, like the global one. Yeah, bit disappointing really. Anyone in NZ done anything similar? --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
Yeah, bit disappointing really. Anyone in NZ done anything similar? I have some AS based maps I made somewhere, centered around AS4768 and also AS4648 at the time. They didn't look very good and each node was a single AS, so it wasn't nearly as pretty at the ones a aforementioned (and the code to show multiple patches between adjacent ASs never produced satisfactory results either). I quickly decided that 2D wasn't really sufficient for displaying this stuff and thought 3D would be better, there was code to build models but never anything to display them so I have no idea if that works either (need an OpenGL book I guess). --cw --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
:: I have some AS based maps I made somewhere, centered around AS4768 :: and also AS4648 at the time. They didn't look very good and each node :: was a single AS, so it wasn't nearly as pretty at the ones a :: aforementioned (and the code to show multiple patches between :: adjacent ASs never produced satisfactory results either). Is there a list of which AS numbers are used by NZ ISPs? :: I quickly decided that 2D wasn't really sufficient for displaying :: this stuff and thought 3D would be better, there was code to build :: models but never anything to display them so I have no idea if that :: works either (need an OpenGL book I guess). I guess a wireframe 3D model might work, if you could move it around and stuff. -- Juha --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
On Wed, 9 May 2001, Juha Saarinen wrote:
:: I have some AS based maps I made somewhere, centered around AS4768 :: and also AS4648 at the time. They didn't look very good and each node :: was a single AS, so it wasn't nearly as pretty at the ones a :: aforementioned (and the code to show multiple patches between :: adjacent ASs never produced satisfactory results either).
Is there a list of which AS numbers are used by NZ ISPs?
Downloading the list of all ASN assigned by APNIC from the APNIC ftp site, and grepping for NZ has worked for me in the past. Cheers Si --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
On Wed, May 09, 2001 at 08:28:30AM +1200, Juha Saarinen wrote:
:: I have some AS based maps I made somewhere, centered around AS4768 :: and also AS4648 at the time. They didn't look very good and each node :: was a single AS, so it wasn't nearly as pretty at the ones a :: aforementioned (and the code to show multiple patches between :: adjacent ASs never produced satisfactory results either).
Is there a list of which AS numbers are used by NZ ISPs?
ftp -o - ftp://ftp.apnic.net/pub/apnic/dbase/data/apnic.an.gz | \ gzip -cd | awk '/^\*an: / { an = $2; } /^\*aa: / { aa = $2; } \ /NZ/ { print an, aa; }' | \ sort | uniq For pre-APNIC allocations (like AS681) you'd need to look in ARIN's database. ftp://ftp.arin.net/netinfo/asn.txt contains a list of ASNs but no contact info, so it's non-trivial to strip out the kiwi ones. Mileage with more primitive ftp clients may vary. --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
:: ftp -o - ftp://ftp.apnic.net/pub/apnic/dbase/data/apnic.an.gz | \ :: gzip -cd | awk '/^\*an: / { an = $2; } /^\*aa: / { aa = $2; } \ :: /NZ/ { print an, aa; }' | \ :: sort | uniq ftp -o - ftp://ftp.apnic.net/pub/apnic/dbase/data/apnic.a
gzip -cd | awk '/^\*an: / { an = $2; } /^\*aa: / { aa = $2; } \ /NZ/ { print an, aa; }' | \ sort | uniq
ftp: o: unknown option Usage: ftp [-v] [-d] [-i] [-n] [-g] [-k realm] [-f] [-x] [-u] [-t] [host] gzip: stdin: unexpected end of file Typical... I don't have the -o option in FreeBSD either. What's it supposed to do? --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
On Wed, May 09, 2001 at 09:51:09AM +1200, Juha Saarinen wrote:
:: ftp -o - ftp://ftp.apnic.net/pub/apnic/dbase/data/apnic.an.gz | \ :: gzip -cd | awk '/^\*an: / { an = $2; } /^\*aa: / { aa = $2; } \ :: /NZ/ { print an, aa; }' | \ :: sort | uniq
ftp -o - ftp://ftp.apnic.net/pub/apnic/dbase/data/apnic.a
gzip -cd | awk '/^\*an: / { an = $2; } /^\*aa: / { aa = $2; } \ /NZ/ { print an, aa; }' | \ sort | uniq
ftp: o: unknown option Usage: ftp [-v] [-d] [-i] [-n] [-g] [-k realm] [-f] [-x] [-u] [-t] [host]
gzip: stdin: unexpected end of file
Typical... I don't have the -o option in FreeBSD either. What's it supposed to do?
output to the named file (or stdout, with "-"). --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
:: output to the named file (or stdout, with "-"). Is that from the WinCE ftp client you're using? ncftpget has a -d option, but that's as close as I can get to outputting to stdout... Put another | in there? FILE NAMING CONVENTIONS Files specified as arguments to ftp commands are processed according to the following rules. 1. If the file name `-' is specified, stdin (for reading) or stdout (for writing) is used. 2. If the first character of the file name is `|', the remainder of the argument is interpreted as a shell command. Ftp then forks a shell, using popen(3) with the argument supplied, and reads from (writes to) stdout (stdin). If the shell command includes spaces, the argument must be quoted; e.g. ``" ls -lt"''. A par- ticularly useful example of this mechanism is: ``dir more''. --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
On Tue, 8 May 2001, Joe Abley wrote:
On Wed, May 09, 2001 at 09:51:09AM +1200, Juha Saarinen wrote:
:: ftp -o - ftp://ftp.apnic.net/pub/apnic/dbase/data/apnic.an.gz | \ :: gzip -cd | awk '/^\*an: / { an = $2; } /^\*aa: / { aa = $2; } \ :: /NZ/ { print an, aa; }' | \ :: sort | uniq
ftp -o - ftp://ftp.apnic.net/pub/apnic/dbase/data/apnic.a
gzip -cd | awk '/^\*an: / { an = $2; } /^\*aa: / { aa = $2; } \ /NZ/ { print an, aa; }' | \ sort | uniq
ftp: o: unknown option Usage: ftp [-v] [-d] [-i] [-n] [-g] [-k realm] [-f] [-x] [-u] [-t] [host]
gzip: stdin: unexpected end of file
Typical... I don't have the -o option in FreeBSD either. What's it supposed to do?
output to the named file (or stdout, with "-").
wget has a similar option, the following works.. wget -O - ftp://ftp.apnic. Anyway the output I get is: AS10022 DSLAK-AS-AP AS10110 AS-MITNZ-AP AS17410 AS-NZDG-AP AS17412 WALKER-NZ-AP AS17427 MORENET-AP AS17472 BNZ-NZ AS17646 WAVE-NZ-AS-AP AS17649 DMZGLOBAL-AP AS17656 TRANZPEER-NZ-AP AS17664 CYBER-AP AS17705 INSPIRENET-AS-AP AS17746 ORCONINTERNET-NZ-AP AS4648 NZIX-2 AS4665 AS-YONSEI-AP AS4763 TELSTRANZ-AS AS4768 CLIX-NZ AS4769 NZNCC-BLOCK AS4770 ASIAONLINENZ-AS-AP AS4771 NZTELECOM AS4805 GLOBAL-IP-AUS-AP AS7657 TIG-US-PAS-AP AS7714 NETLINK-NZ-AS-AP AS9220 INFONET-AU-AP AS9224 SECURENET-AP AS9233 AS-EVENTURES-AP AS9245 RADIONET-NZ-AP AS9248 APACHE-AP AS9303 KCCS-AS-AP AS9325 XTRA-AS AS9338 NATLIB-NZ-AS-AP AS9343 ACTRIX-NZ-AS-AP AS9344 VOYAGER-NZ-AS AS9345 PARADISE-AS AS9389 HEALEY-AS-AP AS9431 AKUNI-NZ AS9432 CANTERBURY-AS AS9433 MASSEY-AS AS9436 GLOBENET-AS AS9439 WIX-CITYLINK-NZ-AP AS9445 AS-SATURN-NZ AS9469 AS-TERABYTE-NZ-AP AS9470 AS-COMPASS-NZ-AP AS9495 CLEARVIEW-AS AS9503 COMNET-AS AS9511 WILSONHORTON-AS-AP AS9559 PLAINCOM-NZ AS9560 APE-NZ AS9564 ANZ-BANK-AP AS9727 AS-MERCURY-NZ AS9731 SAFETYNET-AS-AP AS9736 AS-DOMAINZ-NZ AS9750 FCLNZ-AP AS9790 ATTICA-NZ-AP AS9872 ITNET-NZ-AS-AP AS9887 THEWEB-AP AS9889 AS-WEBINTERNET-NZ-AP AS9896 PARADISE-AP AS9897 JSR-AP AS9898 ESNTF-AP AS9901 TELSTRA-NZTRANSIT-AS AS9941 AS-AARIA-AP -- Simon Lyall. | Newsmaster | Work: simon.lyall(a)ihug.co.nz Senior Network/System Admin | Postmaster | Home: simon(a)darkmere.gen.nz ihug, Auckland, NZ | Asst Doorman | Web: http://www.darkmere.gen.nz --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
Yeah, bit disappointing really. Anyone in NZ done anything similar?
Waikato University has been hosting one of CAIDA's skitter monitors for a while. There are various plots and visualisations at: http://www.caida.org/cgi-bin/skitter_summary/main.pl (select 13 waikato.skitter.caida.org) They do do the tree plots, but not dynamically. I like the last viz, which is based on longitude. --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
On Tue, 8 May 2001, Juha Saarinen wrote:
http://www.cs.bell-labs.com/who/ches/map/gallery/tld/nz.gif
I think I'm there, just below uummm.... you know, that other node.
There are something wrong with those pictures. If you back ou to: http://www.cs.bell-labs.com/who/ches/map/gallery/ You will see the thumbnails appear correct but the fullsized pictures are all the same. -- Simon Lyall. | Newsmaster | Work: simon.lyall(a)ihug.co.nz Senior Network/System Admin | Postmaster | Home: simon(a)darkmere.gen.nz ihug, Auckland, NZ | Asst Doorman | Web: http://www.darkmere.gen.nz --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
:: There are something wrong with those pictures. If you back ou to: :: :: http://www.cs.bell-labs.com/who/ches/map/gallery/ :: :: You will see the thumbnails appear correct but the fullsized pictures are :: all the same. Are you sure you checked all of them? --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
participants (7)
-
Chris Wedgwood
-
Joe Abley
-
Juha Saarinen
-
Simon Blake
-
Simon Lyall
-
Stephen Donnelly
-
Tony McGregor