I need to configure pjsip with outbound_proxy (needed for voip isp)
I know how to do if proxy is one, but my isp use two sip proxy (one with priority 10, other with 20).
This line is ok for one
insert into ps_aors (id, contact, max_contacts, qualify_frequency, outbound_proxy) values (‘tim’, ‘sip:mynumber@myprov:5060’, 1, 60, ‘1.2.3.4.5’);
for two values?
Is ok something like this?
insert into ps_aors (id, contact, max_contacts, qualify_frequency, outbound_proxy) values (‘tim’, ‘sip:mynumber@myprov:5060’, 1, 60, ‘1.2.3.4.5;5.4.3.2.1’);