Fast question: mysql and outbound_proxy for pjsip

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’);

There is no support for specifying multiple outbound proxies. A provider should instead do DNS using SRV and optionally NAPTR, to give load balancing/failover.

1 Like

Tip: If your provider doesn’t have these DNS records, you can create them on your own.

1 Like