Boot multi client - Printable Version +- iPXE discussion forum (https://forum.ipxe.org) +-- Forum: iPXE user forums (/forumdisplay.php?fid=1) +--- Forum: General (/forumdisplay.php?fid=2) +--- Thread: Boot multi client (/showthread.php?tid=7535) |
Boot multi client - ThomasNguyen - 2014-11-12 10:35 Hi All I try to build a system boot 20 client's by windows server 2008 r2 but it cannot connect iscsi target (iSCSITarget MCR 3.3) + IP server:192.168.2.200 + iscsi target IQN : iqn.1991-05.com.microsoft:win-u0tje9eaisj-iscsiserver-target This is my script #!ipxe dhcp net0 set initiator-iqn 1 set root-path iscsi:192.168.2.200::::iqn.1991-05.com.microsoft:win-u0tje9eaisj-iscsiserver-target set keep-san 1 This video client boot http://youtu.be/JDvEQdOBNvs i don't what's it please help me RE: Boot multi client - robinsmidsrod - 2014-12-03 16:14 Use the following script to boot the iSCSI volume: Code: #!ipxe Use the following script to hook the iSCSI volume for installation: Code: #!ipxe That initiator-iqn you specified (1) looks invalid. Make sure you use the correct syntax. It should look similar (but not equal) to the target URL. PS: The youtube video link is broken. RE: Boot multi client - ThomasNguyen - 2015-01-05 07:31 Thanks @robinsmidsrod so much, i was got it RE: Boot multi client - ThomasNguyen - 2015-01-06 05:14 20 clients boot is ok But all client same name, How can i change it folow IP like client 1 (ip :10.0.0.1 -> machine name MC1 ) |