Ubuntuメモ DHCPサーバ
# aptitude install dhcp3-server
DHCPサーバを立てるインターフェースを限定する
# vi /etc/default/dhcp3-server
INTERFACES=""
↓
INTERFACES="eth0"
DHCPで割り振られるアドレスは192.168.1.150〜200とする。
# vi /etc/dhcp3/dhcpd.conf
option domain-name "example.com";
option domain-name-servers ns1.example.com, ns2.example.com;
↑DNSサーバを指定?よくわかっていない。
defalut-lease-time 600;
max-lease-time 7200;
subnet 192.168.1.1 netmask 255.255.255.0 {
raige 192.168.1.150 192.168.1.200;
option domain-name-servers ns1.example.com, ns2.example.com;
option routers 192.168.1.1;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
default-lease-time 600;
max-lease-time 7200;
}
再起動
/etc/init.d/dhcp3-server restart
ローカルPCで192.168.1.150アドレスが取得できたのでOK
DHCPサーバを立てるインターフェースを限定する
# vi /etc/default/dhcp3-server
INTERFACES=""
↓
INTERFACES="eth0"
DHCPで割り振られるアドレスは192.168.1.150〜200とする。
# vi /etc/dhcp3/dhcpd.conf
option domain-name "example.com";
option domain-name-servers ns1.example.com, ns2.example.com;
↑DNSサーバを指定?よくわかっていない。
defalut-lease-time 600;
max-lease-time 7200;
subnet 192.168.1.1 netmask 255.255.255.0 {
raige 192.168.1.150 192.168.1.200;
option domain-name-servers ns1.example.com, ns2.example.com;
option routers 192.168.1.1;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
default-lease-time 600;
max-lease-time 7200;
}
再起動
/etc/init.d/dhcp3-server restart
ローカルPCで192.168.1.150アドレスが取得できたのでOK
time stamp:2010/03/22 14:31:32
トラックバック(0)|コメント(0)
トラックバック(0)|コメント(0)
この記事のトラックバックURL:
コメントを書く
何かしら