Try this patch: --- config.c (revision 211) +++ config.c (working copy) @@ -210,7 +210,7 @@ language = v->value; has_language = 1; } else if(0 == strcasecmp(v->name, "combined")) { - strcpy(linkset->combined, v->value); + linkset->combined = strdup(v->value); } else if(0 == strcasecmp(v->name, "hunting_policy")) { if(0 == strcasecmp(v->value, "odd_lru")) { Best regards Anders Baekgaard On Sunday 13 January 2008 08:07:09 Tusar wrote: > Hi, > > I am trying to configure chan_ss7 where I got only one signaling link for > multiple bearer link > and want to run with different asterisk box where signaling link will be > the same. > > | Telco -- Signaling Link (1) -- AsteriskBox(1) [192.168.0.10] > > -| > > | Telco --\ > > Bearer Link(7) -- AsteriskBox(2) [192.168.0.11] > > I tried with these example .. > " > [linkset-A] > loadshare = combined > combined = set-AB > ... > [linkset-B] > loadshare = combined > combined = set-AB > .. > [link-l1] > schannel => 16,hostA:12000 > " > But if I set "combined = ??" and run the "mtp3d" , Asterisk/mtp3d getting > "Segmentation Fault" . > > Asterisk-1.4.17 > CentOS-4.6 > gcc-3.4.6-9 > > > Is there any example for "ss7.conf" with some explanation for the above > scenario ? > > Thanks in advanced . > > Best Regards, > ..Tusar..