How to setup a PXE boot server?
I want to try and setup a PXE boot server for a laptop that has a damaged hard drive. I have a custom built desktop with Windows 7 Ultimate x64 and I want to make it my server so I can use my laptop to boot from an image. I have been looking all over the internet and could not find a clear article that shows step by step. I have heard of CCBoot but I am not sure how to use it. Can someone point me into the direction I need to go or show me an article?
windows-7 pxe
add a comment |
I want to try and setup a PXE boot server for a laptop that has a damaged hard drive. I have a custom built desktop with Windows 7 Ultimate x64 and I want to make it my server so I can use my laptop to boot from an image. I have been looking all over the internet and could not find a clear article that shows step by step. I have heard of CCBoot but I am not sure how to use it. Can someone point me into the direction I need to go or show me an article?
windows-7 pxe
add a comment |
I want to try and setup a PXE boot server for a laptop that has a damaged hard drive. I have a custom built desktop with Windows 7 Ultimate x64 and I want to make it my server so I can use my laptop to boot from an image. I have been looking all over the internet and could not find a clear article that shows step by step. I have heard of CCBoot but I am not sure how to use it. Can someone point me into the direction I need to go or show me an article?
windows-7 pxe
I want to try and setup a PXE boot server for a laptop that has a damaged hard drive. I have a custom built desktop with Windows 7 Ultimate x64 and I want to make it my server so I can use my laptop to boot from an image. I have been looking all over the internet and could not find a clear article that shows step by step. I have heard of CCBoot but I am not sure how to use it. Can someone point me into the direction I need to go or show me an article?
windows-7 pxe
windows-7 pxe
edited Aug 28 '13 at 18:56
Hennes
59k792141
59k792141
asked Mar 22 '13 at 21:55
Moussa HarajliMoussa Harajli
155115
155115
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
You would need to setup a DHCP server for handling the assignment of the IP address to the laptop, and then set up a PXE server to handle the boot file transfers.
To do both of these functions, I would recommend you install TFTPD, available here: http://tftpd32.jounin.net/
Basic steps are:
Download and install TFTPD, and then add port 69 to the Windows
Firewall exceptions list (Control Panel - Security - Firewall).Assign your computer a static IP address.
Configure TFTPD with the bootfile location and DHCP range.
Connect the two computers with a crossover cable, or use a switch and patch cables.
Boot the laptop with the network boot (PXE) option enabled.
To boot a Windows image, I recommend Steve's answer: How to install Windows 7 from the network?
That's okay. Please 'up vote' my answer if you've found it helpful.
– Jake Andrew
Mar 22 '13 at 22:50
This was my 3rd time on here so i dont have much rep all i could do was accept your answer.
– Moussa Harajli
Mar 23 '13 at 3:40
No problem - that's okay.
– Jake Andrew
Mar 23 '13 at 13:40
I don't have a crossover cable. Can I do it using my wifi router? It has DHCP I believe. (edit: oops, is that what you meant by "use a switch and patch cable"?)
– André Chalella
Jul 24 '13 at 12:35
1
Jake, in my researching I figured it wouldn't work because the DHCP requests from the client wouldn't be broadcast in order to reach TFTPD.
– André Chalella
Jul 30 '13 at 12:40
|
show 4 more comments
Just set up and configure WDS (Windows Deployment Services) and it automatically sets it all up for you. Just boot your client PC from LAN and it will automatically find the server and then boot from it. You can then choose what to install.
add a comment |
WDS is severely limited when it comes to PXE booting non-Microsoft operating systems and should only be used for Windows environments, although you can install a completely different operating system from Windows PE.
TFTPD32/64 is a usefull tool if you can get it to work. It allows for a lot more flexibility but it requires some experimenting.
Personally like CCBoot a lot, since I also use VMWare to prepare installations, which images can be loaded as boot images.
add a comment |
WDS is a windows server role that can accomplish what you are asking.
http://technet.microsoft.com/en-us/library/cc766320(v=ws.10).aspx
please state on your answer at least the key requirements for the desired effect instead of just using the link as an answer. if the link ever gets broken, so does your whole answer.
– Lorenzo Von Matterhorn
Mar 30 '13 at 17:59
@bob WDS does not work on Windows 7 Ultimate x64 as required by the question
– Pat
Apr 2 '13 at 23:11
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f570130%2fhow-to-setup-a-pxe-boot-server%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
You would need to setup a DHCP server for handling the assignment of the IP address to the laptop, and then set up a PXE server to handle the boot file transfers.
To do both of these functions, I would recommend you install TFTPD, available here: http://tftpd32.jounin.net/
Basic steps are:
Download and install TFTPD, and then add port 69 to the Windows
Firewall exceptions list (Control Panel - Security - Firewall).Assign your computer a static IP address.
Configure TFTPD with the bootfile location and DHCP range.
Connect the two computers with a crossover cable, or use a switch and patch cables.
Boot the laptop with the network boot (PXE) option enabled.
To boot a Windows image, I recommend Steve's answer: How to install Windows 7 from the network?
That's okay. Please 'up vote' my answer if you've found it helpful.
– Jake Andrew
Mar 22 '13 at 22:50
This was my 3rd time on here so i dont have much rep all i could do was accept your answer.
– Moussa Harajli
Mar 23 '13 at 3:40
No problem - that's okay.
– Jake Andrew
Mar 23 '13 at 13:40
I don't have a crossover cable. Can I do it using my wifi router? It has DHCP I believe. (edit: oops, is that what you meant by "use a switch and patch cable"?)
– André Chalella
Jul 24 '13 at 12:35
1
Jake, in my researching I figured it wouldn't work because the DHCP requests from the client wouldn't be broadcast in order to reach TFTPD.
– André Chalella
Jul 30 '13 at 12:40
|
show 4 more comments
You would need to setup a DHCP server for handling the assignment of the IP address to the laptop, and then set up a PXE server to handle the boot file transfers.
To do both of these functions, I would recommend you install TFTPD, available here: http://tftpd32.jounin.net/
Basic steps are:
Download and install TFTPD, and then add port 69 to the Windows
Firewall exceptions list (Control Panel - Security - Firewall).Assign your computer a static IP address.
Configure TFTPD with the bootfile location and DHCP range.
Connect the two computers with a crossover cable, or use a switch and patch cables.
Boot the laptop with the network boot (PXE) option enabled.
To boot a Windows image, I recommend Steve's answer: How to install Windows 7 from the network?
That's okay. Please 'up vote' my answer if you've found it helpful.
– Jake Andrew
Mar 22 '13 at 22:50
This was my 3rd time on here so i dont have much rep all i could do was accept your answer.
– Moussa Harajli
Mar 23 '13 at 3:40
No problem - that's okay.
– Jake Andrew
Mar 23 '13 at 13:40
I don't have a crossover cable. Can I do it using my wifi router? It has DHCP I believe. (edit: oops, is that what you meant by "use a switch and patch cable"?)
– André Chalella
Jul 24 '13 at 12:35
1
Jake, in my researching I figured it wouldn't work because the DHCP requests from the client wouldn't be broadcast in order to reach TFTPD.
– André Chalella
Jul 30 '13 at 12:40
|
show 4 more comments
You would need to setup a DHCP server for handling the assignment of the IP address to the laptop, and then set up a PXE server to handle the boot file transfers.
To do both of these functions, I would recommend you install TFTPD, available here: http://tftpd32.jounin.net/
Basic steps are:
Download and install TFTPD, and then add port 69 to the Windows
Firewall exceptions list (Control Panel - Security - Firewall).Assign your computer a static IP address.
Configure TFTPD with the bootfile location and DHCP range.
Connect the two computers with a crossover cable, or use a switch and patch cables.
Boot the laptop with the network boot (PXE) option enabled.
To boot a Windows image, I recommend Steve's answer: How to install Windows 7 from the network?
You would need to setup a DHCP server for handling the assignment of the IP address to the laptop, and then set up a PXE server to handle the boot file transfers.
To do both of these functions, I would recommend you install TFTPD, available here: http://tftpd32.jounin.net/
Basic steps are:
Download and install TFTPD, and then add port 69 to the Windows
Firewall exceptions list (Control Panel - Security - Firewall).Assign your computer a static IP address.
Configure TFTPD with the bootfile location and DHCP range.
Connect the two computers with a crossover cable, or use a switch and patch cables.
Boot the laptop with the network boot (PXE) option enabled.
To boot a Windows image, I recommend Steve's answer: How to install Windows 7 from the network?
edited Mar 20 '17 at 10:17
Community♦
1
1
answered Mar 22 '13 at 22:26
Jake AndrewJake Andrew
31925
31925
That's okay. Please 'up vote' my answer if you've found it helpful.
– Jake Andrew
Mar 22 '13 at 22:50
This was my 3rd time on here so i dont have much rep all i could do was accept your answer.
– Moussa Harajli
Mar 23 '13 at 3:40
No problem - that's okay.
– Jake Andrew
Mar 23 '13 at 13:40
I don't have a crossover cable. Can I do it using my wifi router? It has DHCP I believe. (edit: oops, is that what you meant by "use a switch and patch cable"?)
– André Chalella
Jul 24 '13 at 12:35
1
Jake, in my researching I figured it wouldn't work because the DHCP requests from the client wouldn't be broadcast in order to reach TFTPD.
– André Chalella
Jul 30 '13 at 12:40
|
show 4 more comments
That's okay. Please 'up vote' my answer if you've found it helpful.
– Jake Andrew
Mar 22 '13 at 22:50
This was my 3rd time on here so i dont have much rep all i could do was accept your answer.
– Moussa Harajli
Mar 23 '13 at 3:40
No problem - that's okay.
– Jake Andrew
Mar 23 '13 at 13:40
I don't have a crossover cable. Can I do it using my wifi router? It has DHCP I believe. (edit: oops, is that what you meant by "use a switch and patch cable"?)
– André Chalella
Jul 24 '13 at 12:35
1
Jake, in my researching I figured it wouldn't work because the DHCP requests from the client wouldn't be broadcast in order to reach TFTPD.
– André Chalella
Jul 30 '13 at 12:40
That's okay. Please 'up vote' my answer if you've found it helpful.
– Jake Andrew
Mar 22 '13 at 22:50
That's okay. Please 'up vote' my answer if you've found it helpful.
– Jake Andrew
Mar 22 '13 at 22:50
This was my 3rd time on here so i dont have much rep all i could do was accept your answer.
– Moussa Harajli
Mar 23 '13 at 3:40
This was my 3rd time on here so i dont have much rep all i could do was accept your answer.
– Moussa Harajli
Mar 23 '13 at 3:40
No problem - that's okay.
– Jake Andrew
Mar 23 '13 at 13:40
No problem - that's okay.
– Jake Andrew
Mar 23 '13 at 13:40
I don't have a crossover cable. Can I do it using my wifi router? It has DHCP I believe. (edit: oops, is that what you meant by "use a switch and patch cable"?)
– André Chalella
Jul 24 '13 at 12:35
I don't have a crossover cable. Can I do it using my wifi router? It has DHCP I believe. (edit: oops, is that what you meant by "use a switch and patch cable"?)
– André Chalella
Jul 24 '13 at 12:35
1
1
Jake, in my researching I figured it wouldn't work because the DHCP requests from the client wouldn't be broadcast in order to reach TFTPD.
– André Chalella
Jul 30 '13 at 12:40
Jake, in my researching I figured it wouldn't work because the DHCP requests from the client wouldn't be broadcast in order to reach TFTPD.
– André Chalella
Jul 30 '13 at 12:40
|
show 4 more comments
Just set up and configure WDS (Windows Deployment Services) and it automatically sets it all up for you. Just boot your client PC from LAN and it will automatically find the server and then boot from it. You can then choose what to install.
add a comment |
Just set up and configure WDS (Windows Deployment Services) and it automatically sets it all up for you. Just boot your client PC from LAN and it will automatically find the server and then boot from it. You can then choose what to install.
add a comment |
Just set up and configure WDS (Windows Deployment Services) and it automatically sets it all up for you. Just boot your client PC from LAN and it will automatically find the server and then boot from it. You can then choose what to install.
Just set up and configure WDS (Windows Deployment Services) and it automatically sets it all up for you. Just boot your client PC from LAN and it will automatically find the server and then boot from it. You can then choose what to install.
edited Sep 11 '13 at 19:11
jonsca
2,993112539
2,993112539
answered Sep 11 '13 at 17:23
testtest
111
111
add a comment |
add a comment |
WDS is severely limited when it comes to PXE booting non-Microsoft operating systems and should only be used for Windows environments, although you can install a completely different operating system from Windows PE.
TFTPD32/64 is a usefull tool if you can get it to work. It allows for a lot more flexibility but it requires some experimenting.
Personally like CCBoot a lot, since I also use VMWare to prepare installations, which images can be loaded as boot images.
add a comment |
WDS is severely limited when it comes to PXE booting non-Microsoft operating systems and should only be used for Windows environments, although you can install a completely different operating system from Windows PE.
TFTPD32/64 is a usefull tool if you can get it to work. It allows for a lot more flexibility but it requires some experimenting.
Personally like CCBoot a lot, since I also use VMWare to prepare installations, which images can be loaded as boot images.
add a comment |
WDS is severely limited when it comes to PXE booting non-Microsoft operating systems and should only be used for Windows environments, although you can install a completely different operating system from Windows PE.
TFTPD32/64 is a usefull tool if you can get it to work. It allows for a lot more flexibility but it requires some experimenting.
Personally like CCBoot a lot, since I also use VMWare to prepare installations, which images can be loaded as boot images.
WDS is severely limited when it comes to PXE booting non-Microsoft operating systems and should only be used for Windows environments, although you can install a completely different operating system from Windows PE.
TFTPD32/64 is a usefull tool if you can get it to work. It allows for a lot more flexibility but it requires some experimenting.
Personally like CCBoot a lot, since I also use VMWare to prepare installations, which images can be loaded as boot images.
answered Jul 9 '13 at 13:52
user236800user236800
1
1
add a comment |
add a comment |
WDS is a windows server role that can accomplish what you are asking.
http://technet.microsoft.com/en-us/library/cc766320(v=ws.10).aspx
please state on your answer at least the key requirements for the desired effect instead of just using the link as an answer. if the link ever gets broken, so does your whole answer.
– Lorenzo Von Matterhorn
Mar 30 '13 at 17:59
@bob WDS does not work on Windows 7 Ultimate x64 as required by the question
– Pat
Apr 2 '13 at 23:11
add a comment |
WDS is a windows server role that can accomplish what you are asking.
http://technet.microsoft.com/en-us/library/cc766320(v=ws.10).aspx
please state on your answer at least the key requirements for the desired effect instead of just using the link as an answer. if the link ever gets broken, so does your whole answer.
– Lorenzo Von Matterhorn
Mar 30 '13 at 17:59
@bob WDS does not work on Windows 7 Ultimate x64 as required by the question
– Pat
Apr 2 '13 at 23:11
add a comment |
WDS is a windows server role that can accomplish what you are asking.
http://technet.microsoft.com/en-us/library/cc766320(v=ws.10).aspx
WDS is a windows server role that can accomplish what you are asking.
http://technet.microsoft.com/en-us/library/cc766320(v=ws.10).aspx
answered Mar 30 '13 at 17:33
bobbob
1
1
please state on your answer at least the key requirements for the desired effect instead of just using the link as an answer. if the link ever gets broken, so does your whole answer.
– Lorenzo Von Matterhorn
Mar 30 '13 at 17:59
@bob WDS does not work on Windows 7 Ultimate x64 as required by the question
– Pat
Apr 2 '13 at 23:11
add a comment |
please state on your answer at least the key requirements for the desired effect instead of just using the link as an answer. if the link ever gets broken, so does your whole answer.
– Lorenzo Von Matterhorn
Mar 30 '13 at 17:59
@bob WDS does not work on Windows 7 Ultimate x64 as required by the question
– Pat
Apr 2 '13 at 23:11
please state on your answer at least the key requirements for the desired effect instead of just using the link as an answer. if the link ever gets broken, so does your whole answer.
– Lorenzo Von Matterhorn
Mar 30 '13 at 17:59
please state on your answer at least the key requirements for the desired effect instead of just using the link as an answer. if the link ever gets broken, so does your whole answer.
– Lorenzo Von Matterhorn
Mar 30 '13 at 17:59
@bob WDS does not work on Windows 7 Ultimate x64 as required by the question
– Pat
Apr 2 '13 at 23:11
@bob WDS does not work on Windows 7 Ultimate x64 as required by the question
– Pat
Apr 2 '13 at 23:11
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f570130%2fhow-to-setup-a-pxe-boot-server%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown