Fact-checked by Grok 2 weeks ago

Default gateway

A default gateway is a router or network device configured on a host in a TCP/IP network that serves as the primary forwarding point for packets destined to addresses outside the host's local subnet. It enables communication between devices on a local network and remote networks, such as the internet, by acting as the "gateway of last resort" when no specific route matches the destination IP address in the host's routing table. When a initiates communication with a remote destination, it first performs a logical AND operation between the destination and its own subnet mask to determine if the target is local. If the destination is not on the local , the host encapsulates the packet and sends it to the default gateway's , which must reside within the same as the host to ensure direct reachability via resolution. The default gateway then examines the packet and forwards it toward the appropriate next hop based on its own configuration, potentially across multiple routers until reaching the destination . Configuration of the default gateway is typically automated via DHCP, where the server assigns the gateway IP alongside the host's IP address and subnet mask, or set manually during network setup. In environments with multiple subnets or VLANs, such as enterprise networks using Cisco equipment, the default gateway is often the IP address of a Layer 3 switch or router interface connecting the local segment to the broader infrastructure. Misconfiguration, such as pointing to an unreachable gateway or omitting it entirely, can isolate hosts from external resources while preserving local connectivity, underscoring its critical role in IP routing.

Overview

Definition

In computer networking, a default gateway refers to the of a router or gateway device that connects a local network to external networks, serving as the next-hop address for forwarding IP packets when the destination address does not match any specific route in the local device's . This mechanism enables hosts on a , such as computers or other devices, to communicate beyond their immediate local area without needing explicit routes for every possible external destination. The default gateway functions as the "gateway of last resort" during the routing decision process, where it is consulted only after more precise routes have been evaluated and found inapplicable. This role simplifies configuration for end devices by providing a single point of egress for unknown or remote traffic, relying on the gateway to perform further or forwarding to the appropriate . In IPv4 networks, the default gateway is conventionally represented in routing tables as the route /0, which encompasses all possible destinations. Similarly, in IPv6 networks, it is denoted by ::/0, serving the analogous purpose of a catch-all route for unspecified addresses. These notations ensure compatibility across protocols while maintaining the core principle of default forwarding.

Historical Development

The concept of the default gateway emerged with the development of TCP/ protocols in the late 1970s and early , as networks grew more hierarchical and administrators sought to simplify configurations. The ARPANET's full adoption of TCP/IP on January 1, 1983, marked a key milestone in this evolution, enabling broader use of simplified routing approaches on hosts. The foundational standardization of IP routing principles appeared in RFC 791, published in September 1981. This document defined the (IP) and outlined how hosts and gateways process and forward datagrams across interconnected networks. Further refinement came in RFC 1122 (1989), which detailed host requirements and explicitly described the mechanism for selecting a default gateway when no matching route exists in the local table. By the mid-1990s, the default gateway was formally defined for routers in RFC 1812, issued in June 1995, which updated requirements for IPv4 routers and explicitly characterized the as an entry directing all unspecified traffic (using prefix length zero) to a next-hop gateway. This standardization solidified its role in efficient forwarding, particularly as the expanded with diverse topologies, ensuring routers could handle incomplete tables without dropping packets. The evolution continued with the introduction of , where RFC 4291 (February 2006) defined the addressing architecture, including anycast addresses. The -router anycast address, for example, can be used to identify sets of routers on a , supporting to the nearest .

Functionality

Role in IP

In IP , when a attempts to send a packet to a destination for which no specific route exists in its , the packet is forwarded to the configured default gateway as the next hop. The default gateway, typically a router, receives the packet and consults its own to determine the appropriate path for further forwarding, effectively serving as the gateway of last resort for outbound traffic from the local network. This mechanism ensures that hosts do not require explicit routes for every possible external destination, simplifying network management while enabling efficient packet delivery across interconnected networks. The default gateway plays a pivotal role in facilitating connectivity for end devices, as it provides the essential pathway for destined beyond the local , allowing devices to access remote resources such as websites, servers, and other external without the overhead of maintaining comprehensive entries. By directing all non-local to this single point, it streamlines the process and supports scalable architectures where hosts focus primarily on local communications. For proper operation, the default gateway must reside on the same subnet as the host device, ensuring that the host can resolve the gateway's MAC address via ARP without requiring additional routing steps that could lead to loops or failures. This same-subnet requirement prevents issues in layer 2 address resolution, as ARP broadcasts are confined to the local broadcast domain, allowing direct communication between the host and the gateway interface.

Interaction with Routing Tables

In IP routing tables, the default gateway is represented by the default route entry, commonly denoted as 0.0.0.0/0 for IPv4 or ::/0 for IPv6, which specifies a prefix length of zero. This entry is the most general route in the table and functions as a fallback mechanism, directing all packets whose destination addresses do not match any more specific prefix to the configured next-hop gateway. As a result, it ensures connectivity to external networks by capturing unmatched traffic without requiring explicit entries for every possible destination. The interaction between the default route and other entries relies on the principle, a core requirement for forwarding. Routers select the route with the longest matching length for a given destination , meaning more specific routes—such as those for local subnets with /24 or longer es—take precedence over the . This hierarchy prevents unnecessary forwarding of internal traffic to the gateway, optimizing local network efficiency while reserving the for remote destinations. In routing tables supporting multiple sources, priorities for the are determined by assigned and protocol-specific , often referred to as in implementations like . For static routes, the default entry can be configured with a value that influences selection when multiple paths exist; lower indicate higher . In dynamic environments, values—ranging from 0 for connected interfaces to higher numbers for protocols like (120) or OSPF (110)—allow routers to favor more trustworthy sources, ensuring a static (typically distance 1) overrides a dynamically learned one from a less preferred protocol. Within the (OSPF) protocol, the is typically injected as an Autonomous System (AS)-external route, subject to OSPF's hierarchical selection process. OSPF prioritizes intra-area routes over inter-area and external routes, and among external routes, Type-1 (where path cost accumulates additively) are preferred over Type-2 (fixed external cost) when are equal. The for a in OSPF reflects the cost to the advertising router, influencing its selection only after more specific routes are considered, with the overall path cost computed via . In (BGP), propagation and selection follow a multi-step decision process outlined in BGP-4 specifications. BGP evaluates attributes sequentially: highest local preference, shortest AS path, lowest Multi-Exit Discriminator (MED), and then lowest Interior Gateway Protocol (IGP) metric to the BGP next hop. A originated in BGP (e.g., via the default-originate command or redistribution) inherits these criteria, often receiving a high local preference to ensure it is selected over less optimal paths, while external BGP (eBGP) routes generally take precedence over internal BGP (iBGP) due to loop prevention rules. This process integrates the into the global table without overriding longest prefix matches.

Configuration

On Host Devices

On host devices such as computers and mobile devices, the default gateway can be configured manually through operating system interfaces or automatically via (DHCP). Manual configuration allows administrators to specify a static and the corresponding gateway for environments requiring fixed network settings, such as servers or isolated networks. This process varies by operating system but typically involves editing network adapter properties or configuration files to include the gateway . In Windows, manual configuration of the default gateway is performed using the command in the Command Prompt or for command-line setup. For example, to set a static IP and gateway on an Ethernet adapter: netsh interface ip set address "Ethernet" static 192.168.1.10 255.255.255.0 192.168.1.1. Alternatively, through the , users navigate to Settings > Network & Internet > Ethernet (or ) > Change adapter options, right-click the adapter, select Properties, choose (/IPv4), and enter the gateway address in the Default gateway field. For distributions, manual methods differ by distribution and version. On modern systems (18.04 LTS and later, including 24.04 LTS as of 2025), the default tool is Netplan, which uses files for declarative . To set a static and gateway, edit a file such as /etc/netplan/01-netcfg.yaml with content like:
[network](/page/Network):
  version: 2
  renderer: networkd
  ethernets:
    enp0s3:
      dhcp4: no
      addresses: [192.168.1.10/24]
      routes:
        - to: default
          via: 192.168.1.1
      nameservers:
        addresses: [8.8.8.8, 8.8.4.4]
Apply changes with sudo netplan apply. For older Ubuntu systems using the legacy ifupdown method, editing /etc/network/interfaces was common, but this is deprecated in favor of Netplan. On modern systems (RHEL 8 and later, including RHEL 9 and 10 as of 2025), the tool is used via nmcli for persistent configuration, such as nmcli connection modify "Wired connection 1" ipv4.gateway 192.168.1.1. On macOS, manual configuration is typically done through System Settings under Network > [select interface, e.g., Wi-Fi or Ethernet] > Details > TCP/IP, where IPv4 Configuration is set to Manually, allowing entry of the IP address, subnet mask, and Router (default gateway) fields. For command-line automation, the networksetup utility can set these values, e.g., sudo networksetup -setmanual "Wi-Fi" 192.168.1.10 255.255.255.0 192.168.1.1. Mobile devices like iOS and Android primarily rely on DHCP but support manual entry via Settings > Wi-Fi > [network] > Configure IP > Manual, specifying the gateway alongside IP and subnet details. DHCP assignment provides the default gateway automatically during the IP lease process, eliminating the need for manual entry in dynamic environments. In the DHCP protocol, the server includes the default gateway as part of option 3, known as the Router option, which lists one or more addresses of routers on the client's , with the first typically serving as the primary default gateway. This option is encoded with a 1-octet code (3), a 1-octet length (multiple of 4), followed by 4-octet addresses, and is sent in the DHCPACK message to confirm the lease. Clients then add these as default routes in their routing tables. Verification of the default gateway on host devices involves inspecting the routing table using system-specific commands. On Linux, the ip route show (or ip route for brevity) command displays the routing table, with the default route appearing as default via <gateway IP> dev <interface>, confirming the active gateway. For example, ip route show default filters to show only the default entry. On Windows, route print outputs the full routing table in the command prompt, where the default gateway is listed under the interface's IPv4 route table as 0.0.0.0 0.0.0.0 <gateway IP> <interface metric>. These tools ensure the gateway is correctly set and active for outbound traffic beyond the local subnet.

On Routers and Gateways

Configuring default gateways on routers involves both static and dynamic methods to direct traffic lacking specific routes to an upstream next-hop device. In static configuration, administrators manually specify a on , ensuring predictable forwarding without reliance on protocols. For instance, on routers, the command ip route [0.0.0.0](/page/0.0.0.0) 0.0.0.0 <next-hop-IP> installs a pointing to the specified next-hop address, which serves as the gateway of last resort for unmatched destinations. Equivalent configurations exist in other vendor platforms; on , a static is set using set routing-options static route [0.0.0.0](/page/0.0.0.0)/0 next-hop <next-hop-IP> under the routing-options hierarchy, directing all non-local traffic accordingly. These manual entries provide simplicity for stable environments but require updates for changes. Dynamic protocols enable routers to advertise and learn automatically, enhancing scalability in larger networks. In OSPF, a router can originate a into its area using the default-information originate command under the OSPF process in , which injects the route only if a exists in the local ; the optional always keyword forces advertisement regardless. This aligns with OSPF's design in , where (destination ID , mask ) are used in areas to summarize external paths without flooding detailed AS-external LSAs. For BGP, advertisement to neighbors occurs via the neighbor <IP> default-originate command in , sending only the without requiring it in the local , or by including network [0.0.0.0](/page/0.0.0.0) under the BGP address family to redistribute an existing . BGP's capability for origination, as outlined in , supports inter-domain by allowing autonomous systems to summarize reachability efficiently. To mitigate single points of failure, redundancy protocols like VRRP and HSRP enable multiple routers to share a as the default gateway, providing seamless . VRRP, defined in RFC 5798, elects a master router from a group to own the virtual IP, with backups monitoring via hellos; upon master failure, priority-based election promotes a backup without host reconfiguration. HSRP, a Cisco-proprietary protocol, operates similarly by forming a standby group where the active router forwards traffic for the virtual IP, and standbys track status via hello packets, preempting if configured for higher-priority . Both protocols ensure sub-second convergence in software-defined networks by integrating with controllers for automated group management, maintaining default gateway availability across distributed routing fabrics.

Examples

Single Router Setup

In a single router setup, common in home or small office local area networks (s), all connected devices configure the router's LAN interface as their default gateway to access external networks like the . For instance, devices on a private subnet such as 192.168.1.0/24 typically receive like 192.168.1.10 via DHCP, with the router's LAN (e.g., 192.168.1.1) set as the default gateway; the router bridges the private LAN to the public (WAN) using (NAT), enabling multiple internal devices to share one public allocated by the . When a device initiates traffic to a non-local destination, such as an external , its operating system consults the and forwards the packet to the default gateway since no more specific route exists. The device then performs an (ARP) query to obtain the router's Media Access Control (: it broadcasts an ARP request packet containing the target (the default gateway's ) across the local Ethernet segment, prompting the router to an ARP reply with its . The sending device encapsulates the original within a layer-2 frame using the router's MAC as the destination and its own MAC as the source, transmitting it over the ; upon receipt, the router strips the layer-2 header, applies to modify the source and port to its WAN interface details, recalculates the , and routes the packet toward the via its connection. A frequent configuration error in these environments involves an incorrect subnet mask on host devices, which can disrupt the device's ability to recognize the default gateway as locally reachable. For example, if the subnet mask is set too narrowly (e.g., 255.255.255.128 on a /24 network where the host is in 192.168.1.0/25 and the gateway in 192.168.1.128/25), the host may treat the gateway as off-subnet and fail to directly for it, instead attempting to reach a non-existent next-hop router; conversely, an overly broad mask (e.g., 255.255.0.0) can cause the host to treat some remote destinations as local, bypassing the gateway and leading to failures for external traffic. This leads to failed reachability, preventing outbound traffic and isolating the device from the despite correct and gateway assignments.

Multi-Router Environments

In multi-router environments, such as or networks, default gateways facilitate hierarchical by directing from local segments to higher-level infrastructure. At the edge layer, routers or Layer 3 switches act as the default gateway for end hosts in specific VLANs, encapsulating and forwarding inter-VLAN or inter-subnet toward or routers that aggregate paths and apply policies. This layered approach, common in routed access designs, optimizes and by limiting broadcast domains while enabling efficient upstream for non-local destinations. To enhance performance and resilience, load balancing via Equal-Cost Multi-Path (ECMP) routing distributes default gateway traffic across multiple equivalent paths to core routers or beyond. ECMP algorithms, typically hash-based on packet headers like source/destination and ports, select among equal-metric routes to flows without reordering packets within a session, thereby increasing aggregate for outbound traffic in environments with parallel links. This technique is widely supported in protocols like OSPF and BGP, where multiple default routes can be installed if they share the same and metric. IPv6 considerations in dual-stack multi-router setups involve distinct handling of Unique Local Addresses (ULAs) and global unicast addresses for default gateway operations. ULAs (fc00::/7 prefix) enable site-local routing, where edge default gateways forward traffic internally without propagating to core or borders, enforced by filtering rules to prevent leakage. In contrast, global default gateways, advertised via Router Advertisements, route traffic to external networks, with address selection algorithms prioritizing global over ULA sources/destinations to favor connectivity in dual-stack hosts. This separation supports seamless internal isolation alongside external reachability, though policy tables may adjust preferences to optimize path selection across stacks.

Management and Utilities

Inspection Tools

Inspection tools for default gateways enable users to view and analyze routing configurations without altering them, aiding in verification of settings established during configuration. On systems, the netstat -rn command displays the , where the default gateway appears as the destination 0.0.0.0 or default with its associated in the gateway column. This output lists active routes numerically (-n flag suppresses name resolution for efficiency), allowing quick identification of the gateway used for external traffic. For example, an entry like 0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 eth0 indicates 192.168.1.1 as the default gateway on interface eth0. In Windows environments, the route print command outputs the IP routing table, highlighting the default gateway under the "Active Routes" section as the entry for network destination 0.0.0.0 with mask 0.0.0.0. This reveals the gateway IP, interface, and metric, such as 0.0.0.0 0.0.0.0 192.168.1.1 25, confirming the next hop for non-local traffic. Complementing this, ipconfig /all provides per-adapter details, including the "Default Gateway" field directly under the IPv4 configuration for each interface. For instance, it might show Default Gateway . . . . . . . . . : 192.168.1.1, offering a straightforward view of the configured gateway without delving into full routing tables. Advanced command-line utilities extend inspection by testing connectivity and paths involving the default gateway. The command on systems (or tracert on Windows) traces the route packets take to a destination, with the first typically being the default gateway, revealing its and response time. Running traceroute 8.8.8.8 might output the gateway as 1 192.168.1.1 1.2 ms, confirming its role in forwarding packets beyond the local . Similarly, interacts with DNS s, whose queries often route through the default gateway, allowing verification of resolution paths by specifying a server (e.g., nslookup example.com 8.8.8.8) and observing if external DNS access succeeds, indirectly validating gateway functionality for name resolution. Graphical user interfaces provide accessible alternatives for inspecting default gateway settings. In Windows, the Network Connections panel, accessed via Control Panel > Network and Sharing Center > Change adapter settings, allows right-clicking an adapter and selecting Properties > (TCP/IPv4) > Properties to view the "Default gateway" field. Alternatively, Settings > Network & > Status > View hardware and connection properties lists the gateway under each connection's IPv4 details. On systems using , the nmcli tool offers a terminal-based equivalent; nmcli device show extracts gateway information via grep [IP4.GATEWAY](/page/Grep), displaying lines like IP4.GATEWAY[1]: 192.168.1.1, while nmcli connection show <connection-name> provides full IPv4 config including the gateway for verification against initial setup. These tools collectively support passive analysis of default gateway configurations across platforms.

Troubleshooting Techniques

Common issues with default gateways include the presence of multiple gateways on a , which can lead to disruptions such as intermittent or suboptimal paths due to the operating system selecting the gateway with the lowest . In multi-homed setups, conflicts arise when interfaces have competing default routes, causing traffic to favor one path unexpectedly and potentially resulting in asymmetric . Unreachable gateways often stem from problems, such as cabling faults or loose connections, preventing the host from communicating with the gateway device. Duplicate gateways may also induce loops if configurations allow packets to cycle between devices without progressing toward the destination. The diagnostic process begins with pinging the default gateway IP address from the host; a "Destination Host Unreachable" response indicates the gateway is misconfigured or inaccessible at the local level. Next, inspect the cache using commands like arp -a on Windows or ip neigh show on to verify if the gateway's is resolved; an incomplete entry suggests Layer 2 resolution failures. For deeper analysis, capture network packets with during ping attempts to the gateway, looking for ICMP echoes without replies or requests that go unanswered, which highlight or resolution issues. To resolve these problems, flush the routing table to clear erroneous default routes; on Linux, use ip route flush table main to remove all routes except connected ones, then re-add the correct default gateway. On Windows, execute route delete 0.0.0.0 to eliminate the default route and recreate it via DHCP or static configuration. If the gateway is assigned via DHCP, reset the lease with ipconfig /release followed by ipconfig /renew on Windows or dhclient -r and dhclient on Linux to obtain fresh network parameters, potentially correcting misassigned gateways. Finally, review and adjust firewall rules that may block traffic to or from the gateway IP, such as inbound ICMP restrictions, by enabling necessary allowances in tools like Windows Defender Firewall or iptables.

References

  1. [1]
    TCP/IP addressing and subnetting - Windows Client | Microsoft Learn
    Jan 15, 2025 · In TCP/IP terms, a router that is specified on a host, which links the host's subnet to other networks, is called a default gateway.
  2. [2]
  3. [3]
  4. [4]
    RFC 5505: Principles of Internet Host Configuration
    Default gateway(s) Once a default gateway is configured on an interface, hosts with an IP address can send unicast IP packets to that gateway for forwarding ...<|control11|><|separator|>
  5. [5]
    Configure a Gateway of Last Resort that Uses IP Commands - Cisco
    Use the ip default-network or ip route 0.0.0.0 0.0.0.0 commands to set the gateway of last resort on Cisco routers that have ip routing enabled.
  6. [6]
    Default Gateway vs. Gateway of Last Resort - Cisco Community
    Aug 14, 2002 · Gateway of last resort is a generic term which describes the capability of an host/device to send all the L3 traffic, not otherwise specified, ...
  7. [7]
    RFC 4098: Terminology for Benchmarking BGP Device ...
    The notation for a default route for IPv4 is 0.0.0.0/0 and for IPv6 it is 0 ... See also: Routes, Route Instances, Default Route. 4.1.4. Default-Free ...
  8. [8]
    RFC 4191: Default Router Preferences and More-Specific Routes
    ... ::/0 overrides the High default router preference. If the ::/0 specific route were not present, then a type C host would apply the High default router ...
  9. [9]
    Internet History of 1980s
    In January, the ARPANET standardizes on the TCP/IP protocols adopted by the Department of Defense (DOD). The Defense Communications Agency decides to split the ...
  10. [10]
    An Overview of TCP/IP Protocols and the Internet
    Jul 21, 2019 · This memo provides a broad overview of the Internet and TCP/IP, with an emphasis on history, terms, and concepts.
  11. [11]
    RFC 1122 - Requirements for Internet Hosts - Communication Layers
    Requirements for Internet Hosts - Communication Layers (RFC 1122, ) ... default" gateway and sends the datagram to it. It also builds a ...
  12. [12]
    RFC 1812 - Requirements for IP Version 4 Routers - IETF Datatracker
    RFC 1812 Requirements for IP Version 4 Routers June 1995 Default Route A routing table entry that is used to direct any data addressed to any network ...
  13. [13]
    11.4. Static Routes and the Default Gateway - Red Hat Documentation
    The default gateway is for any and all traffic which is not destined for the local network and for which no preferred route is specified in the routing table.
  14. [14]
    RFC 5505 - Principles of Internet Host Configuration - IETF Datatracker
    Mar 2, 2013 · Default gateway(s) Once a default gateway is configured on an interface, hosts with an IP address can send unicast IP packets to that ...
  15. [15]
    Why do PCs need a default gateway to be configured on them?
    May 2, 2023 · Without a default gateway configured on the PC , it will not know where to send packets destined for IP addresses outside of its own subnet, and ...
  16. [16]
    IP Addresses, Subnet Masks, and Default Gateways
    The default gateway always resides in the same subnet as the end device IP. The gateway address can really be any unique address within the subnet itself, but ...Ip Addresses, Subnet Masks... · Default Gateways · BroadcastsMissing: authoritative | Show results with:authoritative
  17. [17]
    Setting a default gateway which is on a different subnet - Server Fault
    Apr 29, 2015 · Setting a default gateway on a different subnet is difficult because the system needs to know which address within its subnet to send packets ...
  18. [18]
    Describe Administrative Distance - Cisco
    Sep 27, 2024 · Administrative distance is the first criterion that a router uses to determine which routing protocol to use if two protocols provide route information for the ...
  19. [19]
    RFC 2328 - OSPF Version 2 - IETF Datatracker
    This memo documents version 2 of the OSPF protocol. OSPF is a link-state routing protocol. It is designed to be run internal to a single Autonomous System.
  20. [20]
    RFC 4271 - A Border Gateway Protocol 4 (BGP-4) - IETF Datatracker
    This document discusses the Border Gateway Protocol (BGP), which is an inter-Autonomous System routing protocol.Missing: OSPF | Show results with:OSPF
  21. [21]
    Change IP address of a network adapter - Windows Server
    Jan 15, 2025 · At the command prompt, type ipconfig /release, and then press ENTER. Type ipconfig /renew, and then press ENTER. The network adapter is assigned ...
  22. [22]
    Essential Network Settings and Tasks in Windows - Microsoft Support
    Under Edit IP settings, choose Manual, then turn on IPv4. To specify an IP address, in the IP address, Subnet mask, and Gateway boxes, type the IP address ...
  23. [23]
    NetworkConfigurationCommand...
    Aug 14, 2009 · Configure a Static IP address by editing /etc/network/interfaces. Replace eth0 with your network interface card (see Find Network Interface Card) ...
  24. [24]
    Chapter 24. Managing the default gateway setting
    You can also set or update the default gateway setting on a previously created connection by using the nmcli utility.
  25. [25]
    Change TCP/IP settings on Mac - Apple Support
    To change these settings, choose Apple menu > System Settings, click Network in the sidebar, click a network service, click Details, then click TCP/IP.Missing: gateway | Show results with:gateway
  26. [26]
  27. [27]
    route - Microsoft Learn
    Feb 3, 2023 · The `route` command displays and modifies the local IP routing table. It can add, change, delete, or print routes.
  28. [28]
    Configure Static Routes | Junos OS - Juniper Networks
    You also configure a static default route of 0.0.0.0/0 on the customer device (R2), using a next-hop address of 172.16.1.1. The default route ensures the ...
  29. [29]
    Identify how OSPF Injects a Default Route in a Normal Area - Cisco
    In order for OSPF to generate a default route, you must use the default-information originate command. There are two ways to advertise a default route into a ...
  30. [30]
    Configure BGP to Advertise a Default Route on Nexus Switches
    Dec 4, 2018 · This document describes the configuration Border Gateway Protocol to advertise Default Route to BGP neighbors on Cisco Nexus NX-OS based Switches.
  31. [31]
    RFC 4271: A Border Gateway Protocol 4 (BGP-4)
    BGP-4 is an inter-Autonomous System routing protocol that exchanges network reachability information, supports CIDR, and allows route aggregation.
  32. [32]
    RFC 5798 - Virtual Router Redundancy Protocol (VRRP) Version 3 ...
    VRRP specifies an election protocol that dynamically assigns responsibility for a virtual router to one of the VRRP routers on a LAN.
  33. [33]
    Understand the Hot Standby Router Protocol Features and ... - Cisco
    One way to achieve near-100 percent network uptime is to use HSRP, which provides network redundancy for IP networks, and ensures that user traffic immediately ...HSRP Operation · Cisco IOS® Release and... · Preempt Delay · InterfaceTracking
  34. [34]
    [PDF] VRRPv3 Protocol Support - Cisco
    Virtual Router Redundancy Protocol (VRRP) enables a group of devices to form a single virtual device to provide redundancy. The LAN clients can then be ...
  35. [35]
    Network Address Translation (NAT) Frequently Asked Questions
    Basically, NAT allows a single device, such as a router, to act as an agent between the Internet (or public network) and a local network (or private network), ...
  36. [36]
    Traditional ARP – Address Resolution Protocol
    The Address Resolution Protocol maps a known IP address to an unknown MAC address. This article will discuss the ARP Request and ARP Response packets.
  37. [37]
    Troubleshooting TCP/IP - Cisco Systems
    If the destination is on a different subnet, then try pinging the default gateway or appropriate next hop obtained from the routing table. If the ping fails, ...
  38. [38]
    Cisco Intersight Virtual Appliance and Intersight Assist Getting ...
    Incorrect or invalid Default Gateway—If the DNS server is outside your network, an invalid default gateway impacts the connectivity to external hosts.
  39. [39]
    High Availability Campus Network Design--Routed Access Layer ...
    Aug 29, 2008 · This document provides design guidance for implementing a routed (Layer 3 switched) access layer using EIGRP or OSPF as the campus routing protocol.
  40. [40]
    [PDF] Campus Network for High Availability Design Guide - Cisco
    May 21, 2008 · Default gateway redundancy is an important component in convergence in a hierarchical network design. You can reliably tune HSRP/GLBP timers ...
  41. [41]
    RFC 2992 - Analysis of an Equal-Cost Multi-Path Algorithm
    Equal-cost multi-path (ECMP) is a routing technique for routing packets along multiple paths of equal cost. The router must decide which next-hop (path) to use.
  42. [42]
    [PDF] ECMP Load Balancing - Cisco
    Equal-cost multi-path routing (ECMP) is a routing strategy where next-hop packet forwarding to a single destination can occur over multiple "best paths" ...
  43. [43]
    RFC 4193: Unique Local IPv6 Unicast Addresses
    This document defines an IPv6 unicast address format that is globally unique and is intended for local communications, usually inside of a site.
  44. [44]
    RFC 6724: Default Address Selection for Internet Protocol Version 6 (IPv6)
    ### Summary of RFC 6724: Default Address Selection for IPv6
  45. [45]
    How Do I Find Out My Linux Gateway / Router IP Address? - nixCraft
    Aug 18, 2024 · Explains how to use the, ip, route and netstat commands to find out find out my Linux Gateway / Router IP Address.
  46. [46]
    How to Find Default Gateway IP in Linux
    Apr 2, 2019 · To display the gateway information, you can use the netstat command and display the routing table that consists the gateway as well. netstat -r ...
  47. [47]
    Default gateway route doesn't appear in Routing Table - Windows ...
    Jan 15, 2025 · Click Start, click Run, type cmd in the Open box, and then click OK. · Type route print, and then press ENTER to view the routing table. · Type ...
  48. [48]
    ipconfig - Microsoft Learn
    Feb 3, 2023 · Used without parameters, ipconfig displays Internet Protocol version 4 (IPv4) and IPv6 addresses, subnet mask, and default gateway for all ...
  49. [49]
    How to Use TRACERT to Troubleshoot TCP/IP Problems in Windows
    You can use TRACERT to find out where a packet stopped on the network. In the following example, the default gateway has found that there is no valid path for ...
  50. [50]
    Use the Traceroute Command on Operating Systems - Cisco
    The traceroute command allows you to determine the path a packet takes in order to get to a destination from a given source by returning the sequence of hops ...
  51. [51]
    nslookup | Microsoft Learn
    Nov 1, 2024 · Displays information that you can use to diagnose Domain Name System (DNS) infrastructure. Before using this tool, you should be familiar with how DNS works.
  52. [52]
    How to check the network adapter settings in Windows (IP address ...
    Mar 10, 2022 · In Windows 10, click Start > Settings > Control Panel > Network and Internet > Network and Sharing Center > Change adapter settings.
  53. [53]
    How do I use nmcli to display the default route - Ask Ubuntu
    Oct 19, 2015 · Your default gateway is the output of nmcli d show | grep gw. Sample output, IP4.ADDRESS[1]: ip = 192.168.20.61/24, gw = 192.168.20.11Modifying default gateway with nmcli (Ubuntu 18.04 LTS)Network manager no default route - Ask UbuntuMore results from askubuntu.com
  54. [54]
    Multiple default gateways can cause connectivity problems
    Jan 15, 2025 · This article describes the connectivity issues that occur when multiple default gateways are used in TCP/IP configuration options.<|control11|><|separator|>
  55. [55]
    Fixing Default Gateway Not Available Issues: Ultimate Guide - Avica
    Dec 13, 2023 · Faulty Hardware Connections: Physical issues such as loose cables or malfunctioning network hardware can disrupt the connection to the default ...
  56. [56]
    How to avoid routing loops because of router default route entry?
    Mar 31, 2012 · Routers use TTL to prevent loops by dropping packets when TTL reaches zero. Good network design and routing protocols also help avoid loops.Multiple default gateways on Windows - Super UserHow does a Windows computer behave when it has multiple default ...More results from superuser.comMissing: duplicate | Show results with:duplicate
  57. [57]
    Troubleshooting IP Default Gateway issues - Extreme Networks
    Nov 5, 2013 · A ping response of "Destination Host Unreachable" is a solid indicator that there's a Default Gateway misconfiguration on the initiating PC.Missing: cabling faults
  58. [58]
    A beginner's guide to network troubleshooting in Linux - Red Hat
    Sep 24, 2019 · A common problem you might encounter is an ARP entry that won't populate, particularly for your host's default gateway. If your localhost can't ...
  59. [59]
    ARP Response Issue - Cisco Community
    Feb 5, 2015 · Your PC is pinging the default gateway and all of a sudden it loses the ARP entry from its cache. This doesn't sound good. What version of ...
  60. [60]
    D.2. ip route - Linux-IP.Net
    The flush option, when used with ip route empties a routing table or removes the route for a particular destination. In Example D.26, “Removing a specific route ...
  61. [61]
    How to flush route table in windows? - Stack Overflow
    Mar 16, 2012 · I am trying to write a program that changes the default gateway of network time by time. But it seems that there are caches on the route table ...ip route del does not delete entire tablelinux - Cached route does not reflect route tableMore results from stackoverflow.com
  62. [62]
    Networking: Release and Renew IP Address
    When you type "ipconfig /renew" into the command line, that command orders your DHCP client to renegotiate an IP address lease with the DHCP server on your ...
  63. [63]
    Why is My Firewall, making my default gateway unavailable
    Apr 7, 2023 · Try resetting the firewall on the antivirus to the default settings. Check to see if this fixes the problem.<|control11|><|separator|>