Debian Buster Network: Difference between revisions

From embeddedTS Manuals
(fix missing EOF)
(make here-docs more idiomatic)
Line 5: Line 5:
DHCP on eth0:
DHCP on eth0:
<source lang=bash>
<source lang=bash>
tee /etc/network/interfaces.d/eth0 <<EOF >/dev/null
cat > /etc/network/interfaces.d/eth0 <<EOF
auto eth0
auto eth0
allow-hotplug eth0
allow-hotplug eth0
Line 14: Line 14:
Static IP on eth0:
Static IP on eth0:
<source lang=bash>
<source lang=bash>
tee /etc/network/interfaces.d/eth0 <<EOF >/dev/null
cat > /etc/network/interfaces.d/eth0 <<EOF
auto eth0
auto eth0
iface eth0 inet static
iface eth0 inet static

Revision as of 13:58, 13 September 2020

The network in Debian is configured /etc/network/interfaces.d/. For complete documentation, see Debian's documentation here

Some common examples are shown below.

DHCP on eth0:

cat > /etc/network/interfaces.d/eth0 <<EOF
auto eth0
allow-hotplug eth0
iface eth0 inet dhcp
EOF

Static IP on eth0:

cat > /etc/network/interfaces.d/eth0 <<EOF
auto eth0
iface eth0 inet static
    address 192.0.2.7/24
    gateway 192.0.2.254
EOF