[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debian-users:45532] DHCP サーバの構築について



上林申します。

dhcp3-server package を利用して DHCP サーバーを立てようとしています。

NIC を 2枚差して
    LAN --(eth0,eth1)--local LAN
上記のような構成で local LAN 側に、
dhc-client を置こうとしています。

DHCP サーバーを立てるPC を pcA
DHC client のPC を pcB とします。

行なった順序は、
1, pcA にて eth1 の認識
~# /etc/init.d/networking stop
~# cat /etc/network/interfaces
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

auto eth1
iface eth1 inet static
        address 192.168.1.1
        netmask 255.255.255.0
~# /etc/init.d/networking start
ifconfig に  eth0,eth1 があることをcheck。

2, dhcp3-server(dhcp3-common,gdhcpd) をinstall、
   /etc/default/dhcp3-server,/etc/dhcp3/dhcpd.confを編集。
~# cat /etc/default/dhcp3-server
INTERFACES="eth1"
~# cat /etc/dhcp3/dhcpd.conf
ddns-update-style none;
option domain-name "example.org";
option domain-name-servers 192.168.1.1;
default-lease-time 600;
max-lease-time 7200;
authoritative;
log-facility local7;
subnet 192.168.1.0 netmask 255.255.255.0 {
    range 192.168.1.20 192.168.1.30;
    option routers 192.168.1.1;
    option broadcast-address 192.168.1.255;
    option subnet-mask 255.255.255.0;
}
とい書いて、
 /etc/init.d/dhcp3-server restart
Starting DHCP server: dhcpd3.
を確認。

3, pcBにて /etc/init.d/networking restart。
Listining on LPF/eth0/*****************
Sending on LPF/eth0/*****************
Sending on Socket/fallback/fallback-net
DHCDISCOVER on eth0 to 255.255.255.255 port 67 interval {3,7,15,20,14}
No DHCPOFFRES recived
No working lease in persistent database.
Exiting.
Failed to bring up eth0.
done
となり、つながりません。ちなみに pcB のでは
~# cat /etc/network/interface
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
です。

どうもDHCPサーバー(pcA)が接続の許可を出してないように
見えるのですが、何処を修正すれば良いのでしょうか?

よろしくお願いします。

--
Kazuhiko Uebayashi