Sofia Profile Parameters

Status
Not open for further replies.

Robert Birch

Member
Mar 16, 2017
111
5
18
52
Is there a way using fs_cli to show all the parameters for the internal SIP profile while it is running?

I need to compare the configs from an older version of Fusion to the current one. I've tried comparing the options in the GUI and those all look the same, but something that working in the old version is not working in the new.

Thanks,
Shredder
 

Adrian Fretwell

Well-Known Member
Aug 13, 2017
1,415
376
83
You can compare what is in the FusionPBX database and enabled with something like:

Code:
select sps.sip_profile_setting_name, sps.sip_profile_setting_value
from
v_sip_profiles sp,
v_sip_profile_settings sps
where
sps.sip_profile_uuid = sp.sip_profile_uuid
and sp.sip_profile_name = 'internal'
and sps.sip_profile_setting_enabled = 'true'
order by sps.sip_profile_setting_name;


Or you can look at the profile status with:

Code:
fs_cli -x "sofia status profile internal"
 

Robert Birch

Member
Mar 16, 2017
111
5
18
52
Yes, I did do the fs_cli command, but that doesn't show all variables. Basically I'm just trying to confirm the settings of all variables for the SIP profile. Wondering if a default value of a variable changed from one version to the next.

Thanks.
 
Status
Not open for further replies.