Authentication - Printable Version +- iPXE discussion forum (https://forum.ipxe.org) +-- Forum: iPXE user forums (/forumdisplay.php?fid=1) +--- Forum: General (/forumdisplay.php?fid=2) +--- Thread: Authentication (/showthread.php?tid=7232) |
Authentication - vielktus - 2014-03-07 08:55 Hi there, I wonder if iPXE provides a authentication mechanism, or sth like that ? Any clients want to boot iPXE must give a username and password. This password is only for 1 client, the others ones will be different. RE: Authentication - robinsmidsrod - 2014-03-10 11:00 You can use http://ipxe.org/cmd/login to ask for a username/password. Once that is done the entered username/password is stored in the variables and can be pushed to a server-side script using HTTPS and POST (if you want it to be kept secure) and based on what the server-side says you can return another iPXE script with your normal boot sequence. You can see how to do an HTTP POST here: http://ipxe.org/cmd/param |