Fog in general. I stopped my ISP dhcp box, created missing ipxe file and it finally works. One more time, thanks for your help !!
Posts made by jide
-
RE: Could not start download: Operation not supported (http://ipxe.org/3c092003)
-
RE: Could not start download: Operation not supported (http://ipxe.org/3c092003)
Yesss, it works !!! Thanks a lot for your help !!!
-
RE: Could not start download: Operation not supported (http://ipxe.org/3c092003)
Hello, you’re right, there’s 2 dhcp server on my network : my internet provider’s box and my linux dhcp server. When i’m asked for tftp ip adress , i set it to my linux tftp server and i got “tftp://x.x.x.x/default.ipxe” not such a file or directory (http://ipxe/2d12603b)
-
RE: Could not start download: Operation not supported (http://ipxe.org/3c092003)
@Sebastian-Roth : Thanks !!! Using downloaded version solves my problem. But the 2nd ipxe now ask me “Please enter tftp server:” …
-
RE: Could not start download: Operation not supported (http://ipxe.org/3c092003)
![alt text]( image url)
ovs setting and ipxe boot picture
(sorry for my poor english …)
-
RE: Could not start download: Operation not supported (http://ipxe.org/3c092003)
Fog version is : fog_1.2.0
i doesn’t use dnsmask
dhcp server conf is like :
ddns-update-style none;
option domain-name “srvfog.local.org”;
option domain-name-servers srvfog.local.org;default-lease-time 600;
max-lease-time 7200;
log-facility local7;subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.70 192.168.0.75;
next-server 192.168.0.100;
filename “undionly.kpxe”;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.0.255;
}my bridge startup script looks like that :
#!/bin/bash
VMPATH=“/home/blabla/VM/VMFILES/FOG/FOG.img”
MAC=“DE:AD:BE:EF:AC:87”
SCRIPTUP=“/etc/ovs-ifup”
SCRIPTDOWN=“/etc/ovs-ifdown”
ISO=“/home/blabla/VM/ISO/debian-8.5.0-amd64-netinst.iso”
VMPATH_snapshot=“/home/blabla/VM/VMFILES/FOG/FOG_snapshot.img”
CPU=“host”sudo qemu-kvm -m 1024 -net nic,macaddr=$MAC -cpu $CPU -vga vmware -net tap,script=$SCRIPTUP,downscript=$SCRIPTDOWN -drive file=$VMPATH
undionly.kpxe can be downloaded from guest, from host and others.
-
Could not start download: Operation not supported (http://ipxe.org/3c092003)
Hello,
during first fog setting on Debian GNU/Linux 8, i get this error booting my target systemCould not start download: Operation not supported (http://ipxe.org/3c092003)
target is qemu/kvm guest.
dhcp server is debian isc-dhcp-server
bridged network’s provided by openvswitchIs there someone who can help me ?