Debian 10でifconfigコマンドを使用してIPまたはネットワークの詳細を取得しようとすると、「ifconfig:コマンドが見つかりません」というエラーが発生します。
-bash: ifconfig: command not found
ifconfigパッケージはDebianにデフォルトでインストールされていません。これは、ifconfigが廃止されて新しいipコマンドが採用されているためです 。このipコマンドは、ルーティング、ネットワークデバイス、インターフェイス、およびトンネルの変更または表示を担当するようになりました。
それでも古き良きifconfigコマンドを使用したい場合は、明示的にインストールする必要があります。
Debianにifconfigコマンドをインストールする
ifconfigコマンドを直接インストールしようとすると、Debianシステムはこのパッケージを見つけられません。
[email protected]:~# apt install ifconfig
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package ifconfig
これは、ifconfig自体がパッケージではないためです。これは、いくつかの追加のネットワーキングツールを含むnet-toolsパッケージとともにインストールされます。
したがって、ifconfigを取得するには、次のようなnet-toolsパッケージをインストールする必要があります。
sudo apt install net-tools
インストールしたら、ifconfigコマンドを使用します:
[email protected]:~# ifconfig
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 172.124.55.175 netmask 255.255.255.0 broadcast 172.124.55.255
inet6 2400:8966::f03c:92ff:fe32:ffef prefixlen 64 scopeid 0x0<global>
inet6 fe80::f03c:99ff:fe32:ffef prefixlen 64 scopeid 0x20<link>
ether f2:3c:92:32:ff:df txqueuelen 1000 (Ethernet)
RX packets 1623 bytes 421318 (411.4 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 876 bytes 108871 (106.3 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
ただし、IPコマンドの使用を開始することを強くお勧めします。遅かれ早かれ、net-toolsは完全に廃止され、インストールできなくなります。