yusuf wrote: > Goke Aruna wrote: >> yusuf wrote: >> >>> Hi, >>> >>> So today I started getting to know chan_ss7. The issue is I want to >>> test chan_ss7, but I only have 1 Asterisk box and 1 4-port Diiagium E1 >>> card. I want to know, and please understand my ignorance of ss7 :), >>> if I only have 1 box, with a Digium 4 port E1 card, and I want to dial >>> out on port1 and recieve the call on port2, do I configure two links >>> with one linkset, or two seperate linksets (I am following the >>> templates) >>> >>> Also, with the above config, is this correct: >>> >>> [link-l1] >>> linkset => outgoing1 >>> channels => 1-15,17-31 >>> schannel => 16 >>> firstcic => 1 >>> enabled => yes >>> >>> [link-l2] >>> linkset => incoming2 >>> channels => 1-15,17-31 >>> schannel => 16 >>> firstcic => 32 >>> enabled => yes >>> >>> is my channels labled correctly? >>> >>> >>> >>> >> >> Yusuf, >> >> with what you pasted, it should be 2 linksets. however, i guess first >> cic on the second e1 should be 33 not 32. >> the schannels should not be specified on the second link, since you have >> only one signalling link for the two links. >> > Hi, > > is that two linksets with two links or two linksets with four links. > Am I a being amazingly stupid even asking that? > What is a link, what is a linkset, and what is the difference, and the > relaionship between them? > > > Linkset consists of link(s), while links is the set of cics on the same physical interface. I have a working config of the setup that dedicated one e1 for incoming and second for another routes. [linkset-incorp2] enabled => yes enable_st => no use_connect => no hunting_policy => seq_lth subservice => auto language => en context => ipx-out [linkset-incorp1] enabled => yes enable_st => no use_connect => no hunting_policy => seq_lth subservice => auto language => en context => ixp-out [link-l1] linkset => incorp2 channels => 1-15,17-31 schannel => 16 firstcic => 1 echocancel=allways echocan_taps=32 echocan_train=350 enabled => yes [link-l2] linkset => incorp2 channels => 1-15,17-31 schannel => firstcic => 33 echocancel=allways echocan_taps=32 ;echocan_train=350 enabled => yes [link-l3] linkset => incorp1 channels => 1-15,17-31 schannel => firstcic => 65 echocancel=allways echocan_taps=32 ;echocan_train=350 enabled => yes [link-l4] linkset => incorp1 channels => 1-15,17-31 schannel => firstcic => 97 echocancel=allways echocan_taps=32 ;echocan_train=350 enabled => yes [link-l5] linkset => incorp2 channels => 1-15,17-31 schannel => firstcic => 129 echocancel=allways echocan_taps=32 ;echocan_train=350 enabled => no [link-l6] linkset => incorp2 channels => 1-15,17-31 schannel => firstcic => 161 echocancel=allways echocan_taps=32 ;echocan_train=350 enabled => no [link-l7] linkset => incorp2 channels => 1-15,17-31 schannel => firstcic => 193 echocancel=allways echocan_taps=32 ;echocan_train=350 enabled => no [link-l8] linkset => incorp2 channels => 1-15,17-31 schannel => firstcic => 225 echocancel=allways echocan_taps=32 ;echocan_train=350 enabled => no [host-INC2] enabled => yes opc => 906 default_linkset => incorp2 dpc => incorp2:902,incorp1:902 links => l1:1,l2:2,l3:3,l4:4 ;,l5:5,l6:6,l7:7,l8:8 goksie