All Projects → elasticdog → Genhost

elasticdog / Genhost

generate unused hostnames by randomly picking from a word list

Programming Languages

shell
77523 projects

genhost

This script will randomly generate hostnames by picking words from the provided word list. The pool of words comes from Oren Tirosh's mnemonic encoding project.

Usage

Just run the script and provide the number of hostnames you'd like to generate:

$ ./genhost 4
romeo.example.com
holiday.example.com
jester.example.com
spiral.example.com

All of those words will automatically be commented out in the word list and thus removed from the pool of future names. If a hostname has the potential to be confusing based on technical jargon (like email.example.com), simply ignore it and generate a replacement.

If you decommission a server, you can return its hostname to the usable pool, thereby uncommenting it in the wordlist:

$ ./genhost reuse jester

You can also print a list of the hostnames currently marked as in use:

$ ./genhost list
romeo
holiday
spiral

For collaboration purposes, don't forget to commit the updated word list back to a shared Git repository so names do not get reused:

$ git add wordlist
$ git commit
$ git push
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].