Sharing Ilmu

Sharing for useful things

Configuration InterVLAN Routing / Router On Stick on Cisco Packet Tracer

On vlan network, device in one vlan id with another vlan id can’t be connected each other. It can connected with same vlan only.  To can be connected, we can use InterVLAN router. intervlan routing also called as router on stick (ROS).  Requires router device and sub-interface router as their respective network gateways.  Intervlan routing

How To Configuration VLAN Trunk Cisco Packet Tracer

In this tutorial I’ll discuss about how to configuration vlan trunk on  switch cisco packet tracer. Vlan trunk can be carrier multiple vlan, use for point to point connection between two switch, switch and router, switch and server. It can be load multiple vlan connection in one time. The following is the topologi are used

How To Configure Port range VLAN cisco packet tracer

In the preceding tutorial I have discuss about How To Configure VLAN on Cisco Packet Tracer with single port assign. In this tutorial I’ll discuss about configure vlan with range port assign. The topologi are same with previous article : Configure ip address for PC :   Create vlan 10 with name Staff on global

How To Configure VLAN on Cisco Packet Tracer

In this tutorial I’ll discuss about how to configuration vlan on switch cisco packet tracer.  Vlan are used for divide single broadcast domain become several broadcast domain. Default vlan is VLAN 1. For vlan number can be use number 2 – 1001. You can configure vlan on managable switch. The following is the topologi are

How To Configure DNS Server ubuntu server 20.04 LTS

In this tutorial I’ll discuss about how to configuration dns server on ubuntu server 20.04 LTS. DNS are used for translate ip address to domain and vice versa. Fist For configuration dns server change ip address configuration. Open netplan configuration. root@Taufik:~# nano /etc/netplan/00-installer-config.yaml Configure dns on nameservers. Set ip dns is address of those server

How To Install & Configure CMS WordPress Ubuntu Server 20.04 LTS

In this tutorial I’ll discuss about how to install and configuration CMS WordPress on ubuntu server 20.04.  For step by step installation the cms make sure you have installed webserver and database server on your system.  For how to install web server you can see at article How To Install webserver (Apache,PHP) ubuntu server 20.04

How To install and configure SSH ubuntu server 20.04 LTS

In this tutorial I’ll discuss about how to install and configuration ssh service on ubuntu server 20.04 LTS. SSH service is using for remote access connection so that you can access the server from another network or another place remotely. It can make your job easier. Install ssh packet with openssh-server : root@Taufik:~# apt-get install

How To Install and Configure Database Mysql/Mariadb Server ubuntu server 20.04 LTS

In this tutorial I’ll discuss about how to install and configuration database server on ubuntu server 20.04.  on ubuntu 20.04 we use mariadb for database server. Make sure your server already connected to internet. Install database server : root@Taufik:~# apt-get install mariadb-server mariadb-client php7.4-mysql   Configure mysql secure installation : root@Taufik:~# mysql_secure_installation NOTE: RUNNING ALL

How To Configuration Apache2 (Custom html directory) ubuntu server 20.04

In preceding tutorial I have discuss about How To Install webserver (Apache,PHP) ubuntu server 20.04 and in this article I’ll discuss about how to configuration custom html directory in apache2 service. First, Make sure you has been install the apache2 webserver. Then change directory  /etc/apache2/sites-available/ directory. root@Taufik:~# cd /etc/apache2/sites-available/ root@Taufik:/etc/apache2/sites-available#   Copy default configuration file to

How To Install webserver (Apache,PHP) ubuntu server 20.04

In this tutorial I’ll discuss about how to install webserver on ubuntu server 20.04. For installation packages you have to make sure the server has been connected to internet. Do network configuration first at the following article How To Configuration Network on Ubuntu server 20.04. Update sistem : root@Taufik:~# apt-get update   Install Apache2 packages