Index: res/res_rtp_asterisk.c =================================================================== --- res/res_rtp_asterisk.c (revision 405087) +++ res/res_rtp_asterisk.c (working copy) @@ -596,7 +596,7 @@ } /* See if we ran out of ports or if the bind actually failed because of something other than the address being in use */ - if (x == startplace || errno != EADDRINUSE) { + if (x == startplace || (errno != EADDRINUSE && errno != EACCES)) { ast_log(LOG_ERROR, "Oh dear... we couldn't allocate a port for RTP instance '%p'\n", instance); close(rtp->s); ast_free(rtp);