Yes, you can. The most effective way is through MySQL entry.
Create Conference room 9000 and setup the basic settings you want. We'll use this as a baseline
Set up password, meeting options etc.
Here's a picture of what i'm talking about.
https://imgur.com/a/MIiGUs7
INSTRUCTIONS
From a CLI
mysql -p
enter you password
you'll see something like this:
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 6312
Server version: 5.5.64-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
enter in the following then press enter
use asterisk;
you'll see
Database changed
MariaDB [asterisk]>
Now if you type
select * from meetme;
You'll see something like this: This table should reflect the bridge(s) you already have
+-------+---------+---------+----------+-----------------+------------+---------+-------+
| exten | options | userpin | adminpin | description | joinmsg_id | music | users |
+-------+---------+---------+----------+-----------------+------------+---------+-------+
| 9000 | w | 9876 | 1234 | Test Conference | 0 | inherit | 10 |
+-------+---------+---------+----------+-----------------+------------+---------+-------+
1 row in set (0.00 sec)
MariaDB [asterisk]>
So this is my test meeting. These are the various options. The "key" to this table is the "EXTEN" column. That one needs to be unique, but all the others can be the same to make for an easy entry.
So let say we want to copy this a bunch of times, you can do it with the statement. Just alter the first value that is your extension number. In my case i've increased it to 9001. I also changed the bridge name to "Maria Bridge" and set the users to "0" which means unlimited (compared to 10 in the first bridge).
You'll just need to make sure that the values contained in the row that you want to mimic are reflected in the SQL statement below. For example, "options" in mine has a "w" which means "leader wait". Yours will probably be different, just make sure that they are placed in the SQL statement below. Anything that is AlphaNumeric needs to have a singe ' around it.
insert into meetme(exten, options, userpin, adminpin, description, joinmsg_id, music, users ) values (9001,'w',9876,1234,'Maria Bridge',0,'inherit',0);
The result will be this:
Query OK, 1 row affected (0.00 sec)
Now if you enter
select * from meetme;
You should see this:
+-------+---------+---------+----------+-----------------+------------+---------+-------+
| exten | options | userpin | adminpin | description | joinmsg_id | music | users |
+-------+---------+---------+----------+-----------------+------------+---------+-------+
| 9000 | w | 9876 | 1234 | Test Conference | 0 | inherit | 10 |
| 9001 | w | 9876 | 1234 | Maria Bridge | 0 | inherit | 0 |
+-------+---------+---------+----------+-----------------+------------+---------+-------+
2 rows in set (0.00 sec)
MariaDB [asterisk]>
Now go look at your GUI
You should see the conference in the list in the GUI. You can also make any changes you might want from here.
If this does what you want you can repeat the insert command, just increment the EXTEN value
HINT:
You can put the statement into notepad/excel or whatever and make the manual adjustments then just copy/paste the insert commands and the database will update.