Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
wiki:qemupxe [2009/05/22 19:53] less1 |
wiki:qemupxe [2009/05/23 08:10] (current) less1 |
||
---|---|---|---|
Line 35: | Line 35: | ||
- pxe assumes that it is talking to //tftp// server and its request for file <code>tftp://10.0.0.88//gtest.gpxe</code> will be mapped to ///home/myname/pxe/gtest.gpxe// file. | - pxe assumes that it is talking to //tftp// server and its request for file <code>tftp://10.0.0.88//gtest.gpxe</code> will be mapped to ///home/myname/pxe/gtest.gpxe// file. | ||
+ | ===== qemu with HTTP ===== | ||
+ | For this test, all that you need to have is gpxe.dsk and following command should work without any problems. | ||
+ | <code> | ||
+ | qemu -fda gpxe.dsk -net nic -net user -bootp http://etherboot.org/gtest/gtest.gpxe | ||
+ | </code> | ||
+ | |||
+ | I also created the copy of gtest on my own web server for testing purpose, and it worked with following command. | ||
+ | <code> | ||
+ | $ qemu -fda gpxe.dsk -net nic -net user -bootp http://10.0.0.2/gpxe/gtest.gpxe | ||
+ | </code> | ||