Author: Yohan Naftali


  • Port Forwarding dengan Ubuntu

    Port forwarding pada Ubuntu: Skenario: IP source terhubung dengan IP Public sedangkan Komputer Destination hanya terhubung pada local area network tanpa adanya koneksi IP Public. IP Source : 203.123.123.123:8080 IP Destination: 192.168.1.2:80 ->203.123.123.123:8080 -> 192.168.1.2:80 Edit sysctl.conf: sudo nano /etc/sysctl.conf Uncomment pada line #net.ipv4.ip_forward=0 Ubah menjadi net.ipv4.ip_forward=1 Uncomment pada line #net/ipv6/conf/default/forwarding=1 Ubah menjadi: net/ipv6/conf/default/forwarding=1 Enable Forwarding…


  • Menghubungkan Console Port Router Cisco dengan Mac OS X

    Untuk menghubungkan Mac OS X system USB Port ke console router menggunakan built-in OS X Terminal 1. Tekan command + spasi lalu ketik terminal 2. Pasang usb kabel untuk menghubungkan Mac dan router 3. Ketikkan commands berikut ini untuk mencari no port: macbook:user$ cd /dev macbook:user$ ls -ltr /dev/*usb* akan muncul tampilan crw-rw-rw- 1 root wheel…


  • Internet of Things (IoT)

    Internet of Things, atau dikenal juga dengan singkatan IoT, merupakan sebuah konsep yang bertujuan untuk memperluas manfaat dari konektivitas internet yang tersambung secara terus-menerus. Adapun kemampuan seperti berbagi data, remote control, dan sebagainya, termasuk juga pada benda di dunia nyata. Contohnya bahan pangan, elektronik, koleksi, peralatan apa saja, termasuk benda hidup yang semuanya tersambung ke…


  • Natural Scroll for System-Wide Ubuntu

    To have natural scroll for ubuntu that applied to system wide, do the following command on terminal:     sudo nano /usr/share/X11/xorg.conf.d/20-natural-scrolling.conf Then in the editor copy (ctrl+c) and paste (ctrl+shift+v) below: Section “InputClass”      Identifier “natural scrolling for mouse wheel”     MatchIsPointer “on”     MatchDevicePath “/dev/input/event*”     Driver “mouse”     Option “Device” “/dev/input/mice”    …


  • Set Static Local IP Address for Raspberry Pi

    By default raspberrry use dhcp to get local ip address, to set manually local ip address open LX Terminal and run command below: sudo nano /etc/network/interfaces Find eth0 block auto eth0 iface eth0 inet dhcp and change to : auto eth0 iface eth0 inet static address 192.168.1.44         # <– your static local…