![]() | machine list |
UserPreferences |
GMS NOC Docs | FrontPage | RecentChanges | TitleIndex | Help |
To get a list of sync machines, on a stratus like LXAU, as root, from a back door connection:
ulimit 999999 cd /tmp nohup /mail/bin/cddmp > dumpfile_102901 &
This will take four or five minutes to run; you can keep checking on the file size with a ls -l, and when it stops changing, it's done.
Once it is done, I then split the sync customers from the rest of them.
cat dump*|cut -d "|" -f5,48 | grep MT= > temp
Next I split out all the BRYU/ZU customers into a separate list:
grep br05 temp |cut -d "|" -f1 > listem.br
Now I go back for the rest of the sync customers.
grep -v br05 temp | cut -d "/" -f1 \ | nawk 'BEGIN{FS="|";OFS="|"}{ print $2, $1 }' \ |cut -d "=" -f2 | sort | sed 's/:|/ /' > listem.other
Now you have two main lists, listem.br for all the BRYU/ZU customers and listem.other for all other sync customers. You'll notice on the listem.other you'll have some stuff like lzsync4 as a sync fep - that is an R&D thing so you can just ignore those.