I created Two interface on my sems.conf same signaling IP but different Port number. I have to customers on the yeti I want one client to send through port 5060 only and client B through port 5061 only. how do I force this description?
You will find help on the doc site
https://yeti-switch.org/docs/sems/index.html
signaling-interfaces {
interface internal {
default-media-interface = internal
ip4 {
sip-udp {
public-address = 1.1.1.1
address = 1.1.1.1
port = 5060
use-raw-sockets = off
}
sip-tcp {
public-address = 1.1.1.1
address = 1.1.1.1
port = 6060
connect-timeout = 2000
static-client-port = on
idle-timeout=900000
use-raw-sockets = off
}
}
}
}
signaling-interfaces {
interface softphone {
default-media-interface = internal
ip4 {
sip-udp {
public-address = 1.1.1.1
address = 1.1.1.1
port = 5061
use-raw-sockets = off
}
}
}
}
With that, SEMS will listen on port 5061. To direct incoming calls to node sending to 5061, under gateway, signaling section, set the “Sip interface name” to softphone.
Hope that helps.
1 Like
Thank You Max, it helped and it has been implemented. I have another question. Having these two separate ports. would they be sent directly to the termination end using the said ports only as specified on the sip interface name?