Blog Posts

  • Best Wifi Modem Router Combo for Cox: Top Picks for Seamless Connectivity

    Best Wifi Modem Router Combo for Cox: Top Picks for Seamless Connectivity

    Finding the best WiFi modem router combo for Cox can be challenging. The right device ensures seamless internet connectivity and top speeds. Selecting a modem router combo that matches your internet plan is crucial. Cox provides various internet plans, so it’s important to choose a device that can handle the speed and connectivity requirements. We…

    Read more

  • Best Wifi Modem Router Combo for Spectrum: Top Picks for High Speeds

    Best Wifi Modem Router Combo for Spectrum: Top Picks for High Speeds

    Finding the best WiFi modem router combo for Spectrum can be a challenge. There are many options to consider. Choosing the right modem router combo ensures a smooth and fast internet connection. Popular models include the ARRIS SBG10, SBG8300, SBG7600AC2, and the NETGEAR Nighthawk series. Each offers unique features, speeds, and compatibility with Spectrum. Whether…

    Read more

  • Best Wifi Modem Router Combo for Xfinity: Top 5 Picks Reviewed

    Best Wifi Modem Router Combo for Xfinity: Top 5 Picks Reviewed

    Finding the perfect WiFi modem router combo for Xfinity can be daunting. We have curated a list of the best options available. Choosing the right modem router combo ensures seamless internet connectivity. Xfinity offers various compatible devices, making it crucial to pick the best one for your needs. Whether you need high-speed internet for streaming,…

    Read more

  • 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…

  • VPN Configuration step by step

    VPN Configuration step by step

    Virtual Private Network (VPN): Virtual: Virtual means not genuine or in another state of being. In a VPN, private communication between 2 or many devices is accomplished through with a public network the Internet. Consequently, communication is virtually but not physically there. Private: Private means to hold something hidden from the universal public. While those…