<div dir="ltr">SOLVED! (sort of). Someone may beat me with a hose for this but this is what I did (for those curious)<div><br></div><div>Until I find the proper way to do this, I cheated and changed the hlogin script a bit. For those curious I changed this part...</div><div><br></div><div>this is TOTALLY wrong, but turning -autoenable on or -noenable on simply was not working<br></div><div><br></div><div>---------------------------------------------</div><div><div>    # Figure out prompt.</div><div>    # Since autoenable is off by default, if we have it defined, it</div><div>    # was done on the command line. If it is not specifically set on the</div><div>    # command line, check the password file.</div><div>    if $avautoenable {</div><div>        set autoenable 1</div><div>        set enable 0</div><div>        set prompt "#"</div><div>    } else {</div><div>        set ae [find autoenable $router]</div><div>        if { "$ae" == "1" } {</div><div>            set autoenable 1</div><div>            set enable 0</div><div>            set prompt "#"</div><div>        } else {</div><div>            set autoenable 0</div><div>            set enable $avenable</div><div>            set prompt ">"                         (switched that are stacked indicate with <CR> at the end which triggers this)</div><div># added this next line as a workaround</div><div>            set prompt "#"                         (other switches hit the SU prompt that has #, which triggers this also now)</div><div>        }</div><div>    }</div></div><div><div>---------------------------------------------</div></div></div>