@forte647 said:
Deleting those lines causes my Multicast Join entry to not work (like I can select it but it just knocks me back to the first menu). Is there a way to hard code the user and pass into the param of multijoin? If so, what would that look like? Like if I wanted to hardcode username “fog” and password “password”.
Sorry for the double post, but I got ballsy and tried it myself and this worked for me. My multijoin params are:
params
param mac0 ${net0/mac}
param arch ${arch}
param username fog
param password password
param sessionJoin 1
isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
got rid of the first login line (I guess that’s the login prompt) and then changed the user/pass lines from ${username} to a username I wanted (default account fog) and its ${password} “password”.
Changing the default entry also worked, although in my mind I really wanted to arranged differently, but that’s okay too.
Thank you, guys.