Bonjour,

Je travail avec VirtualBox en réseau interne.


J'ai un serveur fog qui fait office de serveur dhcp également.

J'ai configuré le service dhcp (/etc/dhcp/dhcpd.conf).

Quand je démarre sur le réseau avec un client, il obtient une config IP mais indique :
http://192.168.51.71/fog/service/ipxe/boot.php... Network unreachable (http://ipxe.org/280a6011)
could not boot : Network unreachable (http://ipxe.org/280a6011)


Adresse IP du serveur : 10.23.2.1
Adresse IP obtenue par le client : 10.23.2.10


Config du service DHCP :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
option space PXE;
option PXE.mtftp-ip code 1 = ip-address;
option PXE.mtftp-cport code 2 = unsigned integer 16;
option PXE.mtftp-sport code 3 = unsigned integer 16;
option PXE.mtftp-tmout code 4 = unsigned integer 8;
option PXE.mtftp-delay code 5 = unsigned integer 8;
option arch code 93 = unsigned integer 16;
use-host-decl-names on;
ddns-update-style interim;
ignore client-updates;
 
 
# Specify subnet of ether device you do NOT want service.
# For systems with two or more ethernet devices.
# subnet 136.165.0.0 netmask 255.255.0.0 {}
#subnet 192.168.51.0 netmask 255.255.255.0{
subnet 10.23.2.0 netmask 255.255.255.0{
    option subnet-mask 255.255.255.0;
    range dynamic-bootp 10.23.2.10 10.23.2.254;
    default-lease-time 21600;
    max-lease-time 43200;
    #option routers 0.0.0.0
    #option routers 0.0.0.0
    next-server 10.23.2.1;
    class "Legacy" {
        match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00000";
        filename "undionly.kkpxe";
    }
    class "UEFI-32-2" {
        match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00002";
        filename "i386-efi/ipxe.efi";
    }
    class "UEFI-32-1" {
        match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00006";
        filename "i386-efi/ipxe.efi";



Une idée d'où peut venir le problème ?

Merci d'avance