Skip to content

Instantly share code, notes, and snippets.

@kitten77
Last active November 3, 2017 08:49
Show Gist options
  • Save kitten77/3ec5b3b2d3f5fc0744bd0eebb5dd2db6 to your computer and use it in GitHub Desktop.
Save kitten77/3ec5b3b2d3f5fc0744bd0eebb5dd2db6 to your computer and use it in GitHub Desktop.
debian 9 network problem
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto eth0
allow-hotplug eth0
iface eth0 inet dhcp
iface eth0 inet6 dhcp
auto lo
iface lo inet loopback
the network dosent start after a reboot
@kitten77
Copy link
Author

kitten77 commented Nov 3, 2017

Solution was too change this line:

  • iface eth0 dhcp
    +iface eth0 inet dhcp

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment