1

新しい Debian 9 で静的 IP を取得できません。

私のetc/network/interfacesで私は以下を持っています

# This file describes the network interfaces available on your system
# and how to activate them

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
allow-hotplug eth0
iface eth0 inet static
address 192.168.88.10
netmask 255.255.255.0
gateway 192.168.88.1   // this is my router ip
network 192.168.88.0   // this is I don't know why, but I saw it in most of instructions
broadcast 192.168.88.255
dns-nameservers 192.168.88.1

それから私はこれをします

service networking restart

そして、私はエラーが発生しました

Job for networking.service failed because the control process exited with error code.
See "systemctl status networking.service" and "journalctl -xe" for details.
4

3 に答える 3

0

私の場合、 resolv.conf ファイルを手動で書き込み、既存のものを削除する必要がありました。何らかの理由で、システムが resolv.conf ファイルを静的 IP に設定しているときに書き込めません。

その後、動作します!

于 2018-07-28T22:08:34.267 に答える