1
内部ネットワークの他のマシンからDHCPサーバーからIPを取得する
私は2つの仮想マシンを持っています。 1つのブリッジアダプタと3つの内部ネットワークアダプタを持つDebian(ルータ) 1つの内部ネットワークアダプタを持つUbuntu 私はDebian DHCPサーバにインストールしました。UbuntuマシンにDebianにインストールされているDHCPサーバからIPアドレスを取得してもらいたいです。しかし、それは機能していません。 私の設定ファイル: Debian /etc/network/interfaces # The loopback network interface auto lo iface lo inet loopback # The primary network interface allow-hotplug eth0 iface eth0 inet dhcp # servers auto eth1 iface eth1 inet static address 192.168.1.1 netmask 255.255.255.0 # administration auto eth2 iface eth2 inet static …