[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[debian-users:50611] openbsdのPXEを利用して,etch をインストール
takesimaです。
レポートです。
実は http://www.openbsd.org/faq/faq6.html#PXE と
http://www.debian-administration.org/articles/478 と
に従いした。
具体的には以下でした。
internet
|
openbsd firewall
|
etch fiewall
192.168.33.250
|
HUB----192.168.33.3(openbsd PXE)
|
PC(A)
この環境下で 192.168.33.3(openbsd PXE) を利用して、 PC(A) にetchを入
れます。
openbsd で PXEのサーバーを 走らす準備です。
# cat /etc/dhcpd.conf
----------------------
shared-network LOCAL-NET {
option domain-name "my.domain";
subnet 192.168.33.0 netmask 255.255.255.0 {
option domain-name-servers 202.224.xxx.xxx; <-伏字
option routers 192.168.33.3;
filename "pxelinux.0";
range 192.168.33.151 192.168.33.155;
}
}
# cat /etc/dhcpd.interfaces
-------------------------
fxp0
# more /etc/sysctl.conf
--------------------------
net.inet.ip.forwarding=1
...
# ls -l /tftpboot/
total 40
-rw-r--r-- 1 root wheel 97 Jun 3 07:44 boot.txt
drwxr-xr-x 3 root wheel 512 Jun 3 07:42 debian
-rw-r--r-- 1 root wheel 13480 Feb 7 21:01 pxelinux.0
drwxr-xr-x 2 root wheel 512 Jun 3 07:47 pxelinux.cfg
以上。