On Mon, Jun 01, 2015 at 10:04:46PM +0000, Nordgren, Bryce L -FS wrote: > I then tried creating a "[email protected]" principal in my > realm. Unfortunately, I cannot kinit using the principal > "[email protected]@FEDIDCARD.GOV". kinit gives a "Malformed > representation of principal when parsing name..." error.
You have to escape the first '@' with a backslah. Mind your shell quoting, since your shell may require you to escape the escape backslash. On a typical Unix shell you could: $ kinit 12001000550281\\@[email protected] or $ kinit '12001000550281\@[email protected]' Nico -- ________________________________________________ Kerberos mailing list [email protected] https://mailman.mit.edu/mailman/listinfo/kerberos
