私は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 address 192.168.2.1
netmask 255.255.255.0
# hotel guests
auto eth3
iface eth3 inet
static address 192.168.3.1
netmask 255.255.255.0
そして /etc/dhcp/dhcpd.conf
subnet 192.168.3.0 netmask 255.255.255.0 {
eth3;
range 192.168.3.2 192.168.3.254;
option routers 192.168.3.1;
option domain-name-servers 192.168.1.2;
}
DHCPとネットワークの再起動 - エラーなし
Ubuntuマシン:
/etc/network/interfaces
auto lo
iface lo inet loopback
auto eth1
iface eth1 inet dhcp
次、 service networking restart
私はこのメッセージを受け取ります:
IPアドレスが割り当てられていません。どうして? もっと情報を与えますか?
何かアイデアはありますか?
—
lukassz