Senin, 21 November 2011

Belajar Open BTS

Sudah sangat lama tidak posting lagi nih, kali ini mumpung ngikut acara lesehan workshop di Gedung BPPT pada Sabtu tanggal 12 November 2011 saya sekali lagi ingin sharing knowledge.
Acara yang digagas oleh Ristek ini diisi oleh Pakar IT Tersohor Bp. Onno W Purbo dan rekan-rekan dari komunitas Air Putih yang dikomando sama mas Akhmat Safrudin atau biasa dipanggil Mas Somat dimana komunitas ini punya pengalaman recovery desaster di Indonesia terutama urusan infrastrukur jaringan telekomunikasi darurat yang dikenal dengan sebutan Open BTS dan.
Daripada berlama-lama langsung saja kita santap sajian ilmunya.


Acara ini pada awalnya dibagi menjadi 3 sesi:
1. Sesi perkenalan (Apa itu Open BTS?)
2. Demo session
3. Instalasi dan konfigurasinya

Open BTS sendiri sebenarnya perkembangnnya di dunia penggiat IT sudah cukup lama tapi untuk di Indonesia ini masih tergolong baru. Pak Onno sendiri pertama kali sedangkan Air Putih baru melakukan kajian dan riset Open BTS pada awal 2011 jadi sangat cocok dijadikan bahan Tugas Akhir kuliah (ane juga mau buat TA ini he...)



Apa sih OpenBTS itu?

OpenBTS adalah aplikasi BTS (Base Transceiver Station) yang berjalan pada platform linux dan merupakan perangkat lunak terbuka. OpenBTS menggunakan sebuah perangkat keras yang bernama USRP (Universal Software Radio Peripheral). Perangkat inilah yang menghubungkan openBTS dengan jaringan standar telepon selular (GSM). OpenBTS juga menggunakan perangkat lunak terbuka asterisk untuk menginterkoneksikan dengan jaringan telepon lainnya seperti PSTN (Public Switched Telephone Network) ataupun operator telekomunikasi lainnya dengan menggunakan VoIP (Voice over IP).

Atau dengan kata lain:
OpenBTS (Open Base Transceiver Station) adalah sebuah BTS GSM berbasis software, yang memungkinkan handphone GSM untuk menelepon tanpa menggunakan jaringan operator selular. OpenBTS dikenal sebagai implementasi open source pertama dari protokol standard industri GSM.
Perkiraan harga sekitar Rp. 15-25 juta / buah, jauh di bawah BTS Selular biasa yang biasanya dalam orde ratusan juta hingga beberapa Milyard rupiah.
(sumber : http://opensource.telkomspeedy.com/wiki/index.php/OpenBTS )
Buat apa Open BTS?

Rencananya sih, kalau memungkinkan, mereka, teman-teman di AirPutih berkeinginan untuk menerapkan ini di wilayah bencana dan sudah pernah dilakukan pada saat Bencana Mentawai. karena dari pengamatan AirPutih, pada saat terjadi bencana (khususnya gempa bumi)  sering sekali telekomunikasi suara (selular) tidak berfungsi dengan baik (kalo gak boleh dibilang mati). Hal ini bisa disebabkan tower/BTS yang rubuh, tidak adanya pasokan listrik atau juga karena gangguan telekomunikasi lainnya. Dan menurut kami, OpenBTS bisa jadi alternatif telekomunikasi darurat di wilayah bencana.


Arsitektur jaringan GSM VS Open BTS

Arsitektur GSM


Arsitektur Open BTS

Software untuk Open BTS:

Menurut @ kala itu menerangkan bahwa dia memakai Blankon Linux, namun tidak terbatas dengan Blankon, distro linux lainnya pun bisa. dan intinya menggunakan Open BTS dengan OS yang berjalan pada platform Linux. Dan perangkat lunak untuk mendevelop Open BTS adalah:
  1. GNU Linux
  2. Asterisk
  3. Boost
  4. GNU Radio
  5. GSL
  6. Kal
  7. Libopsip2
  8. Open BTS
  9. SDCC
 Untuk mempermudah silahkan kunjungi http://opensource.telkomspeedy.com/wiki/index.php/GNURadio:_Ubuntu_Install untuk installasi open BTS di Ubuntu. Juga sila unduh materi presentasi saat itu di sini.

Nah berikut step-step melakukan persiapan instalasi dan konfigurasi Open BTS dari Air Putih:

Perangkat Keras
1. USRP (Perangat utama)



2. CPU

Perangkat Lunak
Perangkat Lunak dan Versi
1 GNU/Linux -
2 Asterisk 1.4.21
3 Boost 1.44.0
4 GNURadio 3.2.2
5 Gsl 1.10
6 Kal 0.2
7 Libosip2 3.3.0
8 OpenBTS 2.6.0 Mamou
9 SDCC (Source) 2.9.0

Pemasangan
● Instalasi GNU Radio
● Uji Coba GNU Radio
● Instalasi OpenBTS
● Konfigurasi OpenBTS Asterisk dan Smqueue
● Mengoperasikan OpenBTS

GNU Radio
● Instalasi Boost
$ ./bootstrap.sh --show-libraries
$ ./bootstrap.sh --with-libraries=thread,date_time,program_options
$ ./bjam --prefix=/opt/boost_1_44_0
$ ./bjam --prefix=/opt/boost_1_44_0 install
● Instalasi SDCC
● Instalasi GSL

GNU Radio (2)
● Instalasi Pustaka Pendukung
$ sudo apt-get install python-numpy python-qt4 libqwt5-qt4-dev qt4-dev-tools python-qwt3d-qt4 libqwtplot3d-qt4-dev python-qt4-dev libxt-dev libaudio-dev libpng-dev libxidev libxrender-dev libxrandr-dev libfreetype6-dev libfontconfig-dev python-lxml python-cheetah oss-compat
swig g++ automake1.9 libtool libusb-dev libsdl1.2-dev python-wxgtk2.8 guile-1.8-dev libqt4-dev python-opengl fftw3-dev

GNU Radio (3)
● Instalasi GNU Radio
● $ export LD_LIBRARY_PATH=/opt/boost_1_44_0/lib:
● $ ./configure --with-boost=/opt/boost_1_44_0 --disable-all-components --enableusrp --enable-omnithread --enable-mblock --enable-pmt --enable-gnuradioexamples --enable-docs --enable-doxygen --enable-gnuradio-core --enable-grwxgui --enable-gruel --enable-gr-utils --enable-gr-usrp
● $ make
● $ sudo make install
● $ sudo addgroup usrp
● $ sudo adduser <user-yang-akan-digunakan-untuk-menjalankan-openbts> usrp
● $ sudo vim /etc/udev/rules.d/10-usrp.rules
ACTION=="add", BUS=="usb", SYSFS{idVendor}=="fffe", SYSFS{idProduct}=="0002", GROUP:="usrp", MODE:="0660"

Uji GNU Radio
● Uji Koneksi USB
$ export LD_LIBRARY_PATH=/opt/boost_1_44_0/lib:
$ cd /usr/local/share/gnuradio/examples/usrp
$ ./usrp_benchmark_usb.py
● Uji Respon USRP dan Frekuensi
$ export LD_LIBRARY_PATH=/opt/boost_1_44_0/lib:
$ usrp_siggen.py -f 1783.8M
$ usrp_fft.py -f 1.7838G & Using TX d’board A: Flex 1800 Tx MIMO B uU

Instalasi OpenBTS
● Memasang Libosip2
● Memasang Libortp7
$ sudo apt-get install libortp7-* asterisk
● Compile OpenBTS
$ ln -s /opt/boost_1_44_0/include/boost /usr/local/include/boost
Patch
Configure – make – make install
● Compile smqueue

OpenBTS Setting
● OpenBTS
● Setting log
● Setting Path Tranceiver
● Setting MCC MNC
● Setting GSM Band and Channel

Asterisk Setting (1)
● Asterisk
● Setting Dialplan
[macro-dialSIP]
exten => s,1,Dial(SIP/${ARG1})
exten => s,2,Goto(s-${DIALSTATUS},1)
exten => s-CANCEL,1,Hangup
exten => s-NOANSWER,1,Hangup
exten => s-BUSY,1,Busy(30)
exten => s-CONGESTION,1,Congestion(30)
exten => s-CHANUNAVAIL,1,playback(ss-noservice)
exten => s-CANCEL,1,Hangup
[sip-local]
exten => 2102,1,Macro(dialSIP,IMSI123456789012345)
exten => 2103,1,Macro(dialSIP,IMSI098765432123456)

Asterisk Setting (2)
● Asterisk
● Setting SIP
[IMSI123456789012345]
canreinvite=no
type=friend
context=sip-external
allow=gsm
host=dynamic

Smqueue Setting (untuk SMS)
● Nonaktifkan IPV6
● Ubah berkas
smqueue/smqueue.config
Tambahkan :
Log.Alarms.Max 10
● Tambahkan berkas savedqueue.txt

Jalankan!
$ cd openbts-2.6.0Mamou/apps/
$ ./OpenBTS
Merdeka! \0/

http://makeitfossible.web.id
http://airputih.or.id

Gambar Open BTS (milik Yayasan Air Putih)

Open BTS ilmunya bisa juga dipelajari dibawah ini:
Continue reading }}

Selasa, 04 Oktober 2011

Desain Sistem PLC 1 Arah

Wah ane baru pertama kali belajar PLC untuk mata kuliah kapita selekta udah dikasih tugas aja.
Ni bro tugas PLC ane bersama tim ane, semoga bermanfaat:  


Power Line Communication (PLC) atau komunikasi melalui kabel listrik, juga dikenal sebagai Power Line Digital Subscriber Line (PDSL), mains communication, Power Line Telecom (PLT), Power Line Networking (PLN), atau Broadband over Power Lines (BPL) adalah sistem untuk membawa data pada konduktor yang juga digunakan untuk transmisi tenaga listrik. Sehingga jaringan listrik selain berfungsi sebagai sumber listrik juga menjadi media penghantar komunikasi.
Daya listrik ditransmisikan melalui jalur transmisi tegangan tinggi, yang didistribusikan melalui tegangan menengah, dan digunakan di dalam gedung pada tegangan rendah. PLC dapat diterapkan pada setiap tahap. Kebanyakan teknologi PLC membatasi diri untuk satu set kabel (misalnya, kabel tempat), tetapi beberapa dapat silang antara dua tingkat (misalnya, baik jaringan distribusi dan kabel tempat).Biasanya trafo mencegah menyebarkan sinyal yang memungkinkan beberapa teknologi PLC dijembatani untuk membentuk jaringan yang sangat besar.





Bagian utama sistem komunikasi menggunakan PLC adalah sebagai berikut :
1. Bagian pemancar (transmitter).
Sinyal informasi berupa sinyal analog maupun digital ditumpangkan ke sinyal pembawa melalui teknik modulasi sehingga dihasilkan sinyal pembawa termodulasi (sinyal lolos pita), kemudian diperkuat untuk dipancarkan melalui media transmisi saluran distribusi daya.
2. Rangkaian gandengan (line coupling)
Rangkaian gandengan terdiri atas kapasitor gandengan yang berfungsi untuk mengisolasi peralatan komunikasi dari tegangan jala-jala listrik. Fungsi ini dipenuhi dengan memberikan impedansi rendah ke frekuensi pembawa dan memberikan impedansi tinggi pada frekuensi jala-jala listrik. Rangkaian yang kedua berupa penala jalur yang berfungsi mengkompensasi reaktan kapasitif dan sebagai penyesuaian impedansi antara saluran daya atau jala-jala listrik dengan peralatan komunikasi.
3. Media transmisi
Berupa kabel saluran transmisi daya atau jala-jala listrik yang digunakan sebagai antena pada sistem komunikasi melalui saluran distribusi daya.
4. Bagian penerima (receiver)
Melakukan penguraian atau pendemodulasian sinyal pembawa termodulasi yang diterima dimana teknik yang digunakan sama dengan di pemancar serta melakukan sinkronisasi antara pemancar dan penerima dengan jalan pemulihan sinyal pembawa yang diterima sehingga diperoleh kembali sinyal informasi yang dikirimkan. Dalam distribusi daya yang perlu diperhatikan adalah bagaimana menyalurkan energi listrik dengan rugirugi sekecil mungkin, sedangkan dalam sistem komunikasi yang perlu diperhatikan adalah bagaimana informasi yang dikirim dapat diterima dengan kualitas yang baik.
KONSEP DASAR
Suara dihasilkan oleh getaran suatu benda. Selama bergetar, perbedaan tekanan terjadi di udara sekitarnya. Pola osilasi yang terjadi dinamakan sebagai “GELOMBANG”. Gelombang mempunyai pola sama yang berulang pada interval tertentu, yang disebut sebagai “PERIODE”.

FREKUENSI
- Banyaknya periode
- Banyaknya periode dalam 1 detik
- Satuan : Hertz (Hz) atau cycles per second (cps)
- Panjang gelombang suara (wavelength) dirumuskan = c/f

Dimana c = kecepatan rambat bunyi
Dimana f = frekuensi

Berdasarkan frekuensi, suara dibagi menjadi:
Infrasound 0Hz – 20 Hz
Pendengaran manusia 20Hz – 20 KHz
Ultrasound 20KHz – 1 GHz
Hypersound 1GHz – 10 THz
Manusia membuat suara dengan frekuensi : 50Hz – 10KHz.
Sinyal suara musik memiliki frekuensi : 20Hz – 20Khz.


Frekuensi suara 300 Hz – 3800 Hz
Frekuensi suara manusia memang standarnya sekitar 300 Hz (suara normal, biasanya setelah digabungkan dengan microphone). Suara adalah fenomena fisik yang dihasilkan oleh getaran benda atau getaran suatu benda yang berupa sinyal analog dengan amplitudo yang berubah secara kontinyu terhadap waktu. Suara berhubungan erat dengan rasa “mendengar”. Suara/bunyi biasanya merambat melalui udara. Suara/bunyi tidak bisa merambat melalui ruang hampa.

VCO / Voltage Controller Oscilator
Osilator  terkendali  tegangan  (Voltage Controlled  Oscillator  –  VCO)  merupakan  rangkaian pembangkit  frekuensi  dimana  frekuensi  keluarannya dapat  diatur  oleh  tegangan  masukan.  VCO  dapat digunakan untuk membangkitkan gelombang radio yang termodulasi  frekuensi  (FM).  Rangkaian  dasar  VCO yang  menggunakan  osilator  masukan-tertala  (tuned-input oscillator) diperlihatkan pada Gambar:



Voltage Controlled Oscillator / VCO digunakan sebagai modulator FM, karena merupakan osilator yang frekuensinya  dapat  diubah/dimodulasi  oleh  suatu tegangan masukan.  Dalam  perancangan  ini  modulator frekuensi  yang  digunakan  adalah  IC  LM566C  yang merupakan  rangkaian  terintegrasi  dari  VCO,  seperti diperlihatkan pada Gambar:

Modulasi adalah proses perubahan (varying) suatu gelombang periodik sehingga menjadikan suatu sinyal mampu membawa suatu informasi.

Demodulasi adalah proses suatu sinyal modulasi yang dibentuk kembali seperti aslinya dari suatu gelombang pembawa (carrier wave) yang termodulasi oleh rangkaian

Filter sirkuit dibutuhkan untuk meredam noise 50 Hz dan setiap frekuensi yang bukan bagian dari audio yang ditransmisikan.

Blok Diagram PLC


Design overview:

Modulation circuit:


Keterangan circuit modulasi:
-             VCO yang digunakan untuk tujuan modulasi adalah LM565.




Rt = Timing Resistance on pin 8.
Ct = Timing Capacitance on 9.
Vcc = Power Supply Voltage.
Vc = The control voltage on Pin 7.

Demodulation circuit:

Keterangan demodulasi:

  1. LM565 digunakan untuk mengimplementasikan VCO / Voltage Controller Ossilator
  2. Sinyal input digabungkan ke dalam rangkaian melalui ke pin kedua
  3. Sebuah jaringan yang lebih rumit dari komponen pada output untuk
    tujuan pengurangan kebisingan.
  4. Potensiometer digunakan untuk mencocokkan frekuensi pembawa arus
    frekuensi.

FILTER: 
Keterangan gambar Filter:

-         Noise minimal di atas 10kHz
-         HPF standar implementasi.
 


Keterangan Perangkat / Komponen:
1. LM 565 :






2. Potensiometer 







3. Desain speaker 8 Ohm












4. Mic Condensor 












(Group Telkom)
Continue reading }}

Kamis, 29 September 2011

Konfig Router Basic OSPF - VLAN - DHCP



KONFIG ROUTER BOGOR

Router>ena
Router#conf t
Router(config)#hostname BOGOR       --à Memberi nama Router                               
(config)# enable secret cisco --> utk set password utk masuk privileged mode (passwordnya : cisco)
(config)#no ip domain-lookup -à untuk menghilangkan loading verifikasi sintaks yg salah

(config)# line vty 0 4
(config-line)# password semangat
(config-line)# login   
(config-line)# exec-timeout 5 0
(config-line)# logging synchronous --> agar prompt muncul lagi ketika ada logging

BOGOR (config)#int se0/0       -> interface ke arah WAN
BOGOR (config-if)#ip add 172.16.2.2 255.255.255.252                    
BOGOR (config-if)#description KONEKSI KE ROUTER JAKARTA
BOGOR (config-if)#no shut
BOGOR (config-if)#clock rate 64000
BOGOR (config-if)#ex

BOGOR (config)#int Fa1/1
BOGOR (config-if)#no ip add
BOGOR (config-if)#no shut
BOGOR (config-if)#ex
 
BOGOR (config)#interface FastEthernet1/1.10
BOGOR (config-subif)#encapsulation dot1Q 10
BOGOR (config-subif)#ip address 192.168.30.1 255.255.255.240      à SET IP GW LAN 1
BOGOR (config-subif)# description LINK KE LAN 1

BOGOR (config)#interface FastEthernet1/1.20
BOGOR (config-subif)# encapsulation dot1Q 20
BOGOR (config-subif)# ip address 192.168.40.1 255.255.255.240  à SET IP GW LAN 2
BOGOR (config-subif)# description LINK KE LAN 2

Jika kita ingin membuat IP DHCP di Segment LAN, maka kita perlu menambahkan command berikut :

Ket : dns-server : bisa juga di isikan DNS Public

BOGOR (config)#ip dhcp pool LAN1
BOGOR (dhcp-config)#network 192.168.30.0 255.255.255.240
BOGOR (dhcp-config)#dns-server 192.168.30.1
BOGOR (dhcp-config)#default-router 192.168.30.1
BOGOR (dhcp-config)#exit

BOGOR (config)#ip dhcp pool LAN2
BOGOR (dhcp-config)#network 192.168.40.0 255.255.255.240
BOGOR (dhcp-config)#dns-server 192.168.40.1
BOGOR (dhcp-config)#default-router 192.168.40.1
BOGOR (dhcp-config)#exit

ROUTING OSPF BOGOR

BOGOR (config)#router ospf 100
BOGOR (config-router)#network 172.16.2.0 0.0.0.3 area 0
BOGOR (config-router)#network 192.168.30.0 0.0.0.15 area 0
BOGOR (config-router)#network 192.168.40.0 0.0.0.15 area 0

Lalu kita setting switchnya, langkah-langkahnya sebagai berikut :
Definisikan Vlan :

Switch#vlan database
Switch(vlan)#vlan 10 name LAN 1
Switch(vlan)#vlan 20 name LAN 2

Delegasikan port untuk mengakses tiap-tiap Vlan yang sudah didefinisikan :

Switch>enable
Switch#configure terminal
Switch(config)#interface fa0/1 -> Menuju router
Switch(config-if)#switchport mode trunk
Switch(config-if)#exit

Switch(config)#interface fa0/2 -> Menuju LAN 1
Switch(config-if)#switchport access vlan 10
Switch(config-if)#exit

Switch(config)#interface fa0/3 -> Menuju LAN 2
Switch(config-if)#switchport access vlan 20
Switch(config-if)#exit
-------------
KONFIG ROUTER BANDUNG

Router>en
Router#conf t
Router(config)#hostname BANDUNG

BANDUNG (config)#int Fa0/0
BANDUNG (config-if)#ip add 172.16.1.1 255.255.255.252
BANDUNG (config-if)#description LINK KE ROUTER JAKARTA
BANDUNG (config-if)#no shut
BANDUNG (config-if)#ex

BANDUNG (config)#int fa1/1
BANDUNG (config-if)#ip add 192.168.10.1 255.255.255.0
BANDUNG (config-if)#description LINK KE LAN BANDUNG
BANDUNG (config-if)#no shut
BANDUNG (config-if)#ex

ROUTING OSPF BANDUNG

BANDUNG (config)#router ospf 100
BANDUNG (config-router)#network 172.16.1.0 0.0.0.3 area 0
BANDUNG (config-router)#network 192.168.10.0 0.0.0.255 area 0
BANDUNG (config-router)#exit
-------------------------
KONFIG ROUTER JAKARTA

Router>en
Router#conf t
Router(config)#hostname JAKARTA

JAKARTA (config)#int se0/1
JAKARTA (config-if)#ip add 172.16.2.1 255.255.255.252
JAKARTA (config-if)#description LINK KE ROUTER BOGOR
JAKARTA (config-if)#no shut
JAKARTA (config-if)#ex

JAKARTA (config)#int fa1/0
JAKARTA (config-if)#ip add 172.16.1.2 255.255.255.252
JAKARTA (config-if)#description LINK KE ROUTER BANDUNG
JAKARTA (config-if)#no shut
JAKARTA (config-if)#ex

JAKARTA (config)#int fa1/1
JAKARTA (config-if)#ip add 192.168.20.0 255.255.255.0
JAKARTA (config-if)#description LINK KE LAN JAKARTA
JAKARTA (config-if)#no shut
JAKARTA (config-if)#ex

ROUTING OSPF JAKARTA

JAKARTA (config)#router ospf 100
JAKARTA (config-router)#network 172.16.2.0 0.0.0.3 area 0
JAKARTA (config-router)#network 192.168.20.0 0.0.0.255 area 0
JAKARTA (config-router)#network 172.16.1.0 0.0.0.3 area 0
JAKARTA (config-router)#exit
Continue reading }}

Sabtu, 20 Agustus 2011

Telkom Polytechnic Engineer On Site

Asslamu'alaykum wr.wb.

Sejak di wisudanya angkatan pertama kampus Politeknik Telkom pada akhir bulan Oktober 2010 lalu, banyak para lulusannya telah mendapatkan pekerjaan. Sampai saat ini lebih dari 30 orang telah bekerja sebagai outsourcing di salah satu perusahaan telekomunikasi terbesar di Indonesia. Meskipun terdaftar sebagai karyawan tidak tetap/outsource tetapi dukungan dari lingkungan yang nyaman, rekan kerja yang kooperate, bidang pekerjaan yang sesuai apalagi kalo ditanya soal gaji ya mungkin bisa dikatakan gaji outsource nya diatas rata2 dari yang lain deh. (sori gak bisa bilang nominal). 

Nah langsung saja tanpa berlama2 berikut ini saya mau menginformasikan teman2 kita yang sudah menjadi Telkom Engineer On Site (EOS):
1. Firman Anggoro 
Data Fakta:
- Tinggalnya di Solo
- (IPK Tertinggi sekampus poltek lho / Cumlaude)
- Jurusan Teknik Komputer 2007
- Dulu aktif organisasi di LSYAMI, Masternya asprak Jarkom dan Siskom dan Mantan ketua BM (Badan Mentoring)

- Mendapatkan Amanah di Bank BNI 46.
 2. Havis Maulana
Data Fakta:
- Punya rumah di Kuningan

- (IPK tinggi juga sekampus poltek lho / kaykanya sih Cumlaude)
- Jurusan Teknik Komputer 2007
- Dulu gak aktif di organisasi, Jagoan asprak Jarkom dan Siskom juga.

- Mendapatkan Amanah di Carrefour, Orange (Perusahaan asing), dll

3. Irfan Irawan

Data Fakta:
- Asli orang Cirebon

- (IPK tinggi juga dikampus poltek lho / pasti Cumlaude)
- Jurusan Teknik Komputer 2007
- Dulu aktif di LSYAMI, Jagoan asprak Jarkom, Siskom juga Netadmin.

- Mendapatkan Amanah untuk Bank ANZ.


4. Deny Al Arsyad (mantan koordinator tim ane dulu)

Data Fakta:
- Asli orang Bogor (dulu kekantor sering naik KRL ckck...)

- (IPK tinggi juga dikampus poltek lho / kayaknya Cumlaude)
- Jurusan Sistem Informasi 2007
- Klo organisasi kurang tau ane.

- Mendapatkan Amanah untuk Bank MANDIRI.


5. Arik Kurniawan is called si Jawa

Data Fakta:
- Asli orang air harum alias Banyuwangi

- (IPK tinggi juga dikampus poltek lho / kayaknya Cumlaude)
- Jurusan Sistem Informasi 2007
- Klo organisasi kurang tau ane.

- Mendapatkan Amanah untuk TNI. wah klo gangguan gak kelar ancamannya di DORR...!! ckcckk (86 komandan!)
6. Lugas Faris Yuniar (Temen setim ane dulu)

Data Fakta:
- sama kaya Arik asli orang air harum alias Banyuwangi

- (IPK tinggi juga dikampus poltek lho / kayaknya Cumlaude)
- Jurusan Sistem Informasi 2007
- Klo organisasi kurang tau ane.

- Mendapatkan Amanah untuk Bank BCA.
7. Ishak Thalib

Data Fakta:
- Klo gak salah orang Makassar, tuh lhu sebelahnya danau toba wkwkwkwk... koplak

- (IPK tinggi juga dikampus poltek lho / kayaknya Cumlaude)
- Jurusan Sistem Informasi 2007
- Klo organisasi kurang tau ane.

- Mendapatkan Amanah untuk Bank CIMB NIAGA.
8. Gunawan (Bang Ustadz MNC)

Data Fakta:
- Asli orang Bekasi,

- (IPK tinggi juga dikampus poltek lho / Cumlaude)
- Jurusan Teknik Komputer 2007
- Nah klo dia ane tau, aktif di LSYAMI, BEM, KAMMI, apalagi ya oia dulu jagoannya Asprak Siskom, Jarkom juga

- Mendapatkan Amanah untuk MNC (katanya sering jumpa artis2 RCTI termasuk penyiar berita Aiman wicaksono ckckck... mau dong dikenalin, ataw masuk berita asal jangan berita kriminalitas aja.) selain itu juga kawasan industri bekasi dll.

9. Yasher Ramadhan (is called Ardhan)

Data Fakta:
- Klo gak salah orang depok,
- (IPK tinggi juga dikampus poltek lho / kayaknya Cumlaude)
- Jurusan Sistem Informasi 2007
- Klo organisasidi LSYAMI juga

- Mendapatkan Amanah untuk Bank BTPN dan Asuransi Pridensial.

10. Husni Habibie

Data Fakta:
- Klo gak salah orang Sunda, gak jelas sunda nya mana? (Garut?Tasik?sukabumi ahhh lieur...)

- (IPK tinggi juga dikampus poltek lho / kayaknya Cumlaude)
- Jurusan Sistem Informasi 2007
- Klo organisasi kurang tau ane.

- Mendapatkan Amanah untuk Bank PERMATA.

11.Alwin Bahari (heheh... ane sendiri)

Data Fakta:
- Lahir di Ternate, besar di Bantul, Jogja jadi gak jelas asli mana hahah koplak)

- (IPK alhamdulilah pas-pasan / pas cumlaude
- Jurusan Teknik Komputer 2007
- Klo organisasi hem.. dari LSYAMI sampai FOSMA aja.

- Mendapatkan Amanah untuk Bank MUAMALAT (paling beda soalnya Pertama Syariah ckck) dan British Petroleum Indonesia.

Nah itu tadi temen temen kita yang diamanahkan untuk mengawal gangguan layanan Telkom di Customer2 tersebut. Bwt mereka selamat bekerja semoga banyak ilmu yang diambil tidak cuma materi/piti. Dan yang utama jadikan pekerjaan kita sebagai bentuk pengabdian kita terhadap Allah SWT.

WHO IS THE NEXT???


To be continue...
Wassalamu'alaykum wr.wb

(Alwin-Kong)



Continue reading }}

Jumat, 19 Agustus 2011

Konfigurasi Router Cisco 4 (MPLS)

R-DPS#conf t
Enter configuration commands, one per line.  End with CNTL/Z.

R-DPS(config)#ip cef

R-DPS(config)#int s0/0
R-DPS(config-if)#mpls ip
R-DPS(config-if)#mpls label protocol ldp
R-DPS(config-if)#end
R-DPS#wr mem
Building configuration...
[OK]


R-DPS#sh mpls ldp discovery
 Local LDP Identifier:
    10.1.3.1:0
    Discovery Sources:
    Interfaces:
        Serial0/0 (ldp): xmit/recv
            LDP Id: 10.1.2.1:0; no host route
           
R-DPS#sh mpls ldp binding
  tib entry: 10.0.0.0/30, rev 8
        local binding:  tag: 18
        remote binding: tsr: 10.1.2.1:0, tag: imp-null
  tib entry: 10.0.0.4/30, rev 10
        local binding:  tag: imp-null
        remote binding: tsr: 10.1.2.1:0, tag: imp-null
  tib entry: 10.0.0.8/30, rev 2
        local binding:  tag: 16
        remote binding: tsr: 10.1.2.1:0, tag: imp-null
  tib entry: 10.1.2.0/24, rev 6
        local binding:  tag: 17
        remote binding: tsr: 10.1.2.1:0, tag: imp-null
  tib entry: 10.1.3.0/24, rev 4
        local binding:  tag: imp-null
        remote binding: tsr: 10.1.2.1:0, tag: 16
  tib entry: 10.1.4.0/24, rev 12
        local binding:  tag: 19
        remote binding: tsr: 10.1.2.1:0, tag: 17
       
R-DPS#sh mpls forwarding-table
Local  Outgoing    Prefix            Bytes tag  Outgoing   Next Hop   
tag    tag or VC   or Tunnel Id      switched   interface             
16     Pop tag     10.0.0.8/30       0          Se0/0      point2point 
17     Pop tag     10.1.2.0/24       0          Se0/0      point2point 
18     Pop tag     10.0.0.0/30       0          Se0/0      point2point 
19     17          10.1.4.0/24       0          Se0/0      point2point 
20     18          10.1.1.0/24       0          Se0/0      point2point 
21     19          10.0.0.12/30      0          Se0/0      point2point 
22     20          10.0.0.16/30      0          Se0/0      point2point 
23     21          10.0.0.20/30      0          Se0/0      point2point 
24     22          10.1.5.0/24       0          Se0/0      point2point 
25     23          10.1.6.0/24       0          Se0/0      point2point 
26     24          10.1.7.0/24       0          Se0/0      point2point 

R-DPS#sh ip cef 10.1.7.0 detail
10.1.7.0/24, version 85, epoch 0, cached adjacency to Serial0/0
0 packets, 0 bytes
  tag information set
    local tag: 26
    fast tag rewrite with Se0/0, point2point, tags imposed: {24}
  via 10.0.0.5, Serial0/0, 0 dependencies
    next hop 10.0.0.5, Serial0/0
    valid cached adjacency
    tag rewrite with Se0/0, point2point, tags imposed: {24}
Continue reading }}

Konfigurasi Router Cisco 3 (BGP)

R-DPS(config-if)#no mpls la
R-DPS(config-if)#no mpls label prot
R-DPS(config-if)#no mpls label protro
R-DPS(config-if)#no mpls label prot 
R-DPS(config-if)#no mpls label protocol ldp
R-DPS(config-if)#end
R-DPS#sh run int s0/0
Building configuration...

Current configuration : 161 bytes
!
interface Serial0/0
 description *** interface yang terhubung ke router lain ***
 bandwidth 2048
 ip address 10.0.0.6 255.255.255.252
 clock rate 2000000
end

R-DPS#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R-DPS(config)#no router eigrp 65000
R-DPS(config)#end
R-DPS#sh run int s0/0
Building configuration...

Current configuration : 161 bytes
!
interface Serial0/0
 description *** interface yang terhubung ke router lain ***
 bandwidth 2048
 ip address 10.0.0.6 255.255.255.252
 clock rate 2000000
end

R-DPS#sh run int s0/0
Building configuration...

Current configuration : 161 bytes
!
interface Serial0/0
 description *** interface yang terhubung ke router lain ***
 bandwidth 2048
 ip address 10.0.0.6 255.255.255.252
 clock rate 2000000
end

R-DPS#sh run int f0/0
Building configuration...

Current configuration : 110 bytes
!
interface FastEthernet0/0
 bandwidth 100000
 ip address 10.1.3.1 255.255.255.0
 speed 100
 full-duplex
end

R-DPS#sh ip int brief
Interface                  IP-Address      OK? Method Status                Protocol
FastEthernet0/0            10.1.3.1        YES NVRAM  up                    up     
Serial0/0                  10.0.0.6        YES NVRAM  up                    up     
FastEthernet0/1            unassigned      YES NVRAM  administratively down down   
R-DPS#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R-DPS(config)#ro
R-DPS(config)#router ei
R-DPS(config)#router eigrp 65001
R-DPS(config-router)#net
R-DPS(config-router)#network 10.0.0.0
R-DPS(config-router)#no aut
R-DPS(config-router)#no auto-summary
R-DPS(config-router)#pass
R-DPS(config-router)#passive-interface fa0/0
R-DPS(config-router)#q
                     ^
% Invalid input detected at '^' marker.

R-DPS(config-router)#exit
R-DPS(config)#router bg
R-DPS(config)#router bgp 65001
R-DPS(config-router)#neig
R-DPS(config-router)#neighbor 10.0.0.5 mask 255.255.255.252
                                         ^
% Invalid input detected at '^' marker.

R-DPS(config-router)#neighbor 10.0.0.5 net 255.255.255.252
R-DPS(config-router)#neighbor 10.0.0.5 net 255.255.255.252
                                         ^
% Invalid input detected at '^' marker.

R-DPS(config-router)#neighbor 10.0.0.5 ?                 
  activate                 Enable the Address Family for this Neighbor
  advertise-map            specify route-map for conditional advertisement
  advertisement-interval   Minimum interval between sending BGP routing updates
  allowas-in               Accept as-path with my AS present in it
  capability               Advertise capability to the peer
  default-originate        Originate default route to this neighbor
  description              Neighbor specific description
  disable-connected-check  One-hop away EBGP peer using loopback address
  distribute-list          Filter updates to/from this neighbor
  dmzlink-bw               Propagate the DMZ link bandwidth
  ebgp-multihop            Allow EBGP neighbors not on directly connected networks
  fall-over                session fall on peer route lost
  filter-list              Establish BGP filters
  inherit                  Inherit a template
  local-as                 Specify a local-as number
  maximum-prefix           Maximum number of prefixes accepted from this peer
  next-hop-self            Disable the next hop calculation for this neighbor
  next-hop-unchanged       Propagate the iBGP paths's next hop unchanged for this neighbor
  password                 Set a password
  peer-group               Member of the peer-group
  prefix-list              Filter updates to/from this neighbor
  remote-as                Specify a BGP neighbor
  remove-private-as        Remove private AS number from outbound updates
  route-map                Apply route map to neighbor
  route-reflector-client   Configure a neighbor as Route Reflector client
  send-community           Send Community attribute to this neighbor
  send-label               Send NLRI + MPLS Label to this peer
  shutdown                 Administratively shut down this neighbor
  soft-reconfiguration     Per neighbor soft reconfiguration
  timers                   BGP per neighbor timers
  translate-update         Translate Update to MBGP format
  transport                Transport options
  ttl-security             BGP ttl security check
  unsuppress-map           Route-map to selectively unsuppress suppressed routes
  update-source            Source of routing updates
  version                  Set the BGP version to match a neighbor
  weight                   Set default weight for routes from this neighbor

R-DPS(config-router)#neighbor 10.0.0.5 mask
                                         ^
% Invalid input detected at '^' marker.

R-DPS(config-router)#neighbor 10.0.0.5 mask 255.255.255.252
                                         ^
% Invalid input detected at '^' marker.

R-DPS(config-router)#?
Router configuration commands:
  address-family       Enter Address Family command mode
  aggregate-address    Configure BGP aggregate entries
  auto-summary         Enable automatic network number summarization
  bgp                  BGP specific commands
  default              Set a command to its defaults
  default-information  Control distribution of default information
  default-metric       Set metric of redistributed routes
  distance             Define an administrative distance
  distribute-list      Filter networks in routing updates
  exit                 Exit from routing protocol configuration mode
  help                 Description of the interactive help system
  maximum-paths        Forward packets over multiple paths
  neighbor             Specify a neighbor router
  network              Specify a network to announce via BGP
  no                   Negate a command or set its defaults
  redistribute         Redistribute information from another routing protocol
  synchronization      Perform IGP synchronization
  table-map            Map external entry attributes into routing table
  template             Enter template command mode
  timers               Adjust routing timers

R-DPS(config-router)#nei   
R-DPS(config-router)#neighbor 10.0.0.5 rem
R-DPS(config-router)#neighbor 10.0.0.5 remote
R-DPS(config-router)#neighbor 10.0.0.5 remote-as 65001
R-DPS(config-router)#net
R-DPS(config-router)#network 10.1.3.0 mask 255.255.255.0
R-DPS(config-router)#end
R-DPS#sh ip ro vrf
% Incomplete command.

R-DPS#sh ip ro   
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     10.0.0.0/8 is variably subnetted, 8 subnets, 2 masks
D       10.0.0.8/30 [90/2273792] via 10.0.0.5, 00:09:11, Serial0/0
D       10.0.0.12/30 [90/2785792] via 10.0.0.5, 00:07:59, Serial0/0
C       10.1.3.0/24 is directly connected, FastEthernet0/0
D       10.1.2.0/24 [90/1764352] via 10.0.0.5, 00:09:11, Serial0/0
D       10.1.1.0/24 [90/2276352] via 10.0.0.5, 00:07:59, Serial0/0
D       10.0.0.0/30 [90/2273792] via 10.0.0.5, 00:09:11, Serial0/0
C       10.0.0.4/30 is directly connected, Serial0/0
D       10.1.4.0/24 [90/2276352] via 10.0.0.5, 00:09:11, Serial0/0
R-DPS#sh ip ro
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     10.0.0.0/8 is variably subnetted, 8 subnets, 2 masks
D       10.0.0.8/30 [90/2273792] via 10.0.0.5, 00:09:16, Serial0/0
D       10.0.0.12/30 [90/2785792] via 10.0.0.5, 00:08:04, Serial0/0
C       10.1.3.0/24 is directly connected, FastEthernet0/0
D       10.1.2.0/24 [90/1764352] via 10.0.0.5, 00:09:16, Serial0/0
D       10.1.1.0/24 [90/2276352] via 10.0.0.5, 00:08:04, Serial0/0
D       10.0.0.0/30 [90/2273792] via 10.0.0.5, 00:09:16, Serial0/0
C       10.0.0.4/30 is directly connected, Serial0/0
D       10.1.4.0/24 [90/2276352] via 10.0.0.5, 00:09:16, Serial0/0
R-DPS#sh ip ro   
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     10.0.0.0/8 is variably subnetted, 8 subnets, 2 masks
D       10.0.0.8/30 [90/2273792] via 10.0.0.5, 00:09:33, Serial0/0
D       10.0.0.12/30 [90/2785792] via 10.0.0.5, 00:08:21, Serial0/0
C       10.1.3.0/24 is directly connected, FastEthernet0/0
D       10.1.2.0/24 [90/1764352] via 10.0.0.5, 00:09:33, Serial0/0
D       10.1.1.0/24 [90/2276352] via 10.0.0.5, 00:08:21, Serial0/0
D       10.0.0.0/30 [90/2273792] via 10.0.0.5, 00:09:33, Serial0/0
C       10.0.0.4/30 is directly connected, Serial0/0
D       10.1.4.0/24 [90/2276352] via 10.0.0.5, 00:09:33, Serial0/0
R-DPS#sh ip ro
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     10.0.0.0/8 is variably subnetted, 8 subnets, 2 masks
D       10.0.0.8/30 [90/2273792] via 10.0.0.5, 00:10:34, Serial0/0
D       10.0.0.12/30 [90/2785792] via 10.0.0.5, 00:09:22, Serial0/0
C       10.1.3.0/24 is directly connected, FastEthernet0/0
D       10.1.2.0/24 [90/1764352] via 10.0.0.5, 00:10:34, Serial0/0
D       10.1.1.0/24 [90/2276352] via 10.0.0.5, 00:09:22, Serial0/0
D       10.0.0.0/30 [90/2273792] via 10.0.0.5, 00:10:34, Serial0/0
C       10.0.0.4/30 is directly connected, Serial0/0
D       10.1.4.0/24 [90/2276352] via 10.0.0.5, 00:10:34, Serial0/0
R-DPS#sh ip ro
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     10.0.0.0/8 is variably subnetted, 8 subnets, 2 masks
D       10.0.0.8/30 [90/2273792] via 10.0.0.5, 00:11:17, Serial0/0
D       10.0.0.12/30 [90/2785792] via 10.0.0.5, 00:10:06, Serial0/0
C       10.1.3.0/24 is directly connected, FastEthernet0/0
D       10.1.2.0/24 [90/1764352] via 10.0.0.5, 00:11:17, Serial0/0
D       10.1.1.0/24 [90/2276352] via 10.0.0.5, 00:10:06, Serial0/0
D       10.0.0.0/30 [90/2273792] via 10.0.0.5, 00:11:17, Serial0/0
C       10.0.0.4/30 is directly connected, Serial0/0
D       10.1.4.0/24 [90/2276352] via 10.0.0.5, 00:11:17, Serial0/0
R-DPS#sh ip bgp sum
R-DPS#sh ip bgp summary
BGP router identifier 10.1.3.1, local AS number 65001
BGP table version is 8, main routing table version 8
4 network entries using 480 bytes of memory
4 path entries using 208 bytes of memory
3/2 BGP path/bestpath attribute entries using 372 bytes of memory
0 BGP route-map cache entries using 0 bytes of memory
0 BGP filter-list cache entries using 0 bytes of memory
Bitfield cache entries: current 1 (at peak 1) using 32 bytes of memory
BGP using 1092 total bytes of memory
BGP activity 4/0 prefixes, 4/0 paths, scan interval 60 secs

Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
10.0.0.5        4 65001      10      10        8    0    0 00:05:09        3
R-DPS#sh ip bgp summary
BGP router identifier 10.1.3.1, local AS number 65001
BGP table version is 8, main routing table version 8
4 network entries using 480 bytes of memory
4 path entries using 208 bytes of memory
3/2 BGP path/bestpath attribute entries using 372 bytes of memory
0 BGP route-map cache entries using 0 bytes of memory
0 BGP filter-list cache entries using 0 bytes of memory
Bitfield cache entries: current 1 (at peak 1) using 32 bytes of memory
BGP using 1092 total bytes of memory
BGP activity 4/0 prefixes, 4/0 paths, scan interval 60 secs

Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
10.0.0.5        4 65001      16      16        8    0    0 00:11:20        3
R-DPS#sh ip bgp summary
BGP router identifier 10.1.3.1, local AS number 65001
BGP table version is 8, main routing table version 8
4 network entries using 480 bytes of memory
4 path entries using 208 bytes of memory
3/2 BGP path/bestpath attribute entries using 372 bytes of memory
0 BGP route-map cache entries using 0 bytes of memory
0 BGP filter-list cache entries using 0 bytes of memory
Bitfield cache entries: current 1 (at peak 1) using 32 bytes of memory
BGP using 1092 total bytes of memory
BGP activity 4/0 prefixes, 4/0 paths, scan interval 60 secs

Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
10.0.0.5        4 65001      16      16        8    0    0 00:11:21        3
R-DPS#sh ip bgp summary
BGP router identifier 10.1.3.1, local AS number 65001
BGP table version is 8, main routing table version 8
4 network entries using 480 bytes of memory
4 path entries using 208 bytes of memory
3/2 BGP path/bestpath attribute entries using 372 bytes of memory
0 BGP route-map cache entries using 0 bytes of memory
0 BGP filter-list cache entries using 0 bytes of memory
Bitfield cache entries: current 1 (at peak 1) using 32 bytes of memory
BGP using 1092 total bytes of memory
BGP activity 4/0 prefixes, 4/0 paths, scan interval 60 secs

Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
10.0.0.5        4 65001      16      16        8    0    0 00:11:23        3
R-DPS#sh ip bgp summary
BGP router identifier 10.1.3.1, local AS number 65001
BGP table version is 8, main routing table version 8
4 network entries using 480 bytes of memory
4 path entries using 208 bytes of memory
3/2 BGP path/bestpath attribute entries using 372 bytes of memory
0 BGP route-map cache entries using 0 bytes of memory
0 BGP filter-list cache entries using 0 bytes of memory
Bitfield cache entries: current 1 (at peak 1) using 32 bytes of memory
BGP using 1092 total bytes of memory
BGP activity 4/0 prefixes, 4/0 paths, scan interval 60 secs

Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
10.0.0.5        4 65001      17      17        8    0    0 00:12:19        3
R-DPS#sh ip bgp summary
BGP router identifier 10.1.3.1, local AS number 65001
BGP table version is 8, main routing table version 8
4 network entries using 480 bytes of memory
4 path entries using 208 bytes of memory
3/2 BGP path/bestpath attribute entries using 372 bytes of memory
0 BGP route-map cache entries using 0 bytes of memory
0 BGP filter-list cache entries using 0 bytes of memory
Bitfield cache entries: current 1 (at peak 1) using 32 bytes of memory
BGP using 1092 total bytes of memory
BGP activity 4/0 prefixes, 4/0 paths, scan interval 60 secs

Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
10.0.0.5        4 65001      17      17        8    0    0 00:12:20        3
R-DPS#sh ip bgp summary
BGP router identifier 10.1.3.1, local AS number 65001
BGP table version is 8, main routing table version 8
4 network entries using 480 bytes of memory
4 path entries using 208 bytes of memory
3/2 BGP path/bestpath attribute entries using 372 bytes of memory
0 BGP route-map cache entries using 0 bytes of memory
0 BGP filter-list cache entries using 0 bytes of memory
Bitfield cache entries: current 1 (at peak 1) using 32 bytes of memory
BGP using 1092 total bytes of memory
BGP activity 4/0 prefixes, 4/0 paths, scan interval 60 secs

Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
10.0.0.5        4 65001      17      17        8    0    0 00:12:21        3
R-DPS#sh ip bgp summary
BGP router identifier 10.1.3.1, local AS number 65001
BGP table version is 8, main routing table version 8
4 network entries using 480 bytes of memory
4 path entries using 208 bytes of memory
3/2 BGP path/bestpath attribute entries using 372 bytes of memory
0 BGP route-map cache entries using 0 bytes of memory
0 BGP filter-list cache entries using 0 bytes of memory
Bitfield cache entries: current 1 (at peak 1) using 32 bytes of memory
BGP using 1092 total bytes of memory
BGP activity 4/0 prefixes, 4/0 paths, scan interval 60 secs

Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
10.0.0.5        4 65001      17      17        8    0    0 00:12:22        3
R-DPS#wr mem  
Building configuration...
[OK]
R-DPS#sh ip bg
R-DPS#sh ip bgp ne
R-DPS#sh ip bgp neighbors
BGP neighbor is 10.0.0.5,  remote AS 65001, internal link
  BGP version 4, remote router ID 10.1.2.1
  BGP state = Established, up for 00:17:23
  Last read 00:00:22, last write 00:00:22, hold time is 180, keepalive interval is 60 seconds
  Neighbor capabilities:
    Route refresh: advertised and received(old & new)
    Address family IPv4 Unicast: advertised and received
  Message statistics:
    InQ depth is 0
    OutQ depth is 0
                         Sent       Rcvd
    Opens:                  1          1
    Notifications:          0          0
    Updates:                1          3
    Keepalives:            20         20
    Route Refresh:          0          0
    Total:                 22         24
  Default minimum time between advertisement runs is 0 seconds

 For address family: IPv4 Unicast
  BGP table version 14, neighbor version 14/0
  Output queue size: 0
  Index 1, Offset 0, Mask 0x2
  1 update-group member
                                 Sent       Rcvd
  Prefix activity:               ----       ----
    Prefixes Current:               1          9 (Consumes 468 bytes)
    Prefixes Total:                 1          9
    Implicit Withdraw:              0          0
    Explicit Withdraw:              0          0
    Used as bestpath:             n/a          9
    Used as multipath:            n/a          0

                                   Outbound    Inbound
  Local Policy Denied Prefixes:    --------    -------
    Bestpath from this peer:              9        n/a
    Total:                                9          0
  Number of NLRIs in the update sent: max 1, min 1

  Connections established 1; dropped 0
  Last reset never
Connection state is ESTAB, I/O status: 1, unread input bytes: 0           
Connection is ECN Disabled, Mininum incoming TTL 0, Outgoing TTL 255
Local host: 10.0.0.6, Local port: 179
Foreign host: 10.0.0.5, Foreign port: 57156
Connection tableid (VRF): 0
         
Enqueued packets for retransmit: 0, input: 0  mis-ordered: 0 (0 bytes)
         
Event Timers (current time is 0xE16B44):
Timer          Starts    Wakeups            Next
Retrans            21          0             0x0
TimeWait            0          0             0x0
AckHold            21         19             0x0
SendWnd             0          0             0x0
KeepAlive           0          0             0x0
GiveUp              0          0             0x0
PmtuAger            0          0             0x0
DeadWait            0          0             0x0
Linger              0          0             0x0
ProcessQ            0          0             0x0
         
iss: 4116275608  snduna: 4116276089  sndnxt: 4116276089     sndwnd:  15904
irs: 3856188480  rcvnxt: 3856189109  rcvwnd:      15756  delrcvwnd:    628
         
SRTT: 283 ms, RTTO: 423 ms, RTV: 140 ms, KRTT: 0 ms
minRTT: 32 ms, maxRTT: 364 ms, ACK hold: 200 ms
Status Flags: passive open, gen tcbs
Option Flags: nagle
IP Precedence value : 6
         
Datagrams (max data segment is 1460 bytes):
Rcvd: 27 (out of order: 0), with data: 23, total data bytes: 628
Sent: 40 (retransmit: 0, fastretransmit: 0, partialack: 0, Second Congestion: 0), with data: 20, total data bytes: 480
 Packets received in fast path: 0, fast processed: 0, slow path: 0
 fast lock acquisition failures: 0, slow path: 0
R-DPS#
R-DPS#
R-DPS#
R-DPS#
R-DPS#
R-DPS#
R-DPS#
R-DPS#
R-DPS#
R-DPS#
R-DPS#
R-DPS#
R-DPS#sh ip bg
R-DPS#sh ip bgp
BGP table version is 14, local router ID is 10.1.3.1
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal,
              r RIB-failure, S Stale
Origin codes: i - IGP, e - EGP, ? - incomplete

   Network          Next Hop            Metric LocPrf Weight Path
r>i10.0.0.4/30      10.0.0.5                 0    100      0 i
r>i10.0.0.8/30      10.0.0.5                 0    100      0 i
*>i10.0.0.16/30     10.0.0.1                 0    100      0 65000 65002 i
*>i10.0.0.20/30     10.0.0.1                 0    100      0 65000 65002 i
*>i10.1.1.0/24      10.0.0.1                 0    100      0 65000 i
r>i10.1.2.0/24      10.0.0.5                 0    100      0 i
*> 10.1.3.0/24      0.0.0.0                  0         32768 i
*>i10.1.5.0/24      10.0.0.1                 0    100      0 65000 65002 i
*>i10.1.6.0/24      10.0.0.1                 0    100      0 65000 65002 i
*>i10.1.7.0/24      10.0.0.1                 0    100      0 65000 65002 i
R-DPS#sh ip bgp
BGP table version is 14, local router ID is 10.1.3.1
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal,
              r RIB-failure, S Stale
Origin codes: i - IGP, e - EGP, ? - incomplete

   Network          Next Hop            Metric LocPrf Weight Path
r>i10.0.0.4/30      10.0.0.5                 0    100      0 i
r>i10.0.0.8/30      10.0.0.5                 0    100      0 i
*>i10.0.0.16/30     10.0.0.1                 0    100      0 65000 65002 i
*>i10.0.0.20/30     10.0.0.1                 0    100      0 65000 65002 i
*>i10.1.1.0/24      10.0.0.1                 0    100      0 65000 i
r>i10.1.2.0/24      10.0.0.5                 0    100      0 i
*> 10.1.3.0/24      0.0.0.0                  0         32768 i
*>i10.1.5.0/24      10.0.0.1                 0    100      0 65000 65002 i
*>i10.1.6.0/24      10.0.0.1                 0    100      0 65000 65002 i
*>i10.1.7.0/24      10.0.0.1                 0    100      0 65000 65002 i
R-DPS#sh ip bgp
BGP table version is 14, local router ID is 10.1.3.1
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal,
              r RIB-failure, S Stale
Origin codes: i - IGP, e - EGP, ? - incomplete

   Network          Next Hop            Metric LocPrf Weight Path
r>i10.0.0.4/30      10.0.0.5                 0    100      0 i
r>i10.0.0.8/30      10.0.0.5                 0    100      0 i
*>i10.0.0.16/30     10.0.0.1                 0    100      0 65000 65002 i
*>i10.0.0.20/30     10.0.0.1                 0    100      0 65000 65002 i
*>i10.1.1.0/24      10.0.0.1                 0    100      0 65000 i
r>i10.1.2.0/24      10.0.0.5                 0    100      0 i
*> 10.1.3.0/24      0.0.0.0                  0         32768 i
*>i10.1.5.0/24      10.0.0.1                 0    100      0 65000 65002 i
*>i10.1.6.0/24      10.0.0.1                 0    100      0 65000 65002 i
*>i10.1.7.0/24      10.0.0.1                 0    100      0 65000 65002 i
R-DPS#sh ip bg
R-DPS#sh ip bgp rib-
R-DPS#sh ip bgp rib-failure
Network            Next Hop                      RIB-failure   RIB-NH Matches
10.0.0.4/30        10.0.0.5            Higher admin distance              n/a
10.0.0.8/30        10.0.0.5            Higher admin distance              n/a
10.1.2.0/24        10.0.0.5            Higher admin distance              n/a
R-DPS#ping 10.1.7.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.1.7.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 56/88/152 ms
R-DPS#ping 10.1.7.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.1.7.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 20/68/136 ms
R-DPS#



Continue reading }}