Hello,
in first thank a lot for your answer.
For my test i’m going to work with a virtual machine with only one interface, then forget the “3 networks”
I begin by installing fog like that :
(i use my own dhcp server)
Type d’installation : N
IP du serveur FOG : 192.168.39.243
Would you like to setup a router address for the DHCP server? : n
Would you like to setup a DNS address for the DHCP server and client boot image? : n
Would you like to change the default network interface from eth0? : n
Would you like to use the FOG server for DHCP service? n
This version of FOG has internationalization support, would you like to install the additional language packs? n
My own dhcp server is configured like that (it has 192.168.39.247 for ip address):
subnet 192.168.39.0 netmask 255.255.255.0 {
range 192.168.39.40 192.168.39.230;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.39.255;
option routers 192.168.39.254;
next-server 192.168.39.247;
filename “pxelinux.0”;
}
then next server is the dhcp server itself
Here is a part of the PXE configuration (on my own dhcp server. (The dhcp server act as dhcp, tftp and pxe server)
DEFAULT vesamenu.c32
KBDMAP fr.kbd
MENU BACKGROUND splash.jpg
menu color title 1;37;40 #ffffffff #00000000 std
menu color timeout_msg 37;40 #80ffffff #00000000 std
menu color timeout 1;31;40 #ffff0000 #00000000 std
menu color border 30;44 #00000000 #00000000 none
TIMEOUT 300
ALLOWOPTIONS 0
PROMPT 0
MENU TITLE MENU
LABEL BootNormal
MENU LABEL Boot local
MENU DEFAULT
COM32 chain.c32
APPEND hd0
LABEL Drivers_Universels
MENU LABEL Drivers Universels
KERNEL memdisk
APPEND keeppxe floppy initrd=ghost/universels.img
LABEL hdt
MENU LABEL Hardware Detection Tool
COM32 hdt/hdt.c32
APPEND modules=hdt/modules.pcimap pciids=hdt/pci.ids
LABEL memtest
MENU LABEL Memtest86+
LINUX hdt/memtest86±4.20.bin
My question is how i could add entry for fog server using ipxe while i’m iusing pxe (pxelinux.0)
Thanks again for your help