Getting 3 eight port analog gateways used for outgoing calls

After some excellent support form here we now have our Indy office using Asterisk 1.4 able to send and receive calls. In an effort to get things working and not add too many variables, I only have one of the 8 port Grandstream analog gateways being used to send outgoing calls. Ideally we’d like to have all 24 lines available on the three gateways for outgoing calls. What would be the correct way to add all 3 gateways to make them available in a round-robin basis?

At the moment I just have one of the boxes in the SIP.CONF:

[quote][gxw4108b]
type=peer
context=default
host=10.1.1.16
insecure=port[/quote]

And the following section in EXTENSIONS.CONF:

[quote]exten => _NXXNXXXXXX,1,Dial(SIP/${EXTEN}@gxw4108b)
exten => _1NXXNXXXXXX,1,Dial(SIP/${EXTEN}@gxw4108b)
exten => 911,1,Dial(SIP/${EXTEN}@gxw4108b) [/quote]

We would like to add gxw4108a at 10.1.1.15 and gxw4108c at 10.1.1.17 as outgoing options as well. Any help would be greatly appreciated.

Thanks again,

Greg

According to your other thread, that is not the configuration you are now using.

Dial each device in turn in extensions.conf, preferably looking at HANGUPCAUSE to eliminate cases that will just fail on the next box.

[quote=“david55”]According to your other thread, that is not the configuration you are now using.

Dial each device in turn in extensions.conf, preferably looking at HANGUPCAUSE to eliminate cases that will just fail on the next box.[/quote]

Ah, seems simple enough. Didn’t think it would be that easy. Thanks again!