Comment 0 for bug 1844889

Revision history for this message
SiKing (mark-lehky) wrote :

I just installed Raspbian-Buster-Lite on an RPi3B.
Connected all cables including *wired ether* and booted up.
I have no Internet!

```
pi@raspberrypi:~ $ cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)

# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'

# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d
pi@raspberrypi:~ $ ls -lA /etc/network/interfaces.d/
total 0
```

That does not seem right?

After adding
```
auto lo eth0
iface lo inet loopback
iface eth0 inet dhcp
```
to /etc/network/interfaces and reboot, Internet works just fine. I was just expecting for it to work out of the box.

Am I missing something?