ipxe iscsi boot fails, even in virtualbox
|
2014-01-17, 10:03
Post: #2
|
|||
|
|||
RE: ipxe iscsi boot fails, even in virtualbox
Where are you actually telling iPXE to boot from the root-path? Because with the information given, I don't think you are. You're close, however.
It looks like you're trying to run iPXE like syslinux. While that is a workable approach, you're going to have to embed some scripts to get it to do what you want. Without a script to run, iPXE is one sad bootloader. To get iPXE to boot from an iSCSI target, you need: 1) A valid IP address at the initiator side: e.g. Code: dhcp net0 2) Then you will need to "hook" the IQN which you have given as 'root-path': e.g. Code: sanboot --drive 0x80 ${root-path} What you probably want to do is embed a script into iPXE which does this for you. Better yet, embed a script which calls a script which does this for you: e.g. Code: touch myscript.ipxe And place into it something like: Code: #!ipxe To embed a script into iPXE, use the following arguments at compile time: Code: make bin/undionly.kpxe EMBED=myscript.ipxe And then create a file with your MAC in that directory on the server http://somewebserver.on.your.network: e.g. Code: touch 08-00-27-f0-87-56.ipxe And place into it something like: Code: #!ipxe If you're going to try to iSCSI boot Windows, you might want to try reading up on some issues you may run into here. Specifically, you may want to set in your chainloaded script (08-00-27-f0-87-56.ipxe), the following statement: Code: net0/gateway 0.0.0.0 For a script consisting of: Code: #!ipxe Make sure you read the WDS page to understand what is going on (and why Microsoft is/are off their bloody rocker). That should get you going. Best, M^3 "Thus far, you have been adrift within the sheltered harbor of my patience..." |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
ipxe iscsi boot fails, even in virtualbox - masterr-10da - 2014-01-16, 22:46
RE: ipxe iscsi boot fails, even in virtualbox - MultimediaMan - 2014-01-17 10:03
RE: ipxe iscsi boot fails, even in virtualbox - robinsmidsrod - 2014-01-20, 08:53
RE: ipxe iscsi boot fails, even in virtualbox - masterr-10da - 2014-01-22, 21:26
|
User(s) browsing this thread: 1 Guest(s)