0

I understand that ISP modem is a combo box made up of modem, router and switch. When it is in unbridged mode, the internal rotuer WAN simply recieve ISP ip address and its LAN interface is statically configured to be 192.168.1.1. This way the HOST can access modem configuration through 192.168.1.1.

enter image description here

However when it is bridged the router component "dissapear". Conceptually it looks like enter image description here

However under this configuration I can still access the modem configuration page through 192.168.1.1. How is this possible, according to the diagram 192.168.1.1 is not reachable anymore?

5
  • 1
    Whether it is bridged or not it is still your gateway and therefore has a local IP address.
    – DavidPostill
    Commented May 23, 2018 at 13:09
  • 1
    Possible duplicate of Why I can still access modem GUI when it is bridged?
    – harrymc
    Commented May 23, 2018 at 13:40
  • @David: But the whole point of bridge mode is that the device isn't the gateway anymore, at IP layer. It is not used for the default route. Commented May 23, 2018 at 13:56
  • @grawity So, in that case the diagram is incomplete. There must be another gateway device somewhere ...
    – DavidPostill
    Commented May 23, 2018 at 14:10
  • @DavidPostill: Yes, in this case the host would be talking directly to a router on the ISP's network. Commented May 23, 2018 at 14:39

1 Answer 1

1

I understand that ISP modem is a combo box made up of modem, router and switch. When it is in unbridged mode, the internal rotuer WAN simply recieve ISP ip address and its LAN interface is statically configured to be 192.168.1.1. This way the HOST can access modem configuration through 192.168.1.1.

Correct.

In your first diagram, the modem and switch don't have their own IP addresses; they're just chips managed by the same CPU which performs routing. (I...think a relevant term is "control plane"?)

(But a dedicated modem or switch device can and often will have an IP address for management.)

However when it is bridged the router component "dissapear". Conceptually it looks like [diagram]

Well, it's only removed from the packet path, but doesn't disappear entirely. It's still there, and it still has an IP address.

In router mode, an inbound Ethernet frame is processed like this:

  1. If the destination MAC matches the router's MAC, pass it up to the 'router', which will handle it according to destination IP.
  2. Otherwise, discard the frame.

In bridge mode, you could say that an inbound Ethernet frame is processed like this:

  1. If the destination MAC matches the router's MAC, pass it up to the 'router', which will handle it according to destination IP.
  2. Otherwise, forward the frame to other suitable bridge ports.

It's that 2nd part which lets your host bypass the router and talk directly to the ISP. But if your host tries to reach the modem/router/switch specifically, that still works exactly as before. (And depending on how it's configured, it could still act as a router too.)

(I wrote "could say" because the two steps actually get merged into one – the MAC is looked up in the bridge's FDB, and the frame either forwarded to an Ethernet port or to the "CPU" port. But for visualization purposes, the description is still acceptable.)

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .