debian 9.4で固定IPアドレスLANカード(NIC)の変更
作成:2018-09-04 更新:2018-09-04Debina9から、LANカードのデバイス名が変更になった。
以下のように、 lshw -class network で、 logical name を調べる。
root@hoge:/home/kurita# lshw -class network
*-network
description: Ethernet interface
product: 82572EI Gigabit Ethernet Controller (Copper)
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:03:00.0
logical name: enp3s0
この場合、enp3s0。
/etc/network/interfaces の allow-hotplug ifaceの後を確認したデバイス名に置き換える。
設定の反映のため reboot する。
# 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 lo
iface lo inet loopback
# The primary network interface
allow-hotplug enp3s0
iface enp3s0 inet static
address 192.168.1.16/24
gateway 192.168.1.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 192.168.1.1
dns-search ****.***
確認は ip addr 。