Default gateway
A default gateway is the node in a computer network using the Internet protocol suite that serves as the forwarding host to other networks when no other route specification matches the destination IP address of a packet.
Role
A gateway is a network node that serves as an access point to another network, often involving not only a change of addressing, but also a different networking technology. More narrowly defined, a router merely forwards packets between networks with different network prefixes. The networking software stack of each computer contains a routing table that specifies which interface is used for transmission and which router on the network is responsible for forwarding to a specific set of addresses. If none of these forwarding rules is appropriate for a given destination address, the default gateway is chosen as the router of last resort. The default gateway can be specified by the route command to configure the node's routing table and default route.In a home or small office environment, the default gateway is a device, such as a DSL router or cable router, that connects the local network to the Internet. It serves as the default gateway for all network devices.
Enterprise network systems may require many internal network segments. A device wishing to communicate with a host on the public Internet, for example, forwards the packet to the default gateway for its network segment. This router also has a default route configured to a device on an adjacent network, one hop closer to the public network.
Examples
Single router
The following example shows IP addresses that might be used with an office network that consists of six hosts plus a router. The six hosts addresses are:- 192.168.4.3
- 192.168.4.4
- 192.168.4.5
- 192.168.4.6
- 192.168.4.7
- 192.168.4.8
- 192.168.4.1
- 255.255.255.0
The office's hosts send packets to addresses within this range directly, by resolving the destination IP address into a MAC address with the Address Resolution Protocol sequence and then encapsulates the IP packet into a MAC frame addressed to the destination host.
A packet addressed outside of this range, for this example, addressed to 192.168.12.3, cannot travel directly to the destination. Instead it must be sent to the default gateway for further routing to their ultimate destination. In this example, the default gateway uses the IP address 192.168.4.1, which is resolved into a MAC address with ARP in the usual way. The destination IP address remains 192.168.12.3, but the next-hop MAC address is that of the gateway, rather than of the ultimate destination.
Multi-router
In another example, a network with three routers and three hosts is connected to the Internet through Router1. The hosts' addresses are:- PC1 10.1.1.100, default gateway 10.1.1.1
- PC2 172.16.1.100, default gateway 172.16.1.1
- PC3 192.168.1.100, default gateway 192.168.1.96
- Interface 1 5.5.5.2
- Interface 2 10.1.1.1
- Interface 1 10.1.1.2
- Interface 2 172.16.1.1
- Interface 1 10.1.1.3
- Interface 2 192.168.1.96
Router1
| Network ID | Network mask | Gateway | Interface | Cost |
| 0.0.0.0 | 0.0.0.0 | Assigned by ISP | eth0 | 10 |
| 10.1.1.0 | 255.255.255.0 | 10.1.1.1 | eth1 | 10 |
| 172.16.1.0 | 255.255.255.0 | 10.1.1.2 | eth1 | 10 |
| 192.168.1.0 | 255.255.255.0 | 10.1.1.3 | eth1 | 10 |
Router2
| Network ID | Network mask | Gateway | Interface | Cost |
| 0.0.0.0 | 0.0.0.0 | 10.1.1.1 | eth0 | 10 |
| 172.16.1.0 | 255.255.255.0 | 172.16.1.1 | eth1 | 10 |
Router3
| Network ID | Network mask | Gateway | Interface | Cost |
| 0.0.0.0 | 0.0.0.0 | 10.1.1.1 | eth0 | 10 |
| 192.168.1.0 | 255.255.255.0 | 192.168.1.96 | eth1 | 10 |
Router2 manages its attached networks and default gateway; router 3 does the same; router 1 manages all routes within the internal networks.
; Accessing internal resources
; Accessing external resources
; The packet doesn't return
Utilities
Various utility software can show the default gateway. On Windows,ipconfig may be used, while on Unix systems, ifconfig or netstat may be used. On Linux netstat has been superseded by iproute2.