• Before you configure any redundancy protocol, let's take a moment to feel the problem it solves.
    For this lesson, forget the administrator role: you are a regular user, sitting at PC1 in a small office network.

    Check Your Gateway

    Here is the network you work in every day.
    Your LAN has a single exit toward the outside world, and that exit is R1.

    Network diagram illustrating the need for a default gateway, introducing the concept of First Hop Redundancy Protocol (FHRP) to ensure gateway availability.

    Figure 1 – One router serves as your default gateway

    Let's start by checking which gateway your PC actually uses.
    Run the following command:

    PC1> ipconfig
    
    Ethernet adapter Ethernet:
    
       IPv4 Address. . . . . . . . . . . : 192.168.10.101
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Default Gateway . . . . . . . . . : 192.168.10.1

    As you can see, your default gateway is 192.168.10.1, which is the physical address of R1.
    Every single packet you send outside your subnet 192.168.10.0/24 travels through that one address.

    Answer the question below

    What is the IP address of PC1?

    Test the Connectivity

    Now let's confirm that this gateway does its job.
    Send a ping to 8.8.8.8, a public address on the Internet:

    PC1> ping 8.8.8.8
    
    Pinging 8.8.8.8 with 32 bytes of data:
    
    Reply from 8.8.8.8: bytes=32 time<1ms TTL=254
    Reply from 8.8.8.8: bytes=32 time<1ms TTL=254
    Reply from 8.8.8.8: bytes=32 time<1ms TTL=254
    Reply from 8.8.8.8: bytes=32 time<1ms TTL=254
    
    Ping statistics for 8.8.8.8:
        Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),

    You received four replies, which means your packets crossed R1, reached the Internet, and came back without any problem.

    Diagram showing the role of a default gateway in network communication, highlighting the importance of First Hop Redundancy Protocol (FHRP) for availability.

    Figure 2 – Your traffic reaches the Internet through R1

    Everything works as expected.
    You browse, you stream, and you never have to think about R1: it quietly does its job in the background.

    Answer the question below

    Which address is PC1's default gateway?