database.
I see only 3 tables are there in iscscf database having below contents.
mysql>
mysql> show tables;
+---------------------+
| Tables_in_icscf |
+---------------------+
| nds_trusted_domains |
| s_cscf |
| s_cscf_capabilities |
+---------------------+
3 rows in set (0.00 sec)
mysql> select * from nds_trusted_domains;
+----+--------------------+
| id | trusted_domain |
+----+--------------------+
| 1 |
group1-imslab11.in |
+----+--------------------+
1 row in set (0.00 sec)
mysql> select * from s_cscf;
+----+-----------------------+-----------------------------------+
| id | name | s_cscf_uri |
+----+-----------------------+-----------------------------------+
| 1 | First and only S-CSCF | sip:
scscf.group1-imslab11.in:5080 |
+----+-----------------------+-----------------------------------+
1 row in set (0.00 sec)
mysql> select * from s_cscf_capabilities;
+----+-----------+------------+
| id | id_s_cscf | capability |
+----+-----------+------------+
| 1 | 1 | 0 |
| 2 | 1 | 1 |
+----+-----------+------------+
2 rows in set (0.00 sec)
Is this fine, or I have messed up something during installation.