Showing posts with label setting. Show all posts
Showing posts with label setting. Show all posts

Saturday, September 23, 2017

Tutorial Setting PPSPP Tested

Tutorial Setting PPSPP Tested


?????????????????????? ?????????????? ?????????

 
Tips Kesehatan - Hidup Sehat Tanpa Olahraga -  Sehat sangat mahal harganya dan lebih baik mencegah dari pada mengobati dimana kita sebagai manusia sangat tergantung dari kesehatan, bilamana kita tidak menjaga kesehatan kita dengan baik maka, pasti akan banyak penyakit yang kita derita dan juga yang paling penting kita harus memakan makanan yng bergizi yang cukup vitamin, kalsium, dan juga mineral agar kebutuhan tubuh kita dapat terpenuhi dengan cukup dan tidak ada yang kekurangan dan akhirnya sakit, kami akan memberikan "Tips Hidup Sehat Tanpa Olah Raga", agar Anda yang sangat sibuk dan tidak ada waktu ruang dapat tetap menjaga kesehatan Anda.

 
Tips Kesehatan Hidup Sehat Tanpa Olahraga :

1. Makan makanan yang bergizi "4 Sehat 5 Sempurna"

2. Sehari harus minum air 18 gelas agar cairan di tubuh kita tercukupi

3. Gunakan "Sandal Kesehatan" yang ada tumpuan untuk menekan titik saraf, pakai setiap kali di rumah agar kesehatan Anda tetap terjaga dengan titik saraf yang ada di kaki Anda lentur tidak ketat.

4. Belilah "Kursi Kesehatan" yang ada alat pemijatnya, yang dapat membuat sejenak melepas penat dan juga lelah Anda di kursi tersebut.

5. Jangan terlalu banyak masalah yang Anda pikirkan, dan membuat Anda stress,depresi, dll, karena semua itu akan membuat Anda dapat dengan mudah terserang penyakit, sebab kekuatan psikologis lebih besar mempengruhi kesehatan tubuh kita.




download file now

Read more »

Saturday, September 16, 2017

Tutorial Setting PATH in Ubuntu

Tutorial Setting PATH in Ubuntu


Adding directory to system PATH variables in Ubuntu is easy. Why we must setting path on system? because with setting path, it make easier to run an application or command through a Terminal or by command line.

To setting path in Ubuntu can in 2 ways: temporary path and permanent path.
  1. Temporary PATH
    • Run terminal
    • Then type this command:
      export PATH=/path/to/directory:$PATH
      */path/to/directory is directory what you want to save in PATH.
  2. Permanent PATH
    For this way, you must edit file .bashrc
    • Run Terminal
    • Go to root or super user by type: sudo su
    • Type this command:
      gedit ~/.bashrc
    • Then add this script at the top
      export PATH=/path/to/directory:$PATH
    • Save file .bashrc after you add that script.
    After set you PATH variable environment, you can try to type application name or command from directory what you set before.



    download file now

    Read more »

    Sunday, September 10, 2017

    Tutorial Setting Mikrotik RB dari Awal Sampai Terkoneksi Dengan Internet Basic Setup Mikrotik

    Tutorial Setting Mikrotik RB dari Awal Sampai Terkoneksi Dengan Internet Basic Setup Mikrotik


    Saya asumsikan anda sudah mengenal hardware mikrotik dimana nanti kita akan me-reset awal setting default konfigurasi agar mikrotik menjadi nol konfigurasi, langkah yang harus kita lakukan agar mikrotik Rb kita bisa tekoneksi dengan internet adalah sebagai berikut :
    Planing Topologi :
    Ether1 : Internet // 192.168.10.2/24 => Modem Ip : 192.168.10.1
    Ether2 : LAN    // 192.168.2.1/24 => Client DHCP : 192.168.2.2-254
    • Masuk ke mikrotik RB dengan menu winbox , bisa dengan media Mac Address atau bisa dengan media IP Address Lan Mikrotik RB ( Jika via IP maka tancapkan Lan kita ke mikrotik RB ether-2 , IP defaultnya adalah 192.168.88.1 dan saya asumsikan anda sudah faham mengenai setting Lan di IP di Laptop/PC, karna jika masuk winbox via IP anda wajib setting LAN di laptop/pc anda dan wajib satu subnet dengan Rb Mikrotiknya.lihat gambar dibawah dan jangan lupa di klik Connect :
    • Setelah terkoneksi dengan Rb Mikrotik, lanjut dengan remove konfigurasinya agar kita bisa setting manual sesuai keinginan. lihat gambar dibawah !
    •  Langkah pertama yang harus kita lakukan adalah memberi identitas, password dan ip address
    • Berikan password login, ikuti langkahya dibawah ini : 

    • Untuk langkah selanjutnya, kita berikan comment terlebih dahulu disetiap Ethernet / Port agar memudahkan kita mengingat ID ether interface, ikuti langkah sbb : 

     Berikut beberapa ethernet yang sudah diberikan label/comment :
    •  Kemudian kita akan menghubungkan router ke Internet, sebelumnya pastikan dulu untuk ethernet yang terhubung ke Internet ( Modem ) disini adalah ether1, ikuti langkah berikut :
    • Selanjutnya kita akan memasukkan default gatway IP Internet ke menu route, Jika berhasil maka akan terdapa keterangan reachable, ikuti langkah berikut :
    • Kemudian buatlah IP Address local, disini topologi di ether2 dengan IP 192.168.2.1/24

    • Selanjutnya kita masuk NAT masquerade terlebih dahulu agar IP Private 192.168.2.0/24 di izinkan mengakses Internet menggunakan IP Publik, karena tidak akan mungkin sebuah IP Private di jaringan LAN bisa mengakses Internet tanpa mekanisme NAT, Ikuti langkah sbb :

      • Terakhir, kita membuat DHCP Server, yang berfungsi untuk memberikan IP otomatis kepada setiap client sehingga administrator tidak perlu memberikan IP secara manual, ikuti langkahnya dibawah ini :

      Selesai Untuk setting awal mikrotik agar terkoneksi dengan internet, dan share local ip dengan dhcp client

      Mode CLI

      /system identity
      set name="Mikroserver"

      /interface ethernet
      set [ find default-name=ether1 ] name=ether1-Internet
      set [ find default-name=ether2 ] name=ether2-LAN

      /ip address
      add address=192.168.10.2/24 comment="Internet" interface=ether1-Internet
          network=192.168.10.0
      add address=192.168.2.1/24 comment=Local interface=ether2-LAN network=
          192.168.2.0
        
      /ip dhcp-server
      add address-pool=dhcp-lan disabled=no interface=ether2-LAN lease-time=1h name=
          dhcp

      /ip dhcp-server network
      add address=192.168.2.0/24 comment="hotspot network" gateway=192.168.2.1
        
      /ip pool
      add name=pool-lan ranges=192.168.2.2-192.168.5.254

      /ip dns
      set allow-remote-requests=yes servers=8.8.8.8,8.8.4.4

      /ip firewall nat
      add action=masquerade chain=srcnat

      /ip route
      add comment="Default Route" distance=1 gateway=192.168.10.1
      Copy - Paste di New Terminal

      Source/Reference :
      - http://mikrotik.co.id

      download file now

      Read more »

      Wednesday, September 6, 2017

      Tyk Dashboard crashed after setting the portal domain

      Tyk Dashboard crashed after setting the portal domain


      So I set the portal domain to be as the same with the dashboard. Later, I was instructed that it is not permitted to have the portal domain same as the dashboard.

      However, now I am left with the below error which does not simply disappear when I reconfigure Tyk.

      panic: http: multiple registrations for dashboard.tyk-local.com:3000/

      goroutine 1 [running]:
      panic(0xa60f80, 0xc820370be0)
          /usr/local/go/src/runtime/panic.go:464 +0x3e6
      net/http.(*ServeMux).Handle(0xc820356d50, 0xc82036f7e0, 0x1d, 0x7f5a221595d8, 0xc82027af20)
          /usr/local/go/src/net/http/server.go:1926 +0x297
      main.GenerateRoutes()
          /home/tyk/go/src/github.com/lonelycode/tyk-analytics/Main.go:733 +0x41b7
      main.main()
          /home/tyk/go/src/github.com/lonelycode/tyk-analytics/Main.go:750 +0x59


      I basically had to drop the Mongo table, and then reconfigure Tyk to get everything back in place.

      In Mongo shell:
      > use tyk_analytics
      switched to db tyk_analytics
      > db.dropDatabase();
      { "dropped" : "tyk_analytics", "ok" : 1 }

      download file now

      Read more »

      Monday, September 4, 2017

      Unbound Saga ISO Free Download PPSSPP Setting

      Unbound Saga ISO Free Download PPSSPP Setting



      Unbound Saga is a 3D side-scrolling brawler based on the comic book by Dark Horse Comics. The game is set in a satirical comic book universe, where enemies are drawn onto the screen and madcap battles travel from panel to panel through a twisted, post-apocalyptic landscape. Break off a weapon and rage off the page!

      You are Rick Ajax or Lori Machete, two fighters with their own style and a unique set of skills. As you journey through the futuristic wastelands of Toxopolis in search of your nemesis, "The Maker", you will encounter a wide range of bizarre creatures, colorful characters, and brutal bosses, most of whom will try their best to prevent you from reaching your goal. � IGN

      Screen Shots








      File Name: Unbound Saga
      Publisher: Vogster Entertainment
      Developer: Vogster Entertainment
      Genre: Action
      Image Format: ISO
      File Size: 414 MB


      Best PPSSPP Setting Of  Unbound Saga Gold Version.1.3.0.1
      wait for 5 seconds & click the skip ad

      You may click the link below to download your file

      Download Instruction:
      Click Download Now button and the file is in another website Google Drive Link. Just click the download and the file will be download. Sometimes the file goes to ADS website to get the exact downloading file back to clicking on Download Now Button and again repeat the instruction. For more info click this link How to download

      414 MB Unbound Saga ISO

      Please report us if the download link are not working

      download file now

      Read more »

      Tuesday, August 29, 2017

      Tutorial Setting Routing Dinamis OSPF di Mikrotik Server VPN

      Tutorial Setting Routing Dinamis OSPF di Mikrotik Server VPN


      OSPF (Open Shortest Path First ) adalah sebuah protokol routing otomatis (Dynamic Routing) yang mampu menjaga, mengatur dan mendistribusikan informasi routing antar network mengikuti setiap perubahan jaringan secara dinamis. Pada OSPF dikenal sebuah istilah Autonomus System (AS) yaitu sebuah gabungan dari beberapa jaringan yang sifatnya routing dan memiliki kesamaan metode serta policy pengaturan network, yang semuanya dapat dikendalikan oleh network administrator
       Gambaran mengenai prinsip kerja dari OSPF :

      • Setiap router membuat Link State Packet (LSP)
      • Kemudian LSP didistribusikan ke semua neighbour menggunakan Link State Advertisement (LSA) type 1 dan menentukan DR dan BDR dalam 1 Area.
      • Masing-masing router menghitung jalur terpendek (Shortest Path) ke semua neighbour berdasarkan cost routing.
      • Jika ada perbedaan atau perubahan tabel routing, router akan mengirimkan LSP  ke DR dan BDR melalui alamat multicast 224.0.0.6
      • LSP akan didistribusikan oleh DR ke router neighbour lain dalam 1 area sehingga semua router neighbour akan melakukan perhitungan ulang jalur terpendek.
       Ada tiga elemen dasar konfigurasi OSPF di MikroTik :
      • Mengaktifkan OSPF instance
      Berikut contoh implementasinya kedalam router server vpn :

        Disini kita memakai Redistribute Static Route dan Redistribute BGP Route : as type 2 , karna dalam implementasi kasus ini mendistribusikan netblock ip dari BGP Quagga debian.
      • Konfigurasi OSPF area

      • Konfigurasi OSPF network

      Backbone dari name area , Network : Segmen IP Lokal untuk Client VPN
      Jika sudah selesai step-step diatas, lanjut ke OSPF CLient, buka link di Cara Setting OSPF Client Over VPN

      Source/Reference :
      - http://mikrotik.co.id
      - Syaifuddin JW


      BACA JUGA : ARTIKEL TENTANG SETTING MIKROTIK DIBAWAH INI :
      1. Tutorial Setting Mikrotik dari Awal/Dasar Sampai Terkoneksi Dengan Internet
      2. Tutorial Upgrade RouterOS Mikrotik ke Versi Terbaru
      3. Tutorial Setting Hotspot Mikrotik
      4. Setting Mikrotik Sebagai Bandwitdh Limiter Jaringan Internet
      5. Tutorial Manajemen Bandwitdh Sama Rata Secara Otomatis Dengan Metode PCQ Mikrotik
      6. Tutorial Cara Meremote Winbox Mikrotik Dari Luar Jaringan
      7. Cara Mengalihkan Pelanggan Hotspot Mikrotik Yang Expired Ke Halaman Isolir
      8. Cara Menghapus (Delete) Log Mikrotik dari Terminal
      9. Tutorial Memisahkan Bandwitdh Lokal (iix) dan Internasional (ix) di Mikrotik
      10. Menghubungkan Kantor Pusat dengan Kantor Cabang dengan EOIP Mikrotik [VPN]

      ARTIKEL MIKROTIK : KUMPULAN TUTORIAL SETTING MIKROTIK LANJUT

      download file now

      Read more »

      Ubuntu Setting up an NFS Server and Client

      Ubuntu Setting up an NFS Server and Client


      What is NFS?

      "NFS stands for Network File System, a file system developed by Sun Microsystems, Inc. It is a client/server system that allows users to access files across a network and treat them as if they resided in a local file directory"

      "The NFS protocol is designed to be independent of the computer, operating system, network architecture, and transport protocol. This means that systems using the NFS service may be manufactured by different vendors, use different operating systems, and be connected to networks with different architectures. These differences are transparent to the NFS application, and thus, the user. "
      [ source ]

      Host Installation Steps

      To set up an NFS host in Ubuntu, you need to run the following command to install the necessary packages:

      sudo apt-get install nfs-kernel-server nfs-common -y

      Add lines to your

      /etc/exports file
      , specifying the directory locations that you want shared on the network like below:
      sudo $EDITOR /etc/exports

      Heres another example with comments explaining each part.


      # Share the top level files directory
      # Allow access from computers accessing from the IPs in the range of 192.168.1.1 -> 192.168.1.255
      # The client can access/edit files as if they were a root user on the host
      # Grant both read and write access (rw)
      /files 192.168.1.1/24(rw,no_root_squash,async)
      If you want to allow read only access, you need to specify "ro", not just "r"
      You cannot export encrypted directories. This means that if you selected "encrypt home directory" during your Ubuntu installation, you cannot export your home directory, or any of its subdirectories.

      root_squash or no_root_squash?

      The option root_squash prevents root users connected remotely from having root privileges and assigns them the nfsnobody user ID. This effectively "squashes" the power of the remote root user to the lowest local user, preventing unauthorized alteration of files on the NFS host.

      The alternative option no_root_squash, allows the root user on the client to access/create files as root on the NFS host which is dangerous, so dont enable this unless you know that you need to. Typically this is needed if one is hosting root filesystems on an NFS server for diskless clients (e.g. AWS EC2).

      async or sync?

      Async mode (which is the default) means that the system will reply to a clients write request, stating that it has completed, as soon as it has handled the request by passing it off to the filesystem to manage, rather than waiting for it to be written to stable storage (e.g. replying as soon as it has gone into cache rather than disk). This yields much better performance at the expense in a risk of data corruption should the server reboot or lose power whilst still holding data in cache.

      If your system needs to work with other proprietary systems that work with NFS (Solaris, HP-UX, RS/6000, etc.), you will need to enable sync mode.

      subtree_check or no_subtree_check?

      There is a great explanation of this here, but to sum up, the subtree_check causes the host to check that a client request is not going outside the domain of the exported directory. This is only necessary when you are exporting a subdirectory within a filesystem and not the entire filesystem. However, this can cause issues, so the best choice of action is this: always use no_subtree_check (the default), and if you are making a public NFS, then set up the disk partitions so that you are only ever exporting entire filesystems.

      Applying Export Changes

      Whenever you make changes to the /etc/exports file, for them to take effect you need to run the following command which will let you know if there are any issues, and tell you about any defaults it assumes.

      sudo exportfs -a

      Restart NFS Service

      You can restart the NFS service at any point with the following command:

      sudo /etc/init.d/nfs-kernel-server restart

      Client Steps

      To be able to mount NFS shares as a client, you need to run the following command to install the relevant packages:

      sudo apt-get install nfs-common -y

      Mount the NFS by adding a line to your /etc/fstab file like below:

      $NFS_HOST_IP:$HOST_EXPORT_DIR_PATH $LOCAL_DIR nfs auto 0 0
      The last 0 indicates that we should never perform filesystem checks for this on boot (fsck).

      Now run the following command to mount everything in your fstab.

      sudo mount -a

      If you just want to mount once, and not automatically on startup, then instead of adding to your fstab and calling mount -a, simply run this instead:
      sudo mount $NFS_HOST_IP:$HOST_EXPORT_DIR_PATH $LOCAL_DIR

      References


      download file now

      Read more »

      Sunday, August 27, 2017

      Tutorial Setting Mikrotik dan Proxy Server Squid di Virtual Box

      Tutorial Setting Mikrotik dan Proxy Server Squid di Virtual Box


      Sebelum kita bahas ke tutorial instalasi, sebelumnya saya asumsikan bahwa anda sudah bisa install dan konfigurasi mikrotik di virtual box, atau pun install ubuntu server di virtual box, supaya memudahkan kita dalam persiapan implementasi, bisa anda baca lagi di artikel bahasan sebelumnya mengenai Cara Install dan Konfigurasi Mikrotik di Virtual Box , untuk peralatan-peralatann yang harus kita siapkan adalah sebagai berikut dibawah :
      • Virtual Box 
      • Mikrotik routerOS.iso
      • Ubuntu Server.iso
      Jika sudah siap semua peralatan, sekarang kita buat 2 machine di virtual box ( 1 untuk mirotik, dan 1 untuk ubuntu servernya ). 


      Topologi Jaringan Sederhana


      Planing Network Instalasi
      Setting network sesuaikan adapternya :

      Virtual Mikrotik :
      Adapter1 : Bridge ( interface mengarah ke modem/internet )
      Adapter2 : Internal network
      Adapter3 : host-only adapter

      Virtual Squid :
      Adapter1 : Internal network

      Ilustrasinya seperti gambar dibawah :


      Keterangan :
      • PC master adalah PC yang di install Virtual box.
      • Pada eth0 di PC master, saya beri tanda X karna eth0(PC) hanya akan menjadi jembatan eth0 (mikrotik) dengan demikan agar PC master dapat mengakses internet melewati eth2 (mikrotik) sebagai Client dari mikrotik walaupun pada eth0 (PC) adalah client dari internet/setara dengan mikrotik

      • Hilangkan centang pada TCP/IPv4 pada adapter yang digunakan untuk mengakses inter pada PC master untuk mendapatkan tanda X di eth0(PC) tadi.
      Dalam praktek ini saya menggunakan jaringan wireless rumahan wifi (speedy) namun sama saja setinggannya untuk kabel LAN. 
      Setting IP masing-masing Machine nya seperti dibawah :


      PC master

      adapter 1 = <kosong>

      adapter 2 = 192.168.3.2


      virtual mikrotik

      adapter 1 = 192.168.1.1

      adapter 2 = 192.168.2.1

      adapter 3 = 192.168.3.1


      virtual squid

      adapter 1 = 192.168.2.2


      untuk adapter 2 pada PC, adalah adapter virtual yang telah di buat secara default oleh virtualbox agar PC master dapat terkoneksi dengan mesin virtual, lihat gambar untuk lebih jelasnya :


      Topologi dengan IP

      Dapat disimpulkan bahwa :

      # Jaringan 192.168.1.0 adalah jaringan internet

      # Jaringan 192.168.2.0 adalah jaringan proxy

      # Jaringan 192.168.3.0 adalah jaringan client

      Untuk settingan mikrotik saya seperti ini :



      Setting client agar dapat redirect ke proxy : tambahkan NAT rules

      ## Firewall => Nat
      action : dst-domain

      src address : !192.168.2.2

      protocol : tcp

      dst port : 80

      action  : dst-nat

      to adresses : 192.168.2.2

      to ports : 3128
      Copy - Paste di New Terminal
        Untuk Konfigurasi Squid, Sesuaikan dengan gambar dibawah ini :

        Silahkan dikembangkan lagi materi diatas, karna konfigurasi squid nya masih default, semoga bermanfaat. 

        Source/Reference :
        - http://mikrotik.co.id
        - https://www.facebook.com/groups/Mikrotik.Squid.Indonesia/files/


        BACA JUGA : ARTIKEL TENTANG SETTING MIKROTIK DIBAWAH INI :
        1. Tutorial Setting Mikrotik dari Awal/Dasar Sampai Terkoneksi Dengan Internet
        2. Tutorial Upgrade RouterOS Mikrotik ke Versi Terbaru
        3. Tutorial Setting Hotspot Mikrotik
        4. Setting Mikrotik Sebagai Bandwitdh Limiter Jaringan Internet
        5. Tutorial Manajemen Bandwitdh Sama Rata Secara Otomatis Dengan Metode PCQ Mikrotik
        6. Tutorial Cara Meremote Winbox Mikrotik Dari Luar Jaringan
        7. Cara Mengalihkan Pelanggan Hotspot Mikrotik Yang Expired Ke Halaman Isolir
        8. Cara Menghapus (Delete) Log Mikrotik dari Terminal
        9. Tutorial Memisahkan Bandwitdh Lokal (iix) dan Internasional (ix) di Mikrotik
        10. Menghubungkan Kantor Pusat dengan Kantor Cabang dengan EOIP Mikrotik [VPN]

        ARTIKEL MIKROTIK : KUMPULAN TUTORIAL SETTING MIKROTIK LANJUT

      download file now

      Read more »

      Saturday, August 26, 2017

      Transformers Revenge Of The Fallen ISO Free Download PPSSPP Setting

      Transformers Revenge Of The Fallen ISO Free Download PPSSPP Setting




      The Transformers: Revenge of the Fallen videogame lets gamers step into the shoes of the Autobots or Decepticons. Playing out the game with a choice of characters on either side of the conflict, players are propelled into an adrenaline-pumping battle for supremacy across the globe where every second and every choice makes the difference between mankinds salvation and annihilation. � IGN

      Screen Shots








      File Name: Transformers Revenge Of The Fallen

      Publisher: Activision
      Developer: Savage Intertainment
      Genre: Third Person Shooting
      Image Format: .ISO
      File Size: 1.63 GB


      Best PPSSPP Setting Of  Transformers Revenge Of The Fallen Gold Version.1.3.0.1
      wait for 5 seconds & click the skip ad

      You may click the link below to download your file

      Download Instruction: Click Download Now button and the file is in another website MediaFire Link. Just click the download and the file will be download.


      http://www.mediafire.com/?8014ybdi49cimai
      1.63 GB Transformers Revenge of The Fallen MediaFire

      Please report us if the download link are not working

      download file now

      Read more »

      Friday, August 25, 2017

      Tutorial Cara Setting BGP Client Menggunakan Tunnel BGP Over VPN PPTP

      Tutorial Cara Setting BGP Client Menggunakan Tunnel BGP Over VPN PPTP


      Untuk dapat menghubungkan jaringan kita perlu yang namanya routing, routing sendiri ada 2 metode yaitu :
      • Routing Static ( Digunakan untuk routing skala kecil )
      • Routing Dinamic ( Digunakan untuk routing skala besar )
      Kali ini kita akan membahas kebutuhan routing dalam skala besar karna digunakan untuk client game garena, pada mikrotik sendiri ada beberapa fitur yang bisa digunakan untuk Dinamic Route diantaranya adalah OSPF, BGP, RIP. Nah, kali ini kita akan membahas untuk Dinamic Route dengan fitur BGP yang ada di mikrotik. Fitur ini cukup baik untuk diimplementasikan sebagai dinamic routing yang menghubungkan jaringan-jaringan dalam segment lokal.  Akan tetapi bagaimana jika kita ingin menghubungkan jaringan lokal melalui internet dengan menggunakan Dinamic route BGP, Dengan kebutuhan tersebut kita bisa memanfaatkan VPN untuk koneksi antar gateway dan kemudian melewatkan BGP pada VPN tersebut untuk menghubungkan antar jaringan lokalnya. Nah, langkah-langkah konfigurasinya adalah sebagai berikut :
      • Hubungkan dulu VPN CLient ke VPN Server dulu dengan PPTP
      Cara menghubungkan router client vpn ke vpn server bisa anda baca lagi di artikel kita yang sudah dibahas diawal yaitu di link http://www.mikroserver.net/cara menghubungkan vpn client dengan PPTP
      • Buat BGP Peer di router client ke BGP Server Debian dengan Dinamic Route dari quagga, dan langkah-langkahnya adalah sebagai berikut :
      Saya asumsikan anda sudah bisa setting BGP Server dengan menggunakan fasilitas dinamic route quagga, atau bisa kalian baca lagi artikel kita di http://www.mikroserver.net/Install quagga server di debian 

      Lanjut setup BGP ke langkah setting di router client :



      Sett AS Number jangan sama dengan yang di server nya.
      Remote Address : IP Gateway BGP VPN Server
      Remote AS : AS Number di BGP VPN Server



      Centang untuk IPv4 nya

      Dan Jika berhasil konek ke BGP Over PPTP maka di status akan keluar seperti ini :


      Local Address : IP yang dikasih ke kita dari Server BGP PPTP nya.


      Status Established ( Sukses Terhubung ) dan lihat di IP Route apa yang terjadi ?


      IP Dinamis dari Routing BGP Quagga Over PPTP telah terhubung, SELAMAT MENCOBA.

      Source/Reference :
      - http://mikrotik.co.id
      - Syaifuddin JW

      download file now

      Read more »