Wednesday, November 27, 2024

OBJECT ORIENTED PROGRAMMING (OOP)

**i' am using php, but the concept can use in any programming language.*understanding programming in procedural is required.CLASS and OBJECT.like the picture above (click pict), we made class and object (using command "class and new")."class is blueprint" and with blueprint we can made objects, is like house plan can make real home/house.PROPERTY AND METHOD.Look at picture on left (Click Pict)at it simplest... we called variable in OOP as property.and...

Thursday, May 30, 2024

Static Routing Advanced Explained by Fiance Ticoalu (Mikrotik)

As we understand it... routing is about finding the best path.static routing is relative simple..where is the connected network and where is the remote network, next  set up  dst-address and gateway in the routers... if working ...finish. But it's not that simple. 1. Routing Component:- RIB ( Routing Information Base ) / Routing Table- FIB ( Forwarding Information Base ) / Forwarding Table- RIB (Routing Table) contains route data to...

Monday, May 27, 2024

Load Balancing explained by Fiance Ticoalu (MikroTik)

 The purpose of load balancing, at it simplest : minimizing overload traffic in a path/link. List of load balancing type/algorithm :1. Per packet load balancing2. Per connection load balancing3. Per address-pair load balancing4. Custom load balancing1. PER PACKET LOAD BALANCING. The packets from one session will be split and forward to multiple path. Example: packets from one session from ip address 192.168.1.1/24 to www.youtube.com ...

Wednesday, March 13, 2024

JNCIA LAB

This lab requires :-Simulation/ Emulator Software GNS3 -Oracle VM VirtualBox-And Juniper Junos Olive Image( you can search it on google or copy this link (download and how to install) "https://www.youtube.com/watch?v=14uMxKgos9I")Recomended hardware requirments:-CPU: 4 Cores Intel or AMD High end Procesors.-RAM: 8GB DDR3/4-Storage: SSD >128GB-OS: Windows 10 Pro.I. STATIC ROUTING SINGLE HOP AND MULTI HOPI.1 - Static route single hop: the objectif...

Saturday, January 13, 2024

Linux Fundamental

Can use any linux distribution, I use Ubuntu Server 22.04 (Jammy Jellyfish)okay let's go1. File Hierarchy "/" slash is like C in windows OS, yes... file system. root directory of the entire file system.Like the picture above, u can practice it. in the "/" contain some folders (blue color) and file(white color).2. Navigating File -Absolute Path : always starts with "/" (enter the root directory first)example :-Relative Path : not necessarily...