View Single Post
  #2   (View Single Post)  
Old 30th November 2018
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

Let's start with a level-set on routing. Please excuse me if this is review.

---

In IP, a routing table contains two entries: a destination subnet, and the "next hop" to get there. For example, let us pretend that communication is to flow between system A and system E:

[A] - [B] - [C] - [D] - [E]

The routing table in system A needs to have an entry for a subnet which includes the address of system E, which points to the "next hop" system B. That's all it needs. B then needs to know about C, and so on. For returning traffic, system E needs to know to use its "next hop" D to reach A.

---

Your router's address changed, and your OpenBSD system had been statically configured. To use my example, if your OpenBSD firewall is "B" and your "outside" local router is "C", the address of "C" changed on that "B to C" local network.

---

A default route is a "next hop" entry for the subnet 0.0.0.0/0. This is "all IP addresses." A system on a local network with a single router will have a default route entry that points to the "next hop" local router. That is the only way to reach "all IP addresses" that aren't on the local subnet.

Last edited by jggimi; 30th November 2018 at 11:36 AM. Reason: typos and clarity
Reply With Quote