Is your e3000 Environment Secure? Homestead security

page 41April 24, 2003
Is Your Homestead Secure? - Solution Symposium West
Generate random passwords in installation
jobs
A shell script example:
PASSWORD=`echo $$ | awk ' {\
srand($0);
for (i=0; i < 8; i++) \
pass=pass \
substr("ABCDEFGHIJKLMNOPQRSTUVWXYZ",1+int(26*rand()),1);
print pass }'`
callci "NEWACCT FOOBAR;PASS=$PASSWORD"