Skip to content

Commit 9bd4181

Browse files
committed
network: add example file that enables DHCP on ethernet links
The file has instructions how to "enable" it by symlinking into the appropriate place. If we create a different mechanism to do enablement later on, we can always adjust the instructions. Closes systemd#3998.
1 parent 418e1f2 commit 9bd4181

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# SPDX-License-Identifier: CC0-1.0
2+
#
3+
# This example config file is installed as part of systemd.
4+
# It may be freely copied and edited (following the Creative Commons Zero v1.0 Universal License).
5+
#
6+
# To use the file, one of the following methods may be used:
7+
# 1. add a symlink from /etc/systemd/network to the current location of this file,
8+
# 2. copy the file into /etc/systemd/network or one of the other paths checked
9+
# by systemd-networkd and edit it there.
10+
# This file should not be edited in place, because it'll be overwritten on upgrades.
11+
12+
# Enable DHCPv4 and DHCPv6 on all ethernet links
13+
[Match]
14+
Type=ether
15+
16+
[Network]
17+
DHCP=yes

network/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ if conf.get('ENABLE_NETWORKD') == 1
55
'80-container-host0.network',
66
'80-container-ve.network',
77
'80-container-vz.network',
8+
'80-ethernet.network.example',
89
'80-vm-vt.network',
910
'80-wifi-adhoc.network',
1011
'80-wifi-ap.network.example',

0 commit comments

Comments
 (0)