afd81d2b00
git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@2735 af16638f-c34d-0410-8cfa-b39d5352b314
22 lines
221 B
Bash
22 lines
221 B
Bash
#!/bin/bash
|
|
|
|
for i in {3000..3029}
|
|
do
|
|
echo "
|
|
[$i]
|
|
type=friend
|
|
username=$i
|
|
insecure=very
|
|
qualify=yes
|
|
nat=yes
|
|
host=dynamic
|
|
canreinvite=no
|
|
context=bbb-voip
|
|
disallow=all
|
|
allow=ulaw
|
|
|
|
" >> /etc/asterisk/sip.conf
|
|
done
|
|
|
|
|