The Genesys Network SIP Server is used to scale beyond 2000 users. The Network SIP Server is designed to provide load balancing between N+1 SIP Servers as opposed to a HA configuration with a warm/hot standby. There is a document in the Genesys Document Library entitled Network SIP Server Deployment Guide, which explains in detail how to deploy. With that said, I have interfaced an Asterisk PBX with Genesys SIP Server and Stream Manager. To do so all you need is the following:
Genesys Configs:
1.) Genesys SIP server running
2.) In CME, in your SIP Switch DN, create a DN of type Trunk,
3.) In the annex tab create a section called TServer
4.) In the TServer section, create an option called contact and make it equal to asterisk@<ip address> i.e. asterisk @ 10.1.0.99
Asterisk Configuration:
I just set up a couple of DID's to send calls to Genesys. So in my extensions_did.conf file I created the following:
[from-did]
exten=> 2287000,1,Dial(SIP/70000 @ 10.1.0.15:5065,20,rt)
exten=> 2287001,1,Dial(SIP/10000 @ 10.1.0.15:5065,20,rt)
so here we have:
exten=> <DNIS>,1,Dial(SIP/<Routing Point DN> @ <SIP Server IP:SIP Port,20,rt)
I hope this helps.