Elektrine lite

← Feed

@ampersandrew@lemmy.world

Post #3837788

2026-07-08 02:22 UTC

So what do you think might be the problem with it that I might check? As far as I know, if I’ve been assigned an IP address, DHCP is working.

Replies (1)

  • @Jenseitsjens@lemmy.world 2026-07-08 05:48

    DHCP usually provides three things: IP Address (+ subnet mask) Defaulft gateway IP DNS servers In the DHCP lease you for example get the IP 192.168.10.42/24. That IP is assigned to your interface which creates a implizit route like 192.168.10.0/24 dev netinterface. Now you know how to reach other hosts in your local network. In the same DHCP lease, you should also receive a default gateway - likely 192.168.10.1. this would add a route like default via 192.168.10.1. Without the default route, packets for IPs other than your local network never leave your host because it doesn’t know where to send them to. DNS servers are also provided, though before troubleshooting that, I would just ping addresses like 8.8.8.8 (google dns) for testing connectivity.

    Open ##3837787