Monkey and Parrot

Pemandangan yang menarik.

Drama korea school 2013

drama bertemakan pertemanan dan anak muda yang berlatar di lingkup sekolah

Ubuntu

Sistem Operasi opensources yang semakin berkembang dan banyak digemari dilingkungan IT

Liga champion

Ajang turnament liga-liga di kawasan eropa yang sangat bergengsi .

Virtualbox

Suatu mesin virtual untuk beberapa operating sistem.

Sunday, February 3, 2013

Tugas Akhir SISTER 091051008

  1. Replication Database

Replikasi database bisa di artikan pengcopyan data atau mentransfer data dari database ke database lain yang tersimpan pada komputer yang berbeda dalam satu jaringan.
Untuk membuat replikasi ini minimal di butuhkan 2 komputer yang saling terkoneksi, satu komputer sebagai master server dan yang satunya lagi sebagai slave server. Master server sendiri berfungsi sebagai pusat dari pengolahan data, sedangkan slave master berfungsi pencatat sekaligus replikasi/pengcopyan data dari master server.

Di atas ini adalah gambaran setruktur replikasi database yang akan di implementasikan pada web nantinya. Sekarang kita buat replikasinya.
Pertama-tama siapkan semua kebutuhan yaitu 2 mesin berbasis Ubuntu yang telah diinstal MySQL. Nah mesin pertama (misal IP: 192.168.1.5) yang akan kita gunakan sebagai Master dan yang kedua (misal IP: 192.168.1.1) sebagai Slave, pastikan terkoneksi dalam jaringan dan tidak ada masalah dengan port yang digunakan MySQL (defaultnya 3306).

Konfigurasi Master Server
Adapun yang harus dilakukan adalah:
Membolehkan (enable) networking untuk MySQL, sehingga MySQL di mesin ini bisa diakses dari jaringan/berbagai IP Address. Caranya dengan memastikan pada my.cnf (biasanya di /etc/mysql/my.cnf) 2 baris, ‘skip-networking’ dan ‘bind-address=127.0.0.1″ tidak aktif dengan menambahkan karakter komentar (#) di awal barisnya, sehingga menjadi;
# skip-networking
# bind-address = 127.0.0.1
Selanjutnya setup lokasi file log-bin, id-server dan nama database (di tutorial ini kita akan menggunakan database tes).
server-id = 12345
log_bin = /var/log/mysql/mysql-bin.log
max_binlog_size = 100M = 10
binlog_do_db = tes
Agar konfigurasi baru bisa langsung berfungsi, silahkan restart MySQL dengan perintah:
#/etc/init.d/mysql restart
Konfigurasi MySQL Master Server
Setelah kita selesai dengan konfigurasi file my.cnf sekarang kita masuk ke MySQL dengan perintah:
  • #mysql -u root -p
Maka prompt-nya akan berubah dari $ (atau #) menjadi mysql> . Nah disini kita akan membuat user baru database MySQL yang akan diberi hak untuk melakukan replikasi;
  • mysql> GRANT REPLICATION SLAVE ON *.* TO 'tiptop' @ '%' IDENTIFIED BY 'tiptop';
  • mysql> FLUSH PRIVILEGES;
Keterangan = Username 'tiptop' dan Password 'tiptop' silahkan ganti sesuai keinginan. Setelah itu kita ambil informasi binary log dari database yang kita ingin replikasi,
  • mysql> CREATE DATABASE tes;
  • mysql> USE tes;
  • mysql> FLUSH TABLES WITH READ LOCK;
  • mysql> SHOW MASTER STATUS;
Maka akan muncul keluaran seperti ini:

Simpan informasi ini untuk digunakan pada konfigurasi di mesin Slave. Setelah itu jangan lupa unlock dulu semua table tadi, dan keluar dengan perintah;
  • mysql> UNLOCK TABLES;
  • mysql> quit

Konfigurasi Slave Server
Edit file my.cnf yang berada pada folder /etc/mysql/my.cnf dengan perintah:
  • #nano /etc/mysql/my.cnf
server-id = 12
master-host=192.168.1.5
master-user=tiptop
master-password=tiptop
master-connect-retry=60
replicate-do-db=tes

Keterangan: nilai server-id, dapat diganti dengan angka integer positif selain 12345 yang sudah dipakai oleh Master. Setelah selesai restart MySQLnya dengan perintah:
  • #/etc/init.d/mysql restart
Konfigurasi MySQL Slave Server
Setelah kita selesai dengan konfigurasi file my.cnf sekarang kita masuk ke MySQL di terminal dan jalankan, perintah berikut ini;
#mysql -u root -p
  • mysql>SLAVE STOP;
  • mysql>CHANGE MASTER TO MASTER_HOST=’192.168.1.5′, MASTER_USER=’tiptop’, MASTER_PASSWORD=’tiptop‘,
MASTER_LOG_FILE=’mysql-bin.000001‘,
MASTER_LOG_POS=187;
  • mysql>START SLAVE;
  • mysql>FLUSH PRIVILEGES;
  • mysql> SHOW SLAVE STATUS \G
  • mysql>exit;
Silahkan ditest, harusnya kalau tidak ada langkah yang salah, jika di Master server terjadi perubahan database, maka database Slave server akan ikut berubah.

2. Web Service
Web service merupakan layanan di dalam suatu lingkungan web yang terdiri dari method yang siap pakai. Web service bersifat independent (tidak tergantung pada platform), karena melakukan pertukaran data dengan XML. Teknologi web service memungkinkan kita dapat menghubungkan berbagai jenis software yang memiliki platform dan sistem operasi yang berbeda.
Jadi, kita tetap mendapatkan sebuah potongan informasi dari suatu website tanpa harus mengunjungi website tersebut, cukup dengan mengetahui fungsi/method web service yang disediakan oleh web itu. Kita dapat mengakses potongan informasi itu dengan meletakkan fungsi/method itu pada aplikasi kita.
Untuk membuat web service ini di butuhkan NuSOAP. NuSOAP adalah library yang digunakan untuk membangun web service berbasis SOAP yang ditulis dengan menggunakan bahasa PHP. Dan library ini di simpan di dalam client dan server.
Dalam membangun sebuah sistem aplikasi berbasis web service, dibutuhkan dua komponen utama yaitu, server sebagai provider entity dan client sebagai requester entity.
Di bawah ini adalah struktur gambaran replikasi database sekaligus penggunaan Web Service.



Di atas adalah gambar arsitektur Replikasi Database dan webservice, Di mana ip master server (server) adalah 192.168.1.5 dan ip slave master (server1) yang ke jaringan local adalah 192.168.1.1 sedangkan ip publiknya 202.91.10.214. Master server (server) ini hanya bisa di akses dari jaringan local saja sehingga di butuhkan webservice agar bisa di akses dari jaringan public. Fungsi slave server (server1) di sini mereplikasi database dari master server, didalam server1 (lab.akprind.ac.id) di tanamkan server.php yang isinya adalah fungsi fungsi untuk menampilkan, update, tambah dan delete, yang nantinya dapat di akses dari client (ayhez.16mb.com). 
Untuk fungsi menampilkan data (membaca data), database yang di akses adalah database slave server, sedangkan untuk fungsi tambah, edit dan delete database yang digunakan adalah database master server.
Jadi saat jaringan lokal mati maka proses tambah, edit dan delete tidak berfungsi karena master server berada pada jaringan lokal, tetapi untuk proses menampilkan data dapat berfungsi karena database yang di akses adalah slave server yang berada pada jaringan publik.

Untuk contoh webservicenya bisa di lihat di sini

Sunday, November 18, 2012

Hasil Traceroute Monkey.16mb.com,joi.lab.aprind.ac.id,ceritakera.blogspot.com


Dengan Traceroute kita dapat melakukan pelacakan jaringan dengan cara menemukan rute-rute mana saja yang dilewati paket untuk mencapai tujuan,rute yang ditampilkan disini adalah rute yang paling dekat antara host dengan tujuan sehingga setiap waktu dapat berubah sesuai jalur yang terdekat e server tujuan. cara pelacakan rute ini yaitu dengan mengirimkan paket dari sumber traceroute atau ip pertama ke router pertama setelah sampai dan mengetahui ip router pertama maka nilai ttl akan dikurangi 1 sehingga router pertama akan mengirim paket kembali ke sumber traceroute,setelah sampa ke sumber traceroute nilai ttl paket akan ditambah 1 dan dikirim ke router pertama lagi karena terdeteksi di router pertama bahwa paket expired maka akan diteruskan ke router kedua dan seterusnya maka akan terlacak rute terdekat menuju ke tujuan.
Dibawah ini adalah hasil traceroute ketiga web saya dengan informasi whoisnya

Ceritakera.blogspot.com

root@joi-EX460-EX461:/home/joi# traceroute ceritakera.blogspot.com
traceroute to ceritakera.blogspot.com (173.194.38.139), 30 hops max, 60 byte packets
1 10.20.30.77 (10.20.30.77) 83.486 ms 83.432 ms 111.893 ms
2 * * *
3 10.20.161.40 (10.20.161.40) 131.829 ms 151.293 ms 151.275 ms
4 202.70.56.49 (202.70.56.49) 159.251 ms 88.735 ms 184.629 ms
5 202.70.56.17 (202.70.56.17) 284.608 ms 384.568 ms 516.544 ms
6 * * *
7 * * *
8 ip-176-198.moratelindo.co.id (202.43.176.198) 450.237 ms 530.231 ms 682.160 ms
9 72.14.210.131 (72.14.210.131) 726.280 ms 866.136 ms 146.270 ms
10 66.249.95.124 (66.249.95.124) 166.215 ms 178.727 ms 178.703 ms
11 72.14.233.79 (72.14.233.79) 246.138 ms 246.115 ms 262.218 ms
12 sin04s01-in-f11.1e100.net (173.194.38.139) 270.046 ms 142.704 ms 142.584 ms



root@joi-EX460-EX461:/home/joi# whois 10.20.30.77
#
# Query terms are ambiguous. The query is assumed to be:
# "n 10.20.30.77"
#
# Use "?" to get help.
#
#
# The following results may also be obtained via:
# http://whois.arin.net/rest/nets;q=10.20.30.77?showDetails=true&showARIN=false&ext=netref2
#
NetRange: 10.0.0.0 - 10.255.255.255
CIDR: 10.0.0.0/8
OriginAS:
NetName: PRIVATE-ADDRESS-ABLK-RFC1918-IANA-RESERVED
NetHandle: NET-10-0-0-0-1
Parent:
NetType: IANA Special Use
Comment: This block is used as private address space.
Comment: Traffic from these addresses does not come from IANA.
Comment: IANA has simply reserved these numbers in its database
Comment: and does not use or operate them. We are not the source
Comment: of activity you may see on logs or in e-mail records.
Comment: Please refer to http://www.iana.org/abuse/
Comment:
Comment: Addresses from this block can be used by
Comment: anyone without any need to coordinate with
Comment: IANA or an Internet registry. Addresses from
Comment: this block are used in multiple, separately
Comment: operated networks.
Comment:
Comment: This block was assigned by the IETF in the
Comment: Best Current Practice document, RFC 1918
Comment: which can be found at:
Comment:
Comment: http://www.rfc-editor.org/rfc/rfc1918.txt
RegDate:
Updated: 2011-04-12
Ref: http://whois.arin.net/rest/net/NET-10-0-0-0-1
OrgName: Internet Assigned Numbers Authority
OrgId: IANA
Address: 12025 Waterfront Drive
Address: Suite 300
City: Los Angeles
StateProv: CA
PostalCode: 90292
Country: US
RegDate:
Updated: 2012-08-31
Ref: http://whois.arin.net/rest/org/IANA
OrgAbuseHandle: IANA-IP-ARIN
OrgAbuseName: Internet Corporation for Assigned Names and Number
OrgAbusePhone: +1-310-301-5820
OrgAbuseEmail: abuse@iana.org
OrgAbuseRef: http://whois.arin.net/rest/poc/IANA-IP-ARIN
OrgTechHandle: IANA-IP-ARIN
OrgTechName: Internet Corporation for Assigned Names and Number
OrgTechPhone: +1-310-301-5820
OrgTechEmail: abuse@iana.org
OrgTechRef: http://whois.arin.net/rest/poc/IANA-IP-ARIN
#
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: https://www.arin.net/whois_tou.html
#


root@joi-EX460-EX461:/home/joi# whois 10.20.161.40
#
# Query terms are ambiguous. The query is assumed to be:
# "n 10.20.161.40"
#
# Use "?" to get help.
#
# The following results may also be obtained via:
# http://whois.arin.net/rest/nets;q=10.20.161.40?showDetails=true&showARIN=false&ext=netref2
NetRange: 10.0.0.0 - 10.255.255.255
CIDR: 10.0.0.0/8
OriginAS:
NetName: PRIVATE-ADDRESS-ABLK-RFC1918-IANA-RESERVED
NetHandle: NET-10-0-0-0-1
Parent:
NetType: IANA Special Use
Comment: This block is used as private address space.
Comment: Traffic from these addresses does not come from IANA.
Comment: IANA has simply reserved these numbers in its database
Comment: and does not use or operate them. We are not the source
Comment: of activity you may see on logs or in e-mail records.
Comment: Please refer to http://www.iana.org/abuse/
Comment:
Comment: Addresses from this block can be used by
Comment: anyone without any need to coordinate with
Comment: IANA or an Internet registry. Addresses from
Comment: this block are used in multiple, separately
Comment: operated networks.
Comment:
Comment: This block was assigned by the IETF in the
Comment: Best Current Practice document, RFC 1918
Comment: which can be found at:
Comment:
Comment: http://www.rfc-editor.org/rfc/rfc1918.txt
RegDate:
Updated: 2011-04-12
Ref: http://whois.arin.net/rest/net/NET-10-0-0-0-1
OrgName: Internet Assigned Numbers Authority
OrgId: IANA
Address: 4676 Admiralty Way, Suite 330
City: Marina del Rey
StateProv: CA
PostalCode: 90292-6695
Country: US
RegDate:
Updated: 2004-02-24
Ref: http://whois.arin.net/rest/org/IANA
OrgAbuseHandle: IANA-IP-ARIN
OrgAbuseName: Internet Corporation for Assigned Names and Number
OrgAbusePhone: +1-310-301-5820
OrgAbuseEmail: abuse@iana.org
OrgAbuseRef: http://whois.arin.net/rest/poc/IANA-IP-ARIN
OrgTechHandle: IANA-IP-ARIN
OrgTechName: Internet Corporation for Assigned Names and Number
OrgTechPhone: +1-310-301-5820
OrgTechEmail: abuse@iana.org
OrgTechRef: http://whois.arin.net/rest/poc/IANA-IP-ARIN
#
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: https://www.arin.net/whois_tou.html
#

root@joi-EX460-EX461:/home/joi# whois 202.70.56.49
% [whois.apnic.net node-2]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 202.70.56.0 - 202.70.56.255
netname: SMART-TELECOM-ID
descr: PT SMART TELECOM
country: ID
admin-c: DT549-AP
tech-c: KU7-AP
tech-c: WES1-AP
status: ASSIGNED NON-PORTABLE
mnt-by: MAINT-ID-WIRELESSNET
mnt-irt: IRT-WIRELESSNET-ID
changed: kunto@smartfren.com 20110427
source: APNIC
person: Dwiyanda Tanuwidjaja
address: PT WIRELESS INDONESIA (PT SMART TELECOM)
address: Jl. H Agus Salim No.45, Menteng
address: Jakarta Pusat 10340
country: ID
phone: +62-21-31922255
fax-no: +62-21-31927880
e-mail: dwiyanda@smartfren.com
nic-hdl: DT549-AP
mnt-by: MAINT-ID-WIRELESSNET
changed: dwiyanda@smartfren.com 20110304
source: APNIC
person: Kunto Utoro
address: Jln H Agus Salim [SABANG] No.45, Jakarta PUSAT
address: WIRELESS INDONESIA, PT :: SMART TELECOM, PT
address: DKI Jakarta - Indonesia
country: ID
phone: +62-21-31922255
fax-no: +62-21-316 2343
e-mail: kunto@smartfren.com
nic-hdl: KU7-AP
mnt-by: MAINT-ID-WIRELESSNET
changed: kunto@smart-telecom.co.id 20110304
source: APNIC
person: Wahyono Edi Sulistyo
address: Jln H Agus Salim [SABANG] No.45, Jakarta PUSAT
address: WIRELESS INDONESIA, PT :: SMART TELECOM, PT
address: DKI Jakarta - Indonesia
country: ID
phone: +62-21-31922255
fax-no: +62-21-316 2343
e-mail: wahyono.sulistyo@smartfren.com
nic-hdl: WES1-AP
mnt-by: MAINT-ID-WIRELESSNET
changed: kunto@smartfren.com 20110315
source: APNIC



root@joi-EX460-EX461:/home/joi# whois 202.43.176.198
% [whois.apnic.net node-5]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 202.43.176.0 - 202.43.176.255
netname: Moratelindo_POP_Batam
descr: PT. Mora Telematika Indonesia
descr: Grha 9, 1st Floor
descr: Jl. Panataran No. 9
descr: Jakarta Pusat 10320
country: ID
admin-c: MH907-AP
tech-c: MN276-AP
status: ALLOCATED NON-PORTABLE
changed: hostmaster@moratelindo.co.id 20110413
mnt-by: MAINT-ID-CEPATNET
mnt-irt: IRT-CEPATNET-ID
source: APNIC
route: 202.43.176.0/24
descr: CEPATNET-ID: Route object for 202.43.176.0/24
origin: AS23947
remarks: Routing report: routing@moratelindo.co.id
mnt-by: MAINT-ID-CEPATNET
changed: hostmaster@moratelindo.co.id 20110218
source: APNIC
person: Moratelindo Hostmaster
address: PT. Mora Telematika Indonesia
address: Grha 9, 1st Floor
address: Jl. Panataran No. 9
address: Jakarta Pusat 10320
country: ID
phone: +62-21-3199-8600
fax-no: +62-21-314-2882
e-mail: hostmaster@moratelindo.co.id
nic-hdl: MH907-AP
abuse-mailbox: abuse@moratelindo.co.id
mnt-by: MAINT-ID-CEPATNET
changed: hostmaster@moratelindo.co.id 20110218
source: APNIC
person: Moratelindo NOC
address: PT. Mora Telematika Indonesia
address: Grha 9, 1st Floor
address: Jl. Panataran No. 9
address: Jakarta Pusat 10320
country: ID
phone: +62-21-3199-8600
fax-no: +62-21-314-2882
e-mail: noc@moratelindo.co.id
nic-hdl: MN276-AP
abuse-mailbox: abuse@moratelindo.co.id
mnt-by: MAINT-ID-CEPATNET
changed: hostmaster@moratelindo.co.id 20110303
source: APNIC


root@joi-EX460-EX461:/home/joi# whois 72.14.210.131
#
# Query terms are ambiguous. The query is assumed to be:
# "n 72.14.210.131"
#
# Use "?" to get help.
#
#
# The following results may also be obtained via:
# http://whois.arin.net/rest/nets;q=72.14.210.131?showDetails=true&showARIN=false&ext=netref2
#
NetRange: 72.14.192.0 - 72.14.255.255
CIDR: 72.14.192.0/18
OriginAS:
NetName: GOOGLE
NetHandle: NET-72-14-192-0-1
Parent: NET-72-0-0-0-0
NetType: Direct Allocation
RegDate: 2004-11-10
Updated: 2012-02-24
Ref: http://whois.arin.net/rest/net/NET-72-14-192-0-1
OrgName: Google Inc.
OrgId: GOGL
Address: 1600 Amphitheatre Parkway
City: Mountain View
StateProv: CA
PostalCode: 94043
Country: US
RegDate: 2000-03-30
Updated: 2011-09-24
Ref: http://whois.arin.net/rest/org/GOGL
OrgTechHandle: ZG39-ARIN
OrgTechName: Google Inc
OrgTechPhone: +1-650-253-0000
OrgTechEmail: arin-contact@google.com
OrgTechRef: http://whois.arin.net/rest/poc/ZG39-ARIN
OrgAbuseHandle: ZG39-ARIN
OrgAbuseName: Google Inc
OrgAbusePhone: +1-650-253-0000
OrgAbuseEmail: arin-contact@google.com
OrgAbuseRef: http://whois.arin.net/rest/poc/ZG39-ARIN
RTechHandle: ZG39-ARIN
RTechName: Google Inc
RTechPhone: +1-650-253-0000
RTechEmail: arin-contact@google.com
RTechRef: http://whois.arin.net/rest/poc/ZG39-ARIN
#
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: https://www.arin.net/whois_tou.html
#


root@joi-EX460-EX461:/home/joi# whois 66.249.95.124
#
# Query terms are ambiguous. The query is assumed to be:
# "n 66.249.95.124"
#
# Use "?" to get help.
#
#
# The following results may also be obtained via:
# http://whois.arin.net/rest/nets;q=66.249.95.124?showDetails=true&showARIN=false&ext=netref2
#
NetRange: 66.249.64.0 - 66.249.95.255
CIDR: 66.249.64.0/19
OriginAS:
NetName: GOOGLE
NetHandle: NET-66-249-64-0-1
Parent: NET-66-0-0-0-0
NetType: Direct Allocation
RegDate: 2004-03-05
Updated: 2012-02-24
Ref: http://whois.arin.net/rest/net/NET-66-249-64-0-1
OrgName: Google Inc.
OrgId: GOGL
Address: 1600 Amphitheatre Parkway
City: Mountain View
StateProv: CA
PostalCode: 94043
Country: US
RegDate: 2000-03-30
Updated: 2011-09-24
Ref: http://whois.arin.net/rest/org/GOGL
OrgTechHandle: ZG39-ARIN
OrgTechName: Google Inc
OrgTechPhone: +1-650-253-0000
OrgTechEmail: arin-contact@google.com
OrgTechRef: http://whois.arin.net/rest/poc/ZG39-ARIN
OrgAbuseHandle: ZG39-ARIN
OrgAbuseName: Google Inc
OrgAbusePhone: +1-650-253-0000
OrgAbuseEmail: arin-contact@google.com
OrgAbuseRef: http://whois.arin.net/rest/poc/ZG39-ARIN
#
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: https://www.arin.net/whois_tou.html
#
root@joi-EX460-EX461:/home/joi# whois 72.14.233.79
#
# Query terms are ambiguous. The query is assumed to be:
# "n 72.14.233.79"
#
# Use "?" to get help.
#
#
# The following results may also be obtained via:
# http://whois.arin.net/rest/nets;q=72.14.233.79?showDetails=true&showARIN=false&ext=netref2
#
NetRange: 72.14.192.0 - 72.14.255.255
CIDR: 72.14.192.0/18
OriginAS:
NetName: GOOGLE
NetHandle: NET-72-14-192-0-1
Parent: NET-72-0-0-0-0
NetType: Direct Allocation
RegDate: 2004-11-10
Updated: 2012-02-24
Ref: http://whois.arin.net/rest/net/NET-72-14-192-0-1
OrgName: Google Inc.
OrgId: GOGL
Address: 1600 Amphitheatre Parkway
City: Mountain View
StateProv: CA
PostalCode: 94043
Country: US
RegDate: 2000-03-30
Updated: 2011-09-24
Ref: http://whois.arin.net/rest/org/GOGL
OrgAbuseHandle: ZG39-ARIN
OrgAbuseName: Google Inc
OrgAbusePhone: +1-650-253-0000
OrgAbuseEmail: arin-contact@google.com
OrgAbuseRef: http://whois.arin.net/rest/poc/ZG39-ARIN
OrgTechHandle: ZG39-ARIN
OrgTechName: Google Inc
OrgTechPhone: +1-650-253-0000
OrgTechEmail: arin-contact@google.com
OrgTechRef: http://whois.arin.net/rest/poc/ZG39-ARIN
RTechHandle: ZG39-ARIN
RTechName: Google Inc
RTechPhone: +1-650-253-0000
RTechEmail: arin-contact@google.com
RTechRef: http://whois.arin.net/rest/poc/ZG39-ARIN
#
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: https://www.arin.net/whois_tou.html
#



root@joi-EX460-EX461:/home/joi# whois 173.194.38.139
#
# Query terms are ambiguous. The query is assumed to be:
# "n 173.194.38.139"
#
# Use "?" to get help.
#
#
# The following results may also be obtained via:
# http://whois.arin.net/rest/nets;q=173.194.38.139?showDetails=true&showARIN=false&ext=netref2
#
NetRange: 173.194.0.0 - 173.194.255.255
CIDR: 173.194.0.0/16
OriginAS: AS15169
NetName: GOOGLE
NetHandle: NET-173-194-0-0-1
Parent: NET-173-0-0-0-0
NetType: Direct Allocation
RegDate: 2009-08-17
Updated: 2012-02-24
Ref: http://whois.arin.net/rest/net/NET-173-194-0-0-1
OrgName: Google Inc.
OrgId: GOGL
Address: 1600 Amphitheatre Parkway
City: Mountain View
StateProv: CA
PostalCode: 94043
Country: US
RegDate: 2000-03-30
Updated: 2011-09-24
Ref: http://whois.arin.net/rest/org/GOGL
OrgAbuseHandle: ZG39-ARIN
OrgAbuseName: Google Inc
OrgAbusePhone: +1-650-253-0000
OrgAbuseEmail: arin-contact@google.com
OrgAbuseRef: http://whois.arin.net/rest/poc/ZG39-ARIN
OrgTechHandle: ZG39-ARIN
OrgTechName: Google Inc
OrgTechPhone: +1-650-253-0000
OrgTechEmail: arin-contact@google.com
OrgTechRef: http://whois.arin.net/rest/poc/ZG39-ARIN
#
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: https://www.arin.net/whois_tou.html
#
…………………………………………………………………


Joi.lab.akprind.ac.id

root@joi-EX460-EX461:/home/joi# traceroute joi.lab.akprind.ac.id

traceroute to joi.lab.akprind.ac.id (202.91.10.214), 30 hops max, 60 byte packets

1 10.20.30.77 (10.20.30.77) 83.171 ms 104.117 ms 104.088 ms

2 * * *

3 10.20.161.39 (10.20.161.39) 143.487 ms 143.467 ms 143.447 ms

4 202.70.56.49 (202.70.56.49) 158.894 ms 86.437 ms *

5 202.70.56.17 (202.70.56.17) 86.345 ms 86.316 ms 126.287 ms

6 ip-177-141.moratelindo.co.id (202.43.177.141) 146.267 ms 146.244 ms 243.854 ms

7 218.100.36.2 (218.100.36.2) 243.797 ms 243.768 ms 243.742 ms

8 xlnet.openixp.net (218.100.27.87) 243.712 ms 260.164 ms 283.610 ms

9 112.215.47.203 (112.215.47.203) 283.588 ms 283.568 ms 120.347 ms

10 202.91.8.250 (202.91.8.250) 120.289 ms 120.261 ms 120.232 ms

11 202.91.11.66 (202.91.11.66) 207.667 ms 207.639 ms 207.619 ms

12 202.91.11.70 (202.91.11.70) 283.677 ms 283.617 ms 296.074 ms

13 202.91.10.214 (202.91.10.214) 309.495 ms 2303.547 ms 309.442 ms







root@joi-EX460-EX461:/home/joi# whois 10.20.30.77
#
# Query terms are ambiguous. The query is assumed to be:
# "n 10.20.30.77"
#
# Use "?" to get help.
#
#
# The following results may also be obtained via:
# http://whois.arin.net/rest/nets;q=10.20.30.77?showDetails=true&showARIN=false&ext=netref2
#
NetRange: 10.0.0.0 - 10.255.255.255
CIDR: 10.0.0.0/8
OriginAS:
NetName: PRIVATE-ADDRESS-ABLK-RFC1918-IANA-RESERVED
NetHandle: NET-10-0-0-0-1
parent:
NetType: IANA Special Use
Comment: This block is used as private address space.
Comment: Traffic from these addresses does not come from IANA.
Comment: IANA has simply reserved these numbers in its database
Comment: and does not use or operate them. We are not the source
Comment: of activity you may see on logs or in e-mail records.
Comment: Please refer to http://www.iana.org/abuse/
Comment:
Comment: Addresses from this block can be used by
Comment: anyone without any need to coordinate with
Comment: IANA or an Internet registry. Addresses from
Comment: this block are used in multiple, separately
Comment: operated networks.
Comment:
Comment: This block was assigned by the IETF in the
Comment: Best Current Practice document, RFC 1918
Comment: which can be found at:
Comment:
Comment: http://www.rfc-editor.org/rfc/rfc1918.txt
RegDate:
Updated: 2011-04-12
Ref: http://whois.arin.net/rest/net/NET-10-0-0-0-1
OrgName: Internet Assigned Numbers Authority
OrgId: IANA
Address: 12025 Waterfront Drive
Address: Suite 300
City: Los Angeles
StateProv: CA
PostalCode: 90292
Country: US
RegDate:
Updated: 2012-08-31
Ref: http://whois.arin.net/rest/org/IANA
OrgAbuseHandle: IANA-IP-ARIN
OrgAbuseName: Internet Corporation for Assigned Names and Number
OrgAbusePhone: +1-310-301-5820
OrgAbuseEmail: abuse@iana.org
OrgAbuseRef: http://whois.arin.net/rest/poc/IANA-IP-ARIN
OrgTechHandle: IANA-IP-ARIN
OrgTechName: Internet Corporation for Assigned Names and Number
OrgTechPhone: +1-310-301-5820
OrgTechEmail: abuse@iana.org
OrgTechRef: http://whois.arin.net/rest/poc/IANA-IP-ARIN
#
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: https://www.arin.net/whois_tou.html
#


root@joi-EX460-EX461:/home/joi# whois 10.20.161.39
#
# Query terms are ambiguous. The query is assumed to be:
# "n 10.20.161.39"
#
# Use "?" to get help.
#
#
# The following results may also be obtained via:
# http://whois.arin.net/rest/nets;q=10.20.161.39?showDetails=true&showARIN=false&ext=netref2
#
NetRange: 10.0.0.0 - 10.255.255.255
CIDR: 10.0.0.0/8
OriginAS:
NetName: PRIVATE-ADDRESS-ABLK-RFC1918-IANA-RESERVED
NetHandle: NET-10-0-0-0-1
Parent:
NetType: IANA Special Use
Comment: This block is used as private address space.
Comment: Traffic from these addresses does not come from IANA.
Comment: IANA has simply reserved these numbers in its database
Comment: and does not use or operate them. We are not the source
Comment: of activity you may see on logs or in e-mail records.
Comment: Please refer to http://www.iana.org/abuse/
Comment:
Comment: Addresses from this block can be used by
Comment: anyone without any need to coordinate with
Comment: IANA or an Internet registry. Addresses from
Comment: this block are used in multiple, separately
Comment: operated networks.
Comment:
Comment: This block was assigned by the IETF in the
Comment: Best Current Practice document, RFC 1918
Comment: which can be found at:
Comment:
Comment: http://www.rfc-editor.org/rfc/rfc1918.txt
RegDate:
Updated: 2011-04-12
Ref: http://whois.arin.net/rest/net/NET-10-0-0-0-1
OrgName: Internet Assigned Numbers Authority
OrgId: IANA
Address: 4676 Admiralty Way, Suite 330
City: Marina del Rey
StateProv: CA
PostalCode: 90292-6695
Country: US
RegDate:
Updated: 2004-02-24
Ref: http://whois.arin.net/rest/org/IANA
OrgAbuseHandle: IANA-IP-ARIN
OrgAbuseName: Internet Corporation for Assigned Names and Number
OrgAbusePhone: +1-310-301-5820
OrgAbuseEmail: abuse@iana.org
OrgAbuseRef: http://whois.arin.net/rest/poc/IANA-IP-ARIN
OrgTechHandle: IANA-IP-ARIN
OrgTechName: Internet Corporation for Assigned Names and Number
OrgTechPhone: +1-310-301-5820
OrgTechEmail: abuse@iana.org
OrgTechRef: http://whois.arin.net/rest/poc/IANA-IP-ARIN
#
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: https://www.arin.net/whois_tou.html
#

root@joi-EX460-EX461:/home/joi# whois 202.70.56.49
% [whois.apnic.net node-5]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 202.70.56.0 - 202.70.56.255
netname: SMART-TELECOM-ID
descr: PT SMART TELECOM
country: ID
admin-c: DT549-AP
tech-c: KU7-AP
tech-c: WES1-AP
status: ASSIGNED NON-PORTABLE
mnt-by: MAINT-ID-WIRELESSNET
mnt-irt: IRT-WIRELESSNET-ID
changed: kunto@smartfren.com 20110427
source: APNIC
person: Dwiyanda Tanuwidjaja
address: PT WIRELESS INDONESIA (PT SMART TELECOM)
address: Jl. H Agus Salim No.45, Menteng
address: Jakarta Pusat 10340
country: ID
phone: +62-21-31922255
fax-no: +62-21-31927880
e-mail: dwiyanda@smartfren.com
nic-hdl: DT549-AP
mnt-by: MAINT-ID-WIRELESSNET
changed: dwiyanda@smartfren.com 20110304
source: APNIC
person: Kunto Utoro
address: Jln H Agus Salim [SABANG] No.45, Jakarta PUSAT
address: WIRELESS INDONESIA, PT :: SMART TELECOM, PT
address: DKI Jakarta - Indonesia
country: ID
phone: +62-21-31922255
fax-no: +62-21-316 2343
e-mail: kunto@smartfren.com
nic-hdl: KU7-AP
mnt-by: MAINT-ID-WIRELESSNET
changed: kunto@smart-telecom.co.id 20110304
source: APNIC
person: Wahyono Edi Sulistyo
address: Jln H Agus Salim [SABANG] No.45, Jakarta PUSAT
address: WIRELESS INDONESIA, PT :: SMART TELECOM, PT
address: DKI Jakarta - Indonesia
country: ID
phone: +62-21-31922255
fax-no: +62-21-316 2343
e-mail: wahyono.sulistyo@smartfren.com
nic-hdl: WES1-AP
mnt-by: MAINT-ID-WIRELESSNET
changed: kunto@smartfren.com 20110315
source: APNIC





root@joi-EX460-EX461:/home/joi# whois 202.70.56.17
% [whois.apnic.net node-1]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 202.70.56.0 - 202.70.56.255
netname: SMART-TELECOM-ID
descr: PT SMART TELECOM
country: ID
admin-c: DT549-AP
tech-c: KU7-AP
tech-c: WES1-AP
status: ASSIGNED NON-PORTABLE
mnt-by: MAINT-ID-WIRELESSNET
mnt-irt: IRT-WIRELESSNET-ID
changed: kunto@smartfren.com 20110427
source: APNIC
person: Dwiyanda Tanuwidjaja
address: PT WIRELESS INDONESIA (PT SMART TELECOM)
address: Jl. H Agus Salim No.45, Menteng
address: Jakarta Pusat 10340
country: ID
hone: +62-21-31922255
fax-no: +62-21-31927880
e-mail: dwiyanda@smartfren.com
nic-hdl: DT549-AP
mnt-by: MAINT-ID-WIRELESSNET
changed: dwiyanda@smartfren.com 20110304
source: APNIC
person: Kunto Utoro
address: Jln H Agus Salim [SABANG] No.45, Jakarta PUSAT
address: WIRELESS INDONESIA, PT :: SMART TELECOM, PT
address: DKI Jakarta - Indonesia
country: ID
phone: +62-21-31922255
fax-no: +62-21-316 2343
e-mail: kunto@smartfren.com
nic-hdl: KU7-AP
mnt-by: MAINT-ID-WIRELESSNET
changed: kunto@smart-telecom.co.id 20110304
source: APNIC
person: Wahyono Edi Sulistyo
address: Jln H Agus Salim [SABANG] No.45, Jakarta PUSAT
address: WIRELESS INDONESIA, PT :: SMART TELECOM, PT
address: DKI Jakarta - Indonesia
country: ID
phone: +62-21-31922255
fax-no: +62-21-316 2343
e-mail: wahyono.sulistyo@smartfren.com
nic-hdl: WES1-AP
mnt-by: MAINT-ID-WIRELESSNET
changed: kunto@smartfren.com 20110315
source: APNIC



root@joi-EX460-EX461:/home/joi# whois 202.43.177.141
% [whois.apnic.net node-5]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 202.43.177.0 - 202.43.179.255
netname: Moratelindo_POP_Jakarta
descr: PT. Mora Telematika Indonesia
descr: Grha 9, 1st Floor
descr: Jl. Panataran No. 9
descr: Jakarta Pusat 10320
country: ID
admin-c: MH907-AP
tech-c: MN276-AP
status: ALLOCATED NON-PORTABLE
changed: hostmaster@moratelindo.co.id 20110413
mnt-by: MAINT-ID-CEPATNET
mnt-irt: IRT-CEPATNET-ID
source: APNIC
route: 202.43.177.0/24
descr: CEPATNET-ID: Route object for 202.43.177.0/24
origin: AS23947
remarks: Routing report: routing@moratelindo.co.id
mnt-by: MAINT-ID-CEPATNET
changed: hostmaster@moratelindo.co.id 20110218
source: APNIC
person: Moratelindo Hostmaster
address: PT. Mora Telematika Indonesia
address: Grha 9, 1st Floor
address: Jl. Panataran No. 9
address: Jakarta Pusat 10320
country: ID
phone: +62-21-3199-8600
fax-no: +62-21-314-2882
e-mail: hostmaster@moratelindo.co.id
nic-hdl: MH907-AP
abuse-mailbox: abuse@moratelindo.co.id
mnt-by: MAINT-ID-CEPATNET
changed: hostmaster@moratelindo.co.id 20110218
source: APNIC
person: Moratelindo NOC
address: PT. Mora Telematika Indonesia
address: Grha 9, 1st Floor

address: Jl. Panataran No. 9
address: Jakarta Pusat 10320
country: ID
phone: +62-21-3199-8600
fax-no: +62-21-314-2882
e-mail: noc@moratelindo.co.id
nic-hdl: MN276-AP
abuse-mailbox: abuse@moratelindo.co.id
mnt-by: MAINT-ID-CEPATNET
changed: hostmaster@moratelindo.co.id 20110303
source: APNIC




root@joi-EX460-EX461:/home/joi# whois 218.100.36.2
% [whois.apnic.net node-3]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 218.100.36.0 - 218.100.36.255
netname: openixp-reloaded
descr: OpenIXP, Internet Exchange Point, Indonesia
country: ID
admin-c: JA1-AP
tech-c: JA1-AP
mnt-by: APNIC-HM
status: ASSIGNED PORTABLE
changed: hm-changed@apnic.net 20050923
source: APNIC
person: Johar Alam
address: Bukit Permai B2 No. 7, Cibubur.
country: ID
address: Jakarta 13720
phone: +62-21 8727447
fax-no: +62-21 87704279
e-mail: johar@the.net.id
nic-hdl: JA1-AP
mnt-by: MAINT-THENET-ID
changed: johar@the.net.id 20020719
source: APNIC




root@joi-EX460-EX461:/home/joi# whois 218.100.27.87
% [whois.apnic.net node-1]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 218.100.27.0 - 218.100.27.255
netname: OPENIXP
descr: OpenIXP, Internet Exchange Point, Indonesia
country: ID
admin-c: JA1-AP
tech-c: JA1-AP
mnt-by: APNIC-HM
status: ASSIGNED PORTABLE
remarks: -+-+-+-+-+-+-+-+-+-+-+-++-+-+-+-+-+-+-+-+-+-+-+-+-+-+
remarks: This object can only be updated by APNIC hostmasters.
remarks: To update this object, please contact APNIC
remarks: hostmasters and include your organisation's account
remarks: name in the subject line.
remarks: -+-+-+-+-+-+-+-+-+-+-+-++-+-+-+-+-+-+-+-+-+-+-+-+-+-+
changed: hm-changed@apnic.net 20050906
source: APNIC
person: Johar Alam
address: Bukit Permai B2 No. 7, Cibubur.
country: ID
address: Jakarta 13720
phone: +62-21 8727447
fax-no: +62-21 87704279
e-mail: johar@the.net.id
nic-hdl: JA1-AP
mnt-by: MAINT-THENET-ID
changed: johar@the.net.id 20020719
source: APNIC



root@joi-EX460-EX461:/home/joi# whois 112.215.47.203
% [whois.apnic.net node-2]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 112.215.0.0 - 112.215.75.0
netname: XL_INFRASTRUKTUR_GSM
descr: PT Excelcomindo Pratama
descr: Cellular, GPRS and Internet Service Provider
country: ID
admin-c: HA168-AP
tech-c: IW106-AP
status: ALLOCATED NON-PORTABLE
mnt-by: MAINT-ID-XLNET
mnt-irt: IRT-XLNET-ID
changed: haerania@xl.co.id 20110310
source: APNIC
route: 112.215.0.0/18
descr: XL-AXIATA Tbk GSM
origin: AS24203
country: ID
notify: hostmaster@xl.co.id
mnt-routes: MAINT-ID-XLNET
mnt-by: MAINT-ID-XLNET
changed: hostmaster@idnic.net 20111116
source: APNIC
person: Haerani Akbar
nic-hdl: HA168-AP
e-mail: haerania@xl.co.id
address: GrhaXL Jakarta
address: Jl. Mega Kuningan lot. E4-7 No. 1
address: Kawasan Mega Kuningan Jakarta 12950
phone: +62-21-579-59556
fax-no: +62-21-579-59558
country: ID
changed: hostmaster@idnic.net 20081120
mnt-by: MAINT-ID-XLNET
source: APNIC
person: Iwan Wibisana
nic-hdl: IW106-AP
e-mail: iwibisana@xl.co.id
address: GrhaXL Jakarta
address: Jl. Mega Kuningan lot. E4-7 No. 1
address: Kawasan Mega Kuningan Jakarta 12950
phone: +62-21-579-59556
fax-no: +62-21-579-59558
country: ID
changed: hostmaster@idnic.net 20081118
mnt-by: MAINT-ID-XLNET
source: APNIC




root@joi-EX460-EX461:/home/joi# whois 202.91.8.250
% [whois.apnic.net node-1]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 202.91.8.240 - 202.91.8.255
netname: NCC-TELNET-ID
country: ID
descr: PT. Time Excelindo
descr: DI Yogyakarta
admin-c: TH281-AP
tech-c: TH281-AP
status: ASSIGNED NON-PORTABLE
changed: hostmaster@te.net.id 20090403
remarks: Spam and Abuse Report : abuse@te.net.id
mnt-by: MAINT-ID-TELNET
source: APNIC
route: 202.91.8.0/24
descr: Route object of PT. Time Excelindo
descr: ISP
descr: DI Yogyakarta
country: ID
origin: AS38150
mnt-by: MAINT-ID-TELNET
source: APNIC
changed: hostmaster@te.net.id 20110609
role: TELNET HOSTMASTERS
address: PT. TIME EXCELINDO
address: Internet Service Provider
address: Jl. Ring Road Utara Condong Catur
address: Depok, Sleman
address: Yogyakarta - Indonesia
country: ID
phone: +62-274-4477-818
phone: +62-274-4477-819
fax-no: +62-274-4477-823
e-mail: hostmaster@te.net.id
remarks: TELNET Hostmasters role object
remarks: spam and abuse report : abuse@te.net.id
remarks: technical and routing : noc@te.net.id
remarks: administrative request : noc@te.net.id
admin-c: AM347-AP
tech-c: PP536-AP
nic-hdl: TH281-AP
notify: hostmaster@te.net.id
mnt-by: MAINT-ID-TELNET
changed: hostmaster@te.net.id 20050301
changed: hostmaster@te.net.id 20061106
changed: hostmaster@te.net.id 20081015
changed: hostmaster@te.net.id 20110927
source: APNIC






root@joi-EX460-EX461:/home/joi# whois 202.91.11.66
% [whois.apnic.net node-2]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 202.91.11.0 - 202.91.11.255
netname: InfraPtP-TELNET-ID
country: ID
descr: PtP Connection
admin-c: TH281-AP
tech-c: TH281-AP
status: ASSIGNED NON-PORTABLE
changed: hostmaster@te.net.id 20090401
remarks: Spam & Abuse Report : abuse@te.net.id
mnt-by: MAINT-ID-TELNET
source: APNIC
route: 202.91.11.0/24
descr: Route object of PT. Time Excelindo
descr: ISP
descr: DI Yogyakarta
country: ID
origin: AS38150
mnt-by: MAINT-ID-TELNET
source: APNIC
changed: hostmaster@te.net.id 20110609
role: TELNET HOSTMASTERS
address: PT. TIME EXCELINDO
address: Internet Service Provider
address: Jl. Ring Road Utara Condong Catur
address: Depok, Sleman
address: Yogyakarta - Indonesia
country: ID
phone: +62-274-4477-818
phone: +62-274-4477-819
fax-no: +62-274-4477-823
e-mail: hostmaster@te.net.id
remarks: TELNET Hostmasters role object
remarks: spam and abuse report : abuse@te.net.id
remarks: technical and routing : noc@te.net.id
remarks: administrative request : noc@te.net.id
admin-c: AM347-AP
tech-c: PP536-AP
nic-hdl: TH281-AP
notify: hostmaster@te.net.id
mnt-by: MAINT-ID-TELNET
changed: hostmaster@te.net.id 20050301
changed: hostmaster@te.net.id 20061106
changed: hostmaster@te.net.id 20081015
changed: hostmaster@te.net.id 20110927
source: APNIC


root@joi-EX460-EX461:/home/joi# whois 202.91.10.214
% [whois.apnic.net node-3]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 202.91.10.208 - 202.91.10.223
netname: ISTA-TELNET-ID
country: ID
descr: IST Akprind
descr: Yogyakarta
admin-c: TH281-AP
tech-c: TH281-AP
status: ASSIGNED NON-PORTABLE
changed: hostmaster@te.net.id 20090401
remarks: #####################################################
remarks: Spam Report : wa2n@nrar.net
remarks: Abuse Report : wa2n@nrar.net
remarks: #####################################################
mnt-by: MAINT-ID-TELNET
source: APNIC
route: 202.91.10.0/24
descr: Route object of PT. Time Excelindo
descr: ISP
descr: DI Yogyakarta
country: ID
origin: AS38150
mnt-by: MAINT-ID-TELNET
source: APNIC
changed: hostmaster@te.net.id 20110609
role: TELNET HOSTMASTERS
address: PT. TIME EXCELINDO
address: Internet Service Provider
address: Jl. Ring Road Utara Condong Catur
address: Depok, Sleman
address: Yogyakarta - Indonesia
country: ID
phone: +62-274-4477-818
phone: +62-274-4477-819
fax-no: +62-274-4477-823
e-mail: hostmaster@te.net.id
remarks: TELNET Hostmasters role object
remarks: spam and abuse report : abuse@te.net.id
remarks: technical and routing : noc@te.net.id
remarks: administrative request : noc@te.net.id
admin-c: AM347-AP
tech-c: PP536-AP
nic-hdl: TH281-AP
notify: hostmaster@te.net.id
mnt-by: MAINT-ID-TELNET
changed: hostmaster@te.net.id 20050301
changed: hostmaster@te.net.id 20061106
changed: hostmaster@te.net.id 20081015
changed: hostmaster@te.net.id 20110927
source: APNIC




Monkey.16mb.com

root@joi-EX460-EX461:/home/joi# traceroute monkey.16mb.com
traceroute to monkey.16mb.com (31.170.164.139), 30 hops max, 60 byte packets
1 10.20.30.77 (10.20.30.77) 79.657 ms 95.578 ms 115.552 ms
2 10.20.161.18 (10.20.161.18) 115.525 ms 127.485 ms *
3 10.20.161.40 (10.20.161.40) 171.458 ms 199.929 ms 251.871 ms
4 202.70.56.49 (202.70.56.49) 251.854 ms 86.131 ms 86.074 ms
5 202.70.56.17 (202.70.56.17) 118.070 ms 122.020 ms 129.972 ms
6 * * *
7 supernet-08.1-1-19.edge2-eqx-sin.moratelindo.co.id (202.43.176.114) 181.134 ms 193.105 ms 217.095 ms
8 ip-176-198.moratelindo.co.id (202.43.176.198) 217.081 ms 225.049 ms 249.032 ms
9 ge-4-0-1.r00.sngpsi03.sg.bb.gin.ntt.net (116.51.17.181) 259.843 ms ge-3-0-1.r00.sngpsi03.sg.bb.gin.ntt.net (129.250.10.145) 269.004 ms ge-4-0-1.r00.sngpsi03.sg.bb.gin.ntt.net (116.51.17.181) 118.359 ms
10 as-4.r20.sngpsi02.sg.bb.gin.ntt.net (129.250.3.59) 126.294 ms 150.397 ms 150.367 ms
11 as-3.r20.snjsca04.us.bb.gin.ntt.net (129.250.3.88) 358.229 ms 358.207 ms 1038.202 ms
12 ae-1.r07.snjsca04.us.bb.gin.ntt.net (129.250.5.53) 323.773 ms 332.391 ms 332.365 ms
13 * * *
14 xe-8-3-0.lon11.ip4.tinet.net (213.200.80.57) 523.639 ms xe-3-1-0.lon10.ip4.tinet.net (89.149.185.165) 523.614 ms xe-5-1-0.lon10.ip4.tinet.net (89.149.187.141) 511.598 ms
15 m247-gw.ip4.tinet.net (141.136.96.230) 399.842 ms 399.775 ms 399.748 ms
16 te-2-1-211.bb1.man2.uk.m247.com (193.27.64.114) 411.699 ms 411.668 ms 423.621 ms
17 te-3-4-456.bb1.man3.uk.m247.com (77.243.185.121) 415.616 ms 395.784 ms 395.739 ms
18 te-4-4-0.bb1.man4.uk.m247.com (77.243.185.133) 407.701 ms 491.819 ms 499.766 ms
19 manc1.main-hosting.com (176.10.80.142) 419.809 ms 419.785 ms 419.758 ms
20 * * *
21 * * *
22 * * *
23 * * *
24 * * *
25 * * *
26 * * *
27 * * *
28 * * *
29 * * *
30 * * *

root@joi-EX460-EX461:/home/joi# whois 10.20.30.77
#
# Query terms are ambiguous. The query is assumed to be:
# "n 10.20.30.77"
#
# Use "?" to get help.
#
#
# The following results may also be obtained via:
# http://whois.arin.net/rest/nets;q=10.20.30.77?showDetails=true&showARIN=false&ext=netref2
#
NetRange: 10.0.0.0 - 10.255.255.255
CIDR: 10.0.0.0/8
OriginAS:
NetName: PRIVATE-ADDRESS-ABLK-RFC1918-IANA-RESERVED
NetHandle: NET-10-0-0-0-1
Parent:
NetType: IANA Special Use
Comment: This block is used as private address space.
Comment: Traffic from these addresses does not come from IANA.
Comment: IANA has simply reserved these numbers in its database
Comment: and does not use or operate them. We are not the source
Comment: of activity you may see on logs or in e-mail records.
Comment: Please refer to http://www.iana.org/abuse/
Comment:
Comment: Addresses from this block can be used by
Comment: anyone without any need to coordinate with
Comment: IANA or an Internet registry. Addresses from
Comment: this block are used in multiple, separately
Comment: operated networks.
Comment:
Comment: This block was assigned by the IETF in the
Comment: Best Current Practice document, RFC 1918
Comment: which can be found at:
Comment:
Comment: http://www.rfc-editor.org/rfc/rfc1918.txt
RegDate:
Updated: 2011-04-12
Ref: http://whois.arin.net/rest/net/NET-10-0-0-0-1
OrgName: Internet Assigned Numbers Authority
OrgId: IANA
Address: 12025 Waterfront Drive
Address: Suite 300
City: Los Angeles
StateProv: CA
PostalCode: 90292
Country: US
RegDate:
Updated: 2012-08-31
Ref: http://whois.arin.net/rest/org/IANA
OrgAbuseHandle: IANA-IP-ARIN
OrgAbuseName: Internet Corporation for Assigned Names and Number
OrgAbusePhone: +1-310-301-5820
OrgAbuseEmail: abuse@iana.org
OrgAbuseRef: http://whois.arin.net/rest/poc/IANA-IP-ARIN
OrgTechHandle: IANA-IP-ARIN
OrgTechName: Internet Corporation for Assigned Names and Number
OrgTechPhone: +1-310-301-5820
OrgTechEmail: abuse@iana.org
OrgTechRef: http://whois.arin.net/rest/poc/IANA-IP-ARIN
#
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: https://www.arin.net/whois_tou.html
#

root@joi-EX460-EX461:/home/joi# whois 10.20.161.18
#
# Query terms are ambiguous. The query is assumed to be:
# "n 10.20.161.18"
#
# Use "?" to get help.
#
#
# The following results may also be obtained via:
# http://whois.arin.net/rest/nets;q=10.20.161.18?showDetails=true&showARIN=false&ext=netref2
#
NetRange: 10.0.0.0 - 10.255.255.255
CIDR: 10.0.0.0/8
OriginAS:
NetName: PRIVATE-ADDRESS-ABLK-RFC1918-IANA-RESERVED
NetHandle: NET-10-0-0-0-1
Parent:
NetType: IANA Special Use
Comment: This block is used as private address space.
Comment: Traffic from these addresses does not come from IANA.
Comment: IANA has simply reserved these numbers in its database
Comment: and does not use or operate them. We are not the source
Comment: of activity you may see on logs or in e-mail records.
Comment: Please refer to http://www.iana.org/abuse/
Comment:
Comment: Addresses from this block can be used by
Comment: anyone without any need to coordinate with
Comment: IANA or an Internet registry. Addresses from
Comment: this block are used in multiple, separately
Comment: operated networks.
Comment:
Comment: This block was assigned by the IETF in the
Comment: Best Current Practice document, RFC 1918
Comment: which can be found at:
Comment:
Comment: http://www.rfc-editor.org/rfc/rfc1918.txt
RegDate:
Updated: 2011-04-12
Ref: http://whois.arin.net/rest/net/NET-10-0-0-0-1
OrgName: Internet Assigned Numbers Authority
OrgId: IANA
Address: 12025 Waterfront Drive
Address: Suite 300
City: Los Angeles
StateProv: CA
PostalCode: 90292
Country: US
RegDate:
Updated: 2012-08-31
Ref: http://whois.arin.net/rest/org/IANA
OrgAbuseHandle: IANA-IP-ARIN
OrgAbuseName: Internet Corporation for Assigned Names and Number
OrgAbusePhone: +1-310-301-5820
OrgAbuseEmail: abuse@iana.org
OrgAbuseRef: http://whois.arin.net/rest/poc/IANA-IP-ARIN
OrgTechHandle: IANA-IP-ARIN
OrgTechName: Internet Corporation for Assigned Names and Number
OrgTechPhone: +1-310-301-5820
OrgTechEmail: abuse@iana.org
OrgTechRef: http://whois.arin.net/rest/poc/IANA-IP-ARIN
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: https://www.arin.net/whois_tou.html
#

root@joi-EX460-EX461:/home/joi# whois 202.70.56.49
% [whois.apnic.net node-1]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 202.70.56.0 - 202.70.56.255
netname: SMART-TELECOM-ID
descr: PT SMART TELECOM
country: ID
admin-c: DT549-AP
tech-c: KU7-AP
tech-c: WES1-AP
status: ASSIGNED NON-PORTABLE
mnt-by: MAINT-ID-WIRELESSNET
mnt-irt: IRT-WIRELESSNET-ID
changed: kunto@smartfren.com 20110427
source: APNIC
person: Dwiyanda Tanuwidjaja
address: PT WIRELESS INDONESIA (PT SMART TELECOM)
address: Jl. H Agus Salim No.45, Menteng
address: Jakarta Pusat 10340
country: ID
phone: +62-21-31922255
fax-no: +62-21-31927880
e-mail: dwiyanda@smartfren.com
nic-hdl: DT549-AP
mnt-by: MAINT-ID-WIRELESSNET
changed: dwiyanda@smartfren.com 20110304
source: APNIC
person: Kunto Utoro
address: Jln H Agus Salim [SABANG] No.45, Jakarta PUSAT
address: WIRELESS INDONESIA, PT :: SMART TELECOM, PT
address: DKI Jakarta - Indonesia
country: ID
phone: +62-21-31922255
fax-no: +62-21-316 2343
e-mail: kunto@smartfren.com
nic-hdl: KU7-AP
mnt-by: MAINT-ID-WIRELESSNET
changed: kunto@smart-telecom.co.id 20110304
source: APNIC
person: Wahyono Edi Sulistyo
address: Jln H Agus Salim [SABANG] No.45, Jakarta PUSAT
address: WIRELESS INDONESIA, PT :: SMART TELECOM, PT
address: DKI Jakarta - Indonesia
country: ID
phone: +62-21-31922255
fax-no: +62-21-316 2343
e-mail: wahyono.sulistyo@smartfren.com
nic-hdl: WES1-AP
mnt-by: MAINT-ID-WIRELESSNET
changed: kunto@smartfren.com 20110315
source: APNIC

root@joi-EX460-EX461:/home/joi# whois 202.43.176.114
% [whois.apnic.net node-5]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 202.43.176.0 - 202.43.176.255
netname: Moratelindo_POP_Batam
descr: PT. Mora Telematika Indonesia
descr: Grha 9, 1st Floor
descr: Jl. Panataran No.
descr: Jakarta Pusat 10320
country: ID
admin-c: MH907-AP
tech-c: MN276-AP
status: ALLOCATED NON-PORTABLE
changed: hostmaster@moratelindo.co.id 20110413
mnt-by: MAINT-ID-CEPATNET
mnt-irt: IRT-CEPATNET-ID
source: APNIC
route: 202.43.176.0/24
descr: CEPATNET-ID: Route object for 202.43.176.0/24
origin: AS23947
remarks: Routing report: routing@moratelindo.co.i
mnt-by: MAINT-ID-CEPATNET
changed: hostmaster@moratelindo.co.id 20110218
source: APNIC
person: Moratelindo Hostmaster
address: PT. Mora Telematika Indonesia
address: Grha 9, 1st Floor
address: Jl. Panataran No. 9
address: Jakarta Pusat 10320
country: ID
phone: +62-21-3199-8600
fax-no: +62-21-314-2882
e-mail: hostmaster@moratelindo.co.id
nic-hdl: MH907-AP
abuse-mailbox: abuse@moratelindo.co.id
mnt-by: MAINT-ID-CEPATNET
changed: hostmaster@moratelindo.co.id 20110218
source: APNIC
person: Moratelindo NOC
address: PT. Mora Telematika Indonesia
address: Grha 9, 1st Floor
address: Jl. Panataran No. 9
address: Jakarta Pusat 10320
country: ID
phone: +62-21-3199-8600
fax-no: +62-21-314-2882
e-mail: noc@moratelindo.co.id
nic-hdl: MN276-AP
abuse-mailbox: abuse@moratelindo.co.id
mnt-by: MAINT-ID-CEPATNET
changed: hostmaster@moratelindo.co.id 20110303
source: APNIC

root@joi-EX460-EX461:/home/joi# whois 116.51.17.181
% [whois.apnic.net node-5]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 116.51.0.0 - 116.51.255.255
netname: NTT-SGP-AP
descr: NTT Singapore Pte Ltd
country: SG
admin-c: IE11-AP
tech-c: IE11-AP
status: ALLOCATED PORTABLE
mnt-by: APNIC-HM
mnt-lower: MAINT-SG-NTTS
remarks: -+-+-+-+-+-+-+-+-+-+-+-++-+-+-+-+-+-+-+-+-+-+-+-+-+-+
remarks: This object can only be updated by APNIC hostmasters.
remarks: To update this object, please contact APNIC
remarks: hostmasters and include your organisation's accoun
remarks: name in the subject line.
remarks: -+-+-+-+-+-+-+-+-+-+-+-++-+-+-+-+-+-+-+-+-+-+-+-+-+-+
changed: hm-changed@apnic.net 20070323
source: APNIC
person: IP ENGINEERING - AS17645
nic-hdl: IE11-AP
e-mail: ip-eng@ntt.com.sg
address: A NTT Communications Group Company
address: NTT Singapore Pte Ltd
address: 20 Cecil Street
address: Equity Plaza, #11-03/06
address: Singapore 049705
phone: +65 6438-3101
fax-no: +65 6438-3102
country: SG
remarks: Spam and Security Issues: abuse@ntt.com.sg
remarks: Network Issues : noc@ntt.com.sg
remarks: For routing information,
remarks: Please refer to RADB or
remarks: NTT Communications Routing Registry (NTTCOM)
remarks: *****************************************************
remarks: Contacts per RFC2142
remarks: *****************************************************
changed: ip-eng@ntt.com.sg 20060906
mnt-by: MAINT-SG-NTTS
source: APNIC

root@joi-EX460-EX461:/home/joi# whois 129.250.3.59
#
# Query terms are ambiguous. The query is assumed to be:
# "n 129.250.3.59"
#
# Use "?" to get help
#
# The following results may also be obtained via:
# http://whois.arin.net/rest/nets;q=129.250.3.59?showDetails=true&showARIN=false&ext=netref2
#
NetRange: 129.250.0.0 - 129.250.255.255
CIDR: 129.250.0.0/16
OriginAS:
NetName: NTTA-129-250
NetHandle: NET-129-250-0-0-1
Parent: NET-129-0-0-0-0
NetType: Direct Allocation
Comment:
Comment: Reassignment information for this block is
Comment: available at rwhois.gin.ntt.net port 4321
RegDate: 1988-04-05
Updated: 2012-03-02
Ref: http://whois.arin.net/rest/net/NET-129-250-0-0-1
OrgName: NTT America, Inc.
OrgId: NTTAM-1
Address: 8300 E Maplewood Ave.
Address: Suite 400
City: Greenwood Village
StateProv: CO
PostalCode: 80111
Country: US
RegDate: 2005-12-08
Updated: 2011-10-18
Ref: http://whois.arin.net/rest/org/NTTAM-1
ReferralServer: rwhois://rwhois.gin.ntt.net:4321
OrgTechHandle: VIPAR-ARIN
OrgTechName: VIPAR
OrgTechPhone: +1-877-688-6625
OrgTechEmail: vipar@us.ntt.net
OrgTechRef: http://whois.arin.net/rest/poc/VIPAR-ARIN
OrgNOCHandle: NASC-ARI
OrgNOCName: NTT America Support Contact
OrgNOCPhone: +1-877-688-6625
OrgNOCEmail: support@us.ntt.net
OrgNOCRef: http://whois.arin.net/rest/poc/NASC-ARIN
OrgAbuseHandle: NAAC-ARIN
OrgAbuseName: NTT America Abuse Contact
OrgAbusePhone: +1-877-688-6625
OrgAbuseEmail: abuse@ntt.net
OrgAbuseRef: http://whois.arin.net/rest/poc/NAAC-ARIN
RTechHandle: VIA4-ORG-ARIN
RTechName: VIPAR
RTechPhone: +1-877-688-6625
RTechEmail: vipar@us.ntt.net
RTechRef: http://whois.arin.net/rest/poc/VIA4-ORG-ARIN
#
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: https://www.arin.net/whois_tou.html
#
Found a referral to rwhois.gin.ntt.net:4321.
%rwhois V-1.5:0078b6:00 rwhois.gin.ntt.net (Vipar 0.1a. Comments to vipar@us.ntt.net)
network:Class-Name:network
network:Auth-Area:129.250.0.0/16
network:ID:NETBLK-VRIO-BB-P0.127.0.0.1/32
network:Handle:NETBLK-VRIO-BB-P0
network:Network-Name:VRIO-BB-P0
network:IP-Network:129.250.2.0/23
network:In-Addr-Server;I:AUTH21-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH22-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH23-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH24-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH25-GIN-HST.127.0.0.1/32
network:IP-Network-Block:129.250.2.0 - 129.250.3.255
network:Org-Name:NTT America, Inc.
network:Street-Address:8005 South Chester Street, Suite
network:City:Englewood
network:State:CO
network:Postal-Code:80112
network:Country-Code:US
network:Tech-Contact;I:VIA4-ORG-ARIN.127.0.0.1/32
network:Created:1999-09-14 19:28:24+00
network:Updated:2007-06-04 23:13:29+00
network:Class-Name:network
network:Auth-Area:129.250.0.0/16
network:ID:NETBLK-VRIO-BB.127.0.0.1/32
network:Handle:NETBLK-VRIO-BB
network:Network-Name:VRIO-BB
network:IP-Network:129.250.0.0/16
network:In-Addr-Server;I:AUTH2-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH22-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH23-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH24-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH25-GIN-HST.127.0.0.1/3
network:IP-Network-Block:129.250.0.0 - 129.250.255.255
network:Org-Name:NTT America, Inc.
network:Street-Address:8005 South Chester Street, Suite
network:City:Englewood
network:State:CO
network:Postal-Code:80112
network:Country-Code:US
network:Tech-Contact;I:VIA4-ORG-ARIN.127.0.0.1/32
network:Created:1999-10-08 17:01:36+00
network:Updated:2007-06-04 23:11:46+00
network:Class-Name:network
network:Auth-Area:129.250.0.0/16
network:ID:NETBLK-VRIO-BB.127.0.0.1/32
network:Handle:NETBLK-VRIO-BB
network:Network-Name:VRIO-BB
network:IP-Network:129.250.0.0/16
network:In-Addr-Server;I:AUTH21-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH22-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH23-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH24-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH25-GIN-HST.127.0.0.1/32
network:IP-Network-Block:129.250.0.0 - 129.250.255.255
network:Org-Name:NTT America, Inc.
network:Street-Address:8005 South Chester Street, Suite
network:City:Englewood
network:State:CO
network:Postal-Code:80112
network:Country-Code:US
network:Tech-Contact;I:VIA4-ORG-ARIN.127.0.0.1/32
network:Created:1999-10-08 17:01:36+00
network:Updated:2007-06-04 23:11:46+00
%ok

root@joi-EX460-EX461:/home/joi# whois 129.250.5.53
#
# Query terms are ambiguous. The query is assumed to be:
# "n 129.250.5.53"
#
# Use "?" to get help.
#
#
# The following results may also be obtained via:
# http://whois.arin.net/rest/nets;q=129.250.5.53?showDetails=true&showARIN=false&ext=netref2
#
NetRange: 129.250.0.0 - 129.250.255.255
CIDR: 129.250.0.0/16
OriginAS:
NetName: NTTA-129-250
NetHandle: NET-129-250-0-0-1
Parent: ET-129-0-0-0-0
NetType: Direct Allocation
Comment:
Comment: Reassignment information for this block is
Comment: available at rwhois.gin.ntt.net port 4321
RegDate: 1988-04-05
Updated: 2012-03-02
Ref: http://whois.arin.net/rest/net/NET-129-250-0-0-1
OrgName: NTT America, Inc.
OrgId: NTTAM-1
Address: 8300 E Maplewood Ave.
Address: Suite 400
City: Greenwood Village
StateProv: CO
PostalCode: 80111
Country: US
RegDate: 2005-12-08
Updated: 2011-10-18
Ref: http://whois.arin.net/rest/org/NTTAM-1
ReferralServer: rwhois://rwhois.gin.ntt.net:4321
OrgTechHandle: VIPAR-ARIN
OrgTechName: VIPAR
OrgTechPhone: +1-877-688-6625
OrgTechEmail: vipar@us.ntt.net
OrgTechRef: http://whois.arin.net/rest/poc/VIPAR-ARIN
OrgNOCHandle: NASC-ARIN
OrgNOCName: NTT America Support Contact
OrgNOCPhone: +1-877-688-6625
OrgNOCEmail: support@us.ntt.net
OrgNOCRef: http://whois.arin.net/rest/poc/NASC-ARIN
OrgAbuseHandle: NAAC-ARIN
OrgAbuseName: NTT America Abuse Contact
OrgAbusePhone: +1-877-688-6625
OrgAbuseEmail: abuse@ntt.net
OrgAbuseRef: http://whois.arin.nt/rest/poc/NAAC-ARIN
RTechHandle: VIA4-ORG-ARIN
RTechName: VIPAR
RTechPhone: +1-877-688-6625
RTechEmail: vipar@us.ntt.net
RTechRef: http://whois.arin.net/rest/poc/VIA4-ORG-ARIN
#
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: https://www.arin.net/whois_tou.html
#
Found a referral to rwhois.gin.ntt.net:4321.
%rwhois V-1.5:0078b6:00 rwhois.gin.ntt.net (Vipar 0.1a. Comments to vipar@us.ntt.net)
network:Class-Name:network
network:Auth-Area:129.250.0.0/16
network:ID:NETBLK-VRIO-BB-P1.127.0.0.1/32
network:Handle:NETBLK-VRIO-BB-P1
network:Network-Name:VRIO-BB-P1
network:IP-Network:129.250.4.0/22
network:In-Addr-Server;I:AUTH21-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH22-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH23-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH24-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH25-GIN-HST.127.0.0.1/3
network:IP-Network-Block:129.250.4.0 - 129.250.7.255
network:Org-Name:NTT America, Inc.
network:Street-Address:8005 South Chester Street, Suite
network:City:Englewood
network:State:CO
network:Postal-Code:80112
network:Country-Code:US
network:Tech-Contact;I:VIA4-ORG-ARIN.127.0.0.1/32
network:Created:1999-09-14 19:28:42+00
network:Updated:2007-06-04 23:16:27+00
network:Class-Name:network
network:Auth-Area:129.250.0.0/16
network:ID:NETBLK-VRIO-BB.127.0.0.1/32
network:Handle:NETBLK-VRIO-BB
network:Network-Name:VRIO-BB
network:IP-Network:129.250.0.0/16
network:In-Addr-Server;I:AUTH21-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH22-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH23-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH24-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH25-GIN-HST.127.0.0.1/32
network:IP-Network-Block:129.250.0.0 - 129.250.255.255
network:Org-Name:NTT America, Inc.
network:Street-Address:8005 South Chester Street, Suite
network:City:Englewood
network:State:CO
network:Postal-Code:80112
network:Country-Code:US
network:Tech-Contact;I:VIA4-ORG-ARIN.127.0.0.1/32
network:Created:1999-10-08 17:01:36+00
network:Updated:2007-06-04 23:11:46+00
network:Class-Name:network
network:Auth-Area:129.250.0.0/16
network:ID:NETBLK-VRIO-BB.127.0.0.1/32
network:Handle:NETBLK-VRIO-BB
network:Network-Name:VRIO-BB
network:IP-Network:129.250.0.0/16
network:In-Addr-Server;I:AUTH21-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH22-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH23-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH24-GIN-HST.127.0.0.1/32
network:In-Addr-Server;I:AUTH25-GIN-HST.127.0.0.1/32
network:IP-Network-Block:129.250.0.0 - 129.250.255.255
network:Org-Name:NTT America, Inc.
network:Street-Address:8005 South Chester Street, Suite
network:City:Englewood
network:State:CO
network:Postal-Code:80112
network:Country-Code:US
network:Tech-Contact;I:VIA4-ORG-ARIN.127.0.0.1/32
network:Created:1999-10-08 17:01:36+00
network:Updated:2007-06-04 23:11:46+00
%ok
root@joi-EX460-EX461:/home/joi# whois 213.200.80.57
% This is the RIPE Database query service.
% The objects are in RPSL format.
%
% The RIPE Database is subject to Terms and Conditions.
% See http://www.ripe.net/db/support/db-terms-conditions.pdf
% Note: this output has been filtered.
% To receive output for a database update, use the "-B" flag.
% Information related to '213.200.80.0 - 213.200.84.255'
inetnum: 213.200.80.0 - 213.200.84.255
netname: NACNET-EU
descr: Tinet SpA
descr: Hugenottenallee 167
descr: 63263 Neu-Isenburg
country: DE
admin-c: SE33-RIP
tech-c: TIS333-RIPE
status: ASSIGNED PA
mnt-by: AS3257-NET-MNT
source: RIPE # Filtered
role: Tiscali International
address: Tinet SpA
address: Hugenottenallee 167
address: 63263 Neu-Isenburg
address: Germany
phone: +49 6102 8235381
fax-no: +49 6102 8235389
remarks: Information: http://www.tinet.net
remarks: Concerning abuse and spam ... mailto: abuse@tinet.net
abuse-mailbox: abuse@tinet.net
admin-c: SE33-RIPE
tech-c: TK333-RIPE
nic-hdl: TIS333-RIPE
remarks: hostmaster role account
mnt-by: AS3257-PERS-MNT
source: RIPE # Filtered
person: Sven Engelhart
address: Hugenottenallee 167
address: 63263 Neu-Isenburg
address: Germany
phone: +49 6102 8235381
fax-no: +49 6102 8235389
nic-hdl: SE33-RIPE
remarks: PGP public key certificate object: PGPKEY-2B682C80
remarks: Internic: SE585
mnt-by: AS3257-PERS-MNT
source: RIPE # Filtered
% Information related to '213.200.64.0/18AS3257'
route: 213.200.64.0/18
descr: Tinet SpA
origin: AS3257
mnt-by: AS3257-ROUTE-MNT
source: RIPE # Filtered
% This query was served by the RIPE Database Query Service version 1.35 (WHOIS3)

root@joi-EX460-EX461:/home/joi# whois 141.136.96.230
#
# Query terms are ambiguous. The query is assumed to be:
"n 141.136.96.230"
#
# Use "?" to get help.
#
#
# The following results may also be obtained via:
# http://whois.arin.net/rest/nets;q=141.136.96.230?showDetails=true&showARIN=false&ext=netref2
#
NetRange: 141.0.0.0 - 141.255.255.255
CIDR: 141.0.0.0/8
OriginAS:
NetName: RIPE-ERX-141
NetHandle: NET-141-0-0-0-0
Parent:
NetType: Early Registrations, Maintained by RIPE NCC
Comment: These addresses have been further assigned to users in
Comment: the RIPE NCC region. Contact information can be found in
Comment: the RIPE database at http://www.ripe.net/whois
RegDate: 1993-05-01
Updated: 2009-05-18
Ref: http://whois.arin.net/rest/net/NET-141-0-0-0-0
OrgName: RIPE Network Coordination Centre
OrgId: RIPE
Address: P.O. Box 10096
City: Amsterdam
StateProv:
PostalCode: 1001EB
Country: NL
RegDate:
Updated: 2011-09-24
Ref: http://whois.arin.net/rest/org/RIPE
ReferralServer: whois://whois.ripe.net:43
OrgTechHandle: RNO29-ARIN
OrgTechName: RIPE NCC Operations
OrgTechPhone: +31 20 535 4444
OrgTechEmail: hostmaster@ripe.net
OrgTechRef: http://whois.arin.net/rest/poc/RNO29-ARIN
OrgAbuseHandle: RNO29-ARIN
OrgAbuseName: RIPE NCC Operations
OrgAbusePhone: +31 20 535 444
OrgAbuseEmail: hostmaster@ripe.net
OrgAbuseRef: http://whois.arin.net/rest/poc/RNO29-ARIN
#
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: https://www.arin.net/whois_tou.html
#
Found a referral to whois.ripe.net:43.
% This is the RIPE Database query service.
% The objects are in RPSL format.
%
% The RIPE Database is subject to Terms and Conditions.
% See http://www.ripe.net/db/support/db-terms-conditions.pdf
% Note: this output has been filtered.
% To receive output for a database update, use the "-B" flag.
% Information related to '141.136.96.0 - 141.136.96.255'
inetnum: 141.136.96.0 - 141.136.96.255
netname: NACNET-EU
descr: Tinet International Network
descr: Hugenottenalle 167
descr: 63263 Neu-Isenburg
country: DE
remarks: INFRA-AW
admin-c: SE33-RIPE
tech-c: TIS333-RIPE
status: ASSIGNED PA
mnt-by: AS3257-NET-MNT
source: RIPE # Filtered
role: Tiscali International
address: Tinet SpA
address: Hugenottenallee 167
address: 63263 Neu-Isenburg
address: Germany
phone: +49 6102 8235381
fax-no: +49 6102 8235389
remarks: Information: http://www.tinet.net
remarks: Concerning abuse and spam ... mailto: abuse@tinet.net
abuse-mailbox: abuse@tinet.net
admin-c: SE33-RIPE
tech-c: TK333-RIPE
nic-hdl: TIS333-RIPE
remarks: hostmaster role account
mnt-by: AS3257-PERS-MNT
source: RIPE # Filtered
person: Sven Engelhardt
address: Hugenottenallee 167
address: 63263 Neu-Isenburg
address: Germany
phone: +49 6102 8235381
fax-no: +49 6102 8235389
nic-hdl: SE33-RIPE
remarks: PGP public key certificate object: PGPKEY-2B682C80
remarks: Internic: SE585
mnt-by: AS3257-PERS-MNT
source: RIPE # Filtered
% Information related to '141.136.96.0/20AS3257'
route: 141.136.96.0/20
descr: Tinet SpA
origin: AS3257
mnt-by: AS3257-ROUTE-MNT
source: RIPE # Filtered
% This query was served by the RIPE Database Query Service version 1.35 (WHOIS4)

root@joi-EX460-EX461:/home/joi# whois 193.27.64.114
% This is the RIPE Database query service.
% The objects are in RPSL format.
%
% The RIPE Database is subject to Terms and Conditions.
% See http://www.ripe.net/db/support/db-terms-conditions.pdf
% Note: this output has been filtered
% To receive output for a database update, use the "-B" flag.
% Information related to '193.27.64.0 - 193.27.65.255'
inetnum: 193.27.64.0 - 193.27.65.255
netname: GLOBALAXS-BACKBONE
descr: M247 Ltd
country: EU
org: ORG-GL37-RIPE
admin-c: GXS-RIPE
tech-c: GXS-RIPE
status: ASSIGNED PI
mnt-by: RIPE-NCC-END-MNT
mnt-lower: RIPE-NCC-END-MNT
mnt-by: GLOBALAXS-MNT
mnt-routes: GLOBALAXS-MNT
mnt-domains: GLOBALAXS-MNT
source: RIPE # Filtere
organisation: ORG-GL37-RIPE
org-name: M247 Ltd
org-type: LIR
address: M247 Ltd Chris Byrd 1 Ball Green, Cobra Court M32 0QT Manchester UNITED KINGDOM
phone: +441616151272
fax-no: +441618655763
mnt-ref: RIPE-NCC-HM-MNT
mnt-ref: GLOBALAXS-MNT
mnt-by: RIPE-NCC-HM-MNT
admin-c: MJ3986-RIPE
admin-c: CB2407-RIPE
admin-c: SA3083-RIPE
admin-c: JB3482-RIPE
source: RIPE # Filtered
role: GLOBALAXS OC
remarks: M247 - Netork Management Centre
address: 1 Ball Green, Cobra Court
address: M32 0QT, Manchester - United Kingdom
admin-c: SA3083-RIPE
tech-c: SA3083-RIPE
tech-c: MJ3986-RIPE
tech-c: ATG85-RIPE
nic-hdl: GBXS-RIPE
abuse-mailbox: noc@globalaxs.com
mnt-by: GLOBALXS-MNT
source: RIPE # Filtered
% Information related to '19.27.64.0/23AS9009'
route: 193.27.64.0/23
descr: Globalaxs International Backbone
origin: AS9009
mnt-by: GLOBALAXS-MNT

source: RIPE # Filtered
% This query was served by the RIPE Database Query Service version 1.35 (WHOIS2)

root@joi-EX460-EX461:/home/joi# whois 77.243.185.121
% This is the RIPE Database query service.
% The objects are in RPSL format.
%
% The RIPE Database is subject to Terms and Conditions.
% See http://www.ripe.net/db/support/db-terms-conditions.pdf
% Note: this output has been filtered.
% To receive output for a database update, use the "-B" flag.
% Information related to '77.243.185.0 - 77.243.185.255'
inetnum: 77.243.185.0 - 77.243.185.255
netname: GBXS-MANCHESTER-SERVICES
descr: Manchester Services
country: GB
admin-c: GBXS-RIPE
tech-c: GBXS-RIPE
status: ASSIGNED PA
mnt-by: GLOBALAXS-MNT
mnt-lower: GLOBALAXS-MNT
mnt-routes: GLOBALAXS-MNT
source: RIPE # Filtered


role: GLOBALAXS NOC
remarks: M247 - Network Management Centre
address: 1 Ball Green, Cobra Court
address: M32 0QT, Manchester - United Kingdom
admin-c: SA3083-RIPE
tech-c: SA3083-RIPE
tech-c: MJ3986-RIPE
tech-c: ATG85-RIPE
nic-hdl: GBXS-RIPE
abuse-mailbox: noc@globalaxs.com
mnt-by: GLOBALAXS-MNT
source: RIPE # Filtered
% Information related to '77.243.176.0/20AS9009'
route: 77.243.176.0/20
descr: GlobalAXS Communications International backbone
descr: Internet Provider
origin: AS9009
mnt-by: GLOBALAXS-MNT
source: RIPE # Filtered
% This query was served by the RIPE Database Query Service version 1.35 (WHOIS4)


root@joi-EX460-EX461:/home/joi# whois 77.243.185.133
% This is the RIPE Database query service.
% The objects are in RPSL format.
%
% The RIPE Database is subject to Terms and Conditions.
% See http://www.ripe.net/db/support/db-terms-conditions.pdf
% Note: this output has been filtered.
% To receive output for a database update, use the "-B" flag.
% Information related to '77.243.185.0 - 77.243.185.255'
inetnum: 77.243.185.0 - 77.243.185.255
netname: GBXS-MANCHESTER-SERVICES
descr: Manchester Services
country: GB
admin-c: GBXS-RIPE
tech-c: GBXS-RIPE
status: ASSIGNED PA
mnt-by: GLOBALAXS-MNT
mnt-lower: GLOBALAXS-MNT
mnt-routes: GLOBALAXS-MNT
source: RIPE # Filtered
role: GLOBALAXS NOC
remarks: M247 - Network Management Centre
address: 1 Ball Green, Cobra Court
address: M32 0QT, Manchester - United Kingdom
admin-c: SA3083-RIPE
tech-c: SA3083-RIPE
tech-c: MJ3986-RIPE
tech-c: ATG85-RIPE
nic-hdl: GBXS-RIPE
abuse-mailbox: noc@globalaxs.com
mnt-by: GLOBALAXS-MNT
source: RIPE # Filtered
% Information related to '77.243.176.0/20AS9009'
route: 77.243.176.0/20
descr: GlobalAXS Communications International backbone
descr: Internet Provider
origin: AS9009
mnt-by: GLOBALAXS-MNT
source: RIPE # Filtered
% This query was served by the RIPE Database Query Service version 1.35 (WHOIS4)

root@joi-EX460-EX461:/home/joi# whois 176.10.80.142

% This is the RIPE Database query service.
% The objects are in RPSL format.
%
% The RIPE Database is subject to Terms and Conditions.
% See http://www.ripe.net/db/support/db-terms-conditions.pdf
% Note: this output has been filtered.
% To receive output for a database update, use the "-B" flag.

% Information related to '176.10.80.0 - 176.10.87.255'
inetnum: 176.10.80.0 - 176.10.87.255
netname: EU-GBXS-20110518
descr: M247 Ltd
country: EU
org: ORG-GL37-RIPE
admin-c: GBXS-RIPE
tech-c: GBXS-RIPE
status: ALLOCATED PA
mnt-by: RIPE-NCC-HM-MNT
mnt-lower: GLOBALAXS-MNT
mnt-routes: GLOBALAXS-MNT
mnt-domains: GLOBALAXS-MNT
source: RIPE # Filtered
organisation: ORG-GL37-RIPE
org-name: M247 Ltd
org-type: LIR
address: M247 Ltd Chris Byrd 1 Ball Green, Cobra Court M32 0QT Manchester UNITED KINGDOM
phone: +441616151272
fax-no: +441618655763
mnt-ref: RIPE-NCC-HM-MNT
mnt-ref: GLOBALAXS-MNT
mnt-by: RIPE-NCC-HM-MNT
admin-c: MJ3986-RIPE
admin-c: CB2407-RIPE
admin-c: SA3083-RIPE
admin-c: JB3482-RIPE
source: RIPE # Filtered
role: GLOBALAXS NOC
remarks: M247 - Network Management Centre
address: 1 Ball Green, Cobra Court
address: M32 0QT, Manchester - United Kingdom
admin-c: SA3083-RIPE
tech-c: SA3083-RIPE
tech-c: MJ3986-RIPE
tech-c: ATG85-RIPE
nic-hdl: GBXS-RIPE
abuse-mailbox: noc@globalaxs.com
mnt-by: GLOBALAXS-MNT
source: RIPE # Filtered
% Information related to '176.10.80.0/21AS9009'
route: 176.10.80.0/21
descr: M247 Ltd International IP Backbone
origin: AS9009
pingable: 176.10.80.10
mnt-by: GLOBALAXS-MNT
source: RIPE # Filtered
% This query was served by the RIPE Database Query Service version 1.35 (WHOIS1)







Hasil traceroute ketiga web saya seperti dibawah ini:


Share

Twitter Delicious Facebook Digg Stumbleupon Favorites