ISP Undercover

Cara mengatasi pop-up Google Chrome Your profile could not be opened correctly. Some features may be unavailable.


Ketika membuka google chrome muncul pop-up error seperti ini “Your profile could not be opened correctly.  Some features may be unavailable.  Please check that the profile exists and you have permission to read and write its contents."

Problem Cause:  Ada yang corrupt di Google Chrome profile data.

Solusi:

Mac OSX


  1. Quit Google Chrome.
  2. Open Terminal.
  3. Change directory (cd) to /Users/{user}/Library/Application Support/Google/Chrome/Default
  4. Delete Web Data and History files:  rm -rf History*; rm -rf Web\ Data;
  5. Start Google Chrome and the error should be gone.



Windows 7


  1. Quit Google Chrome.
  2. Open Computer.
  3. Navigate to C:\Users\{username}\AppData\Local\Google\Chrome\User Data\Default\
  4. Delete the file named “Web Data”
  5. Start Google Chrome and the error should be gone. 



Windows XP


  1. Quit Google Chrome.
  2. Open Computer.
  3. Turn on Show Hidden Files and Foldesr in Folder Options in Windows Explorer.
  4. Navigate to: C:\Documents and Settings\{username}\Local Settings\Application Data\Google\Chrome\User Data\
  5. Delete the file named “Web Data”
  6. Start Google Chrome and the error should be gone. 



Linux


  1. Quit Google Chrome.
  2. Open a shell.
  3. Change directory (cd) to ~/.config/google-chrome/Default
  4. Delete the file named “Web Data”:  rm -rf Web\ Data;
  5. Start Google Chrome and the error should be gone.




NOTE: If the problem repeats itself after every reboot, then there is most likely corruption is your user profile, so you will have to delete the profile and start a new one. In order to do that, follow the above steps, and replace step 5 and 6 with the following. Make sure that you backup your bookmarks before doing this, as they are a part of your profile and will disappear after doing this:

5. Locate the folder called "Default" in the directory window that opens and rename it as "Backup default."
6. Try opening Google Chrome again. A new "Default" folder is automatically created as you start using the browser.

Sumber : http://www.fourleaftechnology.com/index.php/General/google-chrome-profile-could-not-be-opened-correctly-error.html

BGP Lab Mikrotik

Berikut Topologinya:

=====konfigurasi R1=====
system identity set name=R1
ip address add interface=ether1 address=12.12.12.1/30
ip address add interface=ether2 address=13.13.13.1/30
ip address add interface=ether3 address=192.168.1.1/24

routing bgp instance set default as=65001

routing bgp network add network=192.168.1.0/24
routing bgp peer add name=to_R2 remote-address=12.12.12.2 remote-as=65002
routing bgp peer add name=to_R3 remote-address=13.13.13.2 remote-as=65003

=====konfigurasi R2=====
system identity set name=R2
ip address add interface=ether1 address=12.12.12.2/30
ip address add interface=ether2 address=24.24.24.1/30

routing bgp instance set default as=65002

routing bgp peer add name=to_R1 remote-address=12.12.12.1 remote-as=65001
routing bgp peer add name=to_R3 remote-address=24.24.24.2 remote-as=65004

=====konfigurasi R3=====
system identity set name=R3
ip address add interface=ether1 address=34.34.34.1/30
ip address add interface=ether2 address=13.13.13.2/30

routing bgp instance set default as=65003

routing bgp peer add name=to_R1 remote-address=13.13.13.1 remote-as=65001
routing bgp peer add name=to_R4 remote-address=34.34.34.2 remote-as=65004

=====konfigurasi R4=====
system identity set name=R4
ip address add interface=ether1 address=34.34.34.2/30
ip address add interface=ether2 address=24.24.24.2/30
ip address add interface=ether3 address=192.168.2.1/24

routing bgp instance set default as=65004

routing bgp network add network=192.168.2.0/24
routing bgp peer add name=to_R2 remote-address=24.24.24.1 remote-as=65002
routing bgp peer add name=to_R3 remote-address=34.34.34.1 remote-as=65003


Reff:
http://sinichireina.wordpress.com/2011/05/15/routing-bgp-mikrotik/
http://mendadakngeblog.wordpress.com/2012/01/21/lab-21-bgp-multihoming-multi-isp-equal-link-load-sharing/
http://mendadakngeblog.wordpress.com/2012/01/21/lab-22-bgp-multihoming-multi-isp-unequal-link-load-sharing/

OSPF Lab using Mikrotik

Berikut topologinya :


Untuk Router_Mikrotik
[admin@router] >ip address add address=192.168.1.1/24 interface=ether1
[admin@router] >ip address add address=10.10.10.1/30 interface=ether2
[admin@router] > routing ospf instance add name=ospf1
[admin@router] > routing ospf area add name=area1 instance=ospf1
[admin@router] >routing ospf network  add network=192.168.1.0/24 area=area1
[admin@router] >routing ospf network  add network=10.10.10.0/30 area=area1

Untuk Router_Mikrotik_2
[admin@router] >ip address add address=11.11.11.1/30 interface=ether1
[admin@router] >ip address add address=10.10.10.2/30 interface=ether2
[admin@router] >ip address add address=13.13.13.1/30 interface=ether3
[admin@router] > routing ospf instance add name=ospf1
[admin@router] > routing ospf area add name=area1 instance=ospf1
[admin@router] >routing ospf network  add network=10.10.10.0/30 area=area1
[admin@router] >routing ospf network  add network=11.11.11.0/30 area=area1
[admin@router] >routing ospf network  add network=13.13.13.0/30 area=area1

Untuk Router_Mikrotik_3
[admin@router] >ip address add address=11.11.11.2/30 interface=ether1
[admin@router] >ip address add address=12.12.12.1/30 interface=ether2
[admin@router] > routing ospf instance add name=ospf1
[admin@router] > routing ospf area add name=area1 instance=ospf1
[admin@router] >routing ospf network  add network=11.11.11.0/30 area=area1
[admin@router] >routing ospf network  add network=12.12.12.0/30 area=area1

Untuk Router_Mikrotik_4
[admin@router] >ip address add address=13.13.13.2/30 interface=ether1
[admin@router] >ip address add address=12.12.12.2/30 interface=ether2
[admin@router] >ip address add address=14.14.14.1/30 interface=ether3
[admin@router] > routing ospf instance add name=ospf1
[admin@router] > routing ospf area add name=area1 instance=ospf1
[admin@router] >routing ospf network  add network=13.13.13.0/30 area=area1
[admin@router] >routing ospf network  add network=12.12.12.0/30 area=area1
[admin@router] >routing ospf network  add network=14.14.14.0/30 area=area1


Reff:
http://kickdanang.wordpress.com/2013/04/21/membangun-router-ospf-pada-mikrotik-router-os-dengan-console-comand-line/

Filtering Mac-address dan STP Root Guard di berbagai vendor Switch

Berhubung saya nggak bisa tidur dan nanti harus kerja lagi, daripada kalau ketiduran nanti kebablasan, untuk mengisi waktu saya coba nulis aja deh tentang mac-filtering.

Mungkin untuk teman-teman yang kerja di ISP dan terkoneksi ke IIX AP*** seringkali kesulitan atau menemukan masalah saat ganti router BGP nya (atau mungkin pindah port), peer ke IIX nya jadi down. Padahal router BGP yang baru (port yang baru) sudah dikonfig sama persis dengan router / port yang lama. Sebenarnya kenapa sih?

Yuk, kita flashback sebentar.
Sebelum melakukan peering ke IIX biasanya ISP harus mengirimkan MoU ke NOC IIX. MoU ada di http://bit.ly/1kK1t7r. Di MoU, pada bab persyaratan teknis, point ke 6 tertulis seperti ini : 

Read more >>