Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions conf/turnkey.d/networking
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash -e

# it should be enabled by default but doesn't appear to be?
systemctl enable networking.service

if ! grep -s '^noarp' /etc/dhcpcd.conf; then
cat >> /etc/dhcpcd.conf <<EOF

# disable ARP probe - consistent behavior with udhcpd & works around slow
# network start on boot for some buggy DHCP implementations
noarp
EOF
fi
2 changes: 2 additions & 0 deletions overlays/turnkey.d/interfaces/etc/network/interfaces
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ iface lo inet loopback

auto eth0
iface eth0 inet dhcp
iface eth0 inet6 dhcp
hostname _UNCONFIGURED_

allow-hotplug eth1
iface eth1 inet dhcp
iface eth1 inet6 dhcp
hostname _UNCONFIGURED_
67 changes: 0 additions & 67 deletions overlays/turnkey.d/udhcpc-fix/etc/udhcpc/default.script

This file was deleted.

2 changes: 1 addition & 1 deletion plans/net
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ bind9-host # Version of 'host' bundled with BIND 9.X
netbase # Basic TCP/IP networking system
net-tools # The NET-3 networking toolkit
iproute2 # networking and traffic control tools
udhcpc # very small DHCP client
dhcpcd-base # A very small DHCPv4 and DHCPv6 client
traceroute # Traces the route taken by packets over a tcp/ip network
iputils-ping # Tools to test the reachability of network hosts