Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to generate a random port number between 2000-65000 from a shell script. The problem is $RANDOM is only a 16bit number, so im stuck!

PORT=$(($RANDOM%63000+2001)) would work nicely if it wasn't for the size limitation.

Does anyone have an example of how I can do this, maybe by extracting something from /dev/urandom and getting it within a range?

Thanks.

share|improve this question

9 Answers

up vote 24 down vote accepted
shuf -i 2000-65000 -n 1

Enjoy!

Edit: The range is inclusive.

share|improve this answer
2  
I think shuf is relatively recent - I've seen it on Ubuntu systems in the last couple years but not the current RHEL/CentOS. – Jefromi Mar 31 '10 at 20:37
Also, it's probably fine for this use, but I believe shuf does actually permute the entire input. This makes it a bad choice if you're generating the random numbers very frequently. – Jefromi Mar 31 '10 at 20:42
@Jefromi: On my system, using this test time for i in {1..1000}; do shuf -i 0-$end -n 1000 > /dev/null; done and comparing end=1 to end=65535 showed about a 25% improvement for the shorter range which amounted to about 4 seconds difference over a million iterations. And it's lots faster than performing the OP's Bash calculation a million times. – Dennis Williamson Mar 31 '10 at 21:57
@Dennis Williamson: Thanks for the benchmark. I was on the CentOS system at the time and couldn't test for sure; I figured it couldn't be that bad since it was within the C code. I really just wanted to point out that it's not actually just generating a single random number. – Jefromi Mar 31 '10 at 23:46
1  
@Dennis Williamson: Running your test with -n 1 showed negligible time differences, even with end=4000000000. Good to know shuf works smart, not hard :-) – dave Apr 1 '10 at 20:59
show 2 more comments

On Mac OS X and FreeBSD you may also use jot:

jot -r 1  2000 65000
share|improve this answer

The simplest general way that comes to mind is a perl one-liner:

perl -e 'print int(rand(65000-2000)) + 2000'

You could always just use two numbers:

PORT=$(($RANDOM + ($RANDOM % 2) * 32768))

You still have to clip to your range. It's not a general n-bit random number method, but it'll work for your case, and it's all inside bash.

If you want to be really cute and read from /dev/urandom, you could do this:

od -A n -N 2 -t u2 /dev/urandom

That'll read two bytes and print them as an unsigned int; you still have to do your clipping.

share|improve this answer

and here's one with Python

randport=$(python -S -c "import random; print random.randrange(2000,63000)")

and one with awk

awk 'BEGIN{srand();print int(rand()*(63000-2000))+2000 }'
share|improve this answer

Here's another one. I thought it would work on just about anything, but sort's random option isn't available on my centos box at work.

 seq 2000 65000 | sort -R | head -n 1
share|improve this answer
1  
sort -R isn't available on OS X either. – Lauri Ranta Sep 15 '12 at 11:36

You can do this

cat /dev/urandom|od -N2 -An -i|awk -v f=2000 -v r=65000 '{printf "%i\n", f + r * $1 / 65536}'

If you need more details see Shell Script Random Number Generator.

share|improve this answer
Almost. This gives you a range 2000 to 67000. – Ogre Psalm33 Apr 29 at 13:24

Or on OS-X the following works for me:

$ gsort --random-sort
share|improve this answer

PORT=$(($RANDOM%63000+2001)) is close to what you want I think.

PORT=$(($RANDOM$RANDOM$RANDOM%63000+2001)) gets around the size limitation that troubles you. Since bash makes no distinctions between a number variable and a string variable, this works perfectly well. The "number" $RANDOM can be concatenated like a string, and then used as a number in a calculation. Amazing!

share|improve this answer
I see what you're saying. I agree the distribution will be different, but you can't get real randomness anyway. It might be better to sometimes use $RANDOM, sometimes $RANDOM$RANDOM, and sometimes $RANDOM$RANDOM$RANDOM to get a more even distribution. More $RANDOMs favors higher port numbers, as far as I can tell. – Wastrel Jul 14 '12 at 16:22
( I deleted my original comment, as I used some wrong numerical values and it was too late to edit the comment). Right. x=$(( $n%63000 ) is roughly similar to x=$(( $n % 65535 )); if [ $x -gt 63000 ]; then x=63000. – chepner Jul 14 '12 at 16:34
I wasn't going to criticise (or even do) the math. I simply accepted it. This is what I meant: num=($RANDOM $RANDOM$RANDOM $RANDOM$RANDOM$RANDOM); pick=$(($RANDOM%3)); PORT=$((${num[$pick]}%63000+2001)) --- that seems like a lot of trouble... – Wastrel Jul 14 '12 at 16:41

Bash documentation says that every time $RANDOM is referenced, a random number between 0 and 32767 is returned. If we sum two consecutive references, we get values from 0 to 65534, which covers the desired range of 63001 possibilities for a random number between 2000 and 65000.

To adjust it to the exact range, we use the sum modulo 63001, which will give us a value from 0 to 63000. This in turn just needs an increment by 2000 to provide the desired random number, between 2000 and 65000. This can be summarized as follows:

port=$((((RANDOM + RANDOM) % 63001) + 2000))

Testing

# Generate random numbers and print the lowest and greatest found
test-random-max-min() {
    max=2000
    min=65000
    for i in {1..10000}; do
        port=$((((RANDOM + RANDOM) % 63001) + 2000))
        echo -en "\r$port"
        [[ "$port" -gt "$max" ]] && max="$port"
        [[ "$port" -lt "$min" ]] && min="$port"
    done
    echo -e "\rMax: $max, min: $min"
}

# Sample output
# Max: 64990, min: 2002
# Max: 65000, min: 2004
# Max: 64970, min: 2000

Correctness of the calculation

Here is a full, brute-force test for the correctness of the calculation. This program just tries to generate all 63001 different possibilities randomly, using the calculation under test. The --jobs parameter should make it run faster, but it's not deterministic (total of possibilities generated may be lower than 63001).

test-all() {
    start=$(date +%s)
    find_start=$(date +%s)
    total=0; ports=(); i=0
    rm -f ports/ports.* ports.*
    mkdir -p ports
    while [[ "$total" -lt "$2" && "$all_found" != "yes" ]]; do
        port=$((((RANDOM + RANDOM) % 63001) + 2000)); i=$((i+1))
        if [[ -z "${ports[port]}" ]]; then
            ports["$port"]="$port"
            total=$((total + 1))
            if [[ $((total % 1000)) == 0 ]]; then
                echo -en "Elapsed time: $(($(date +%s) - find_start))s \t"
                echo -e "Found: $port \t\t Total: $total\tIteration: $i"
                find_start=$(date +%s)
            fi
        fi
    done
    all_found="yes"
    echo "Job $1 finished after $i iterations in $(($(date +%s) - start))s."
    out="ports.$1.txt"
    [[ "$1" != "0" ]] && out="ports/$out"
    echo "${ports[@]}" > "$out"
}

say-total() {
    generated_ports=$(cat "$@" | tr ' ' '\n' | \sed -E s/'^([0-9]{4})$'/'0\1'/)
    echo "Total generated: $(echo "$generated_ports" | sort | uniq | wc -l)."
}
total-single() { say-total "ports.0.txt"; }
total-jobs() { say-total "ports/"*; }
all_found="no"
[[ "$1" != "--jobs" ]] && test-all 0 63001 && total-single && exit
for i in {1..1000}; do test-all "$i" 40000 & sleep 1; done && wait && total-jobs

For determining how many iterations are needed to get a given probability p/q of all 63001 possibilities having been generated, I believe we can use the expression below. For example, here is the calculation for a probability greater than 1/2, and here for greater than 9/10.

Expression

share|improve this answer
You're wrong. $RANDOM is an integer. With your "trick" there are many values that will never be attained. -1. – gniourf_gniourf Dec 31 '12 at 20:56
I'm not sure what you mean with "is an integer", but correct, the algorithm was wrong. Multiplying a random value from a limited range will not increase the range. We need to sum two access to $RANDOM instead, and don't refactor that into a multiplication by two, since $RANDOM is supposed to change on every access. I have updated the answer with the sum version. – anon Jan 2 at 21:54
That's much better! – gniourf_gniourf Jan 3 at 9:02
Are you aware that doing so, you don't have a uniform distribution of the random numbers? – gniourf_gniourf Jan 6 at 17:20
Uniform distribution? Doing so what, the correctness test? I don't understand what you mean. – anon Jan 7 at 18:33
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.