Blog Posts

  • Best Wi-Fi Routers for Large Apartments: Top Choices for Seamless Connectivity

    Best Wi-Fi Routers for Large Apartments: Top Choices for Seamless Connectivity

    Finding the best Wi-Fi routers for large apartments can be challenging. Reliable internet is essential for work and entertainment. In this post, we’ll explore the top Wi-Fi routers that ensure strong connectivity across large apartments. From the advanced TP-Link AX3000 to the robust Google Nest Wifi, these routers cater to various needs and budgets. Whether…

    Read more

  • Best Wi-Fi Routers for Multiple Devices: Top Picks for Seamless Connectivity

    Best Wi-Fi Routers for Multiple Devices: Top Picks for Seamless Connectivity

    Choosing the best Wi-Fi router for multiple devices can be challenging. You need a reliable router to handle many connections. In today’s connected world, having a reliable Wi-Fi router is essential. With multiple devices in every home, from smartphones to smart TVs, a strong and stable internet connection is necessary. The right Wi-Fi router can…

    Read more

  • Best Wi-Fi Routers for Remote Work: Top Picks for Seamless Connectivity

    Best Wi-Fi Routers for Remote Work: Top Picks for Seamless Connectivity

    Reliable internet is crucial for remote work. Choosing the right Wi-Fi router can greatly improve your work-from-home experience. With remote work becoming more common, having a dependable Wi-Fi router is essential. A high-quality router ensures a stable and fast internet connection, which is vital for video calls, file transfers, and online collaboration. In this blog…

    Read more

  • How to setup FTP server || Free FTP server

    FTP(File Transfer Protocol): FTP is one kind of protocol. It is a standard Internet protocol for transmitting files between one computer to another computer among the Internet. You can use Windows, Linux but I will discuss windows PC. If you can get a file instant from a specific  address and even if you can store.…

  • VLAN configuration step by step || Configure VLAN

    VLAN configuration step by step || Configure VLAN

    VLAN Concept: The virtual local area network (VLAN) is a group of devices one or more Local Area Network. A Local Area Network (LAN) was primitively defined as a network of computers placed within the equal area. Now, Local Area Networks are specified as a separate broadcast domain. This implies that whenever a user broadcasts…

  • Basic static route configuration

    Basic static route configuration

      Routing is the process of receiving a packet from one device broadcasting it through the network to another device in various networks. Step 1: putting  ip address to the interface: configure Router 1: Router1(config)# interface fastEthernet 0/0 Router1(config-if)#ip add 10.0.0.1  255.0.0.0 Router1(config-if)#no shutdown Router1(config)#int fa 0/1 Router1(config-if)#ip add 40.0.0.1  255.0.0.0 Router1(config-if)#no shutdown   configure…

  • basic Cisco router configuration

    basic Cisco router configuration

    It is a simple Topology for the basic Cisco router configuration. I will show step by step Cisco command mode with video. Access of  CISCO router: =================== 1.Line Consol From RS232 port to Router Console  port 2. Virtually (Line Vty) a.Telnet Starting point : on packet tracer > Router > double click  > CLI mode open…

  • Load balancing on MikroTik

    Load balancing on MikroTik

    Bandwidth Merge or Load Balance with Failover is One of the most generally utilized applications of load balancing is to supply a single Internet service from double services, such as when we take from two ISP internet line 4Mbps+4Mbps=8Mbps than it will be equal 8Mbps. If we do two ISP line merge than we will…

  • GRE over IPsec using MikroTik

    GRE over IPsec using MikroTik

      Mikrotik-1GRE Tunnel and IP Address Configuration: MikroTik1> ip address add address=10.10.10.2/30 interface=ether1 MikroTik1> ip address add address=192.168.1.1/24 interface=ether5 MikroTik1> interface gre add name= gre-tunnel1 local-address=10.10.10.2 remote-address=10.10.10.6 MikroTik1> ip address add address=172.16.1.1/30 interface= gre-tunnel1   Mikrotik-1 Router IPSec VPN Configuration:  MikroTik-1>ip ipsec peer>add address=10.10.10.6/32:500 auth-method=pre-shared-key secret=”password” generate-policy=no exchange-mode=main send-initial-contact=yes nat-traversal=no proposal-check=obey hash-algorithm=sha1 enc-algorithm=3des dh-group=modp1024 lifetime=1d…

  • Port Forwarding in MikroTik

    Port Forwarding in MikroTik

    Why Port forward is needed? Port forwarding is the process of forwarding a request to a public IP and a port number to a local IP. Works from LAN to local IP and from outside to public IP. Port forwarding is commonly used on servers to increase security. From the outside, many people scan different…