11-19-2015 08:15 AM
I've got RE mobile working in the labs without the normalisation script for the CUCM trunk that was included in the Configuration guide. What's the implication of not using a normalisation script on the CUCM trunk? Thanks.
Solved! Go to Solution.
01-06-2016 09:41 AM
hi
what you need to change is the domain name part.
for example, you REAS cluster FQDN is abc.cisco.com
M = {}
function M.outbound_INVITE(msg)
local method, ruri, ver = msg:getRequestLine()
local uri = string.gsub(ruri, "@(.*):%d+", "@abc.cisco.com")
msg:setRequestUri(uri)
local toheader = msg:getHeader("To")
local touri = string.gsub(toheader, "@(.*)>", "@abc.cisco.com>")
msg:modifyHeader("To", touri)
end
return M
11-19-2015 07:59 PM
hi,
it is not mandatory to add the script.
it is only required in case you deploy REM in CUCM only mode.
yours
Alan
11-26-2015 10:13 PM
Hello, Alan.
When I look at re mobile installation guide, it contains a sip normalization script as below for reference, but I am not sure what to change, making it work out in my CUCM only environment
I am assuming I need to change "@fcsdk.registration.domain" to something for my lab and applied re mobile ip address there, but no chance of luck.
Could you please shed a light on this ?
Thanks in advance
M = {}
function M.outbound_INVITE(msg)
local method, ruri, ver = msg:getRequestLine()
local uri = string.gsub(ruri, "@(.*):%d+", "@fcsdk.registration.domain")
msg:setRequestUri(uri)
local toheader = msg:getHeader("To")
local touri = string.gsub(toheader, "@(.*)>", "@fcsdk.registration.domain>")
msg:modifyHeader("To", touri)
end
return M
01-06-2016 09:41 AM
hi
what you need to change is the domain name part.
for example, you REAS cluster FQDN is abc.cisco.com
M = {}
function M.outbound_INVITE(msg)
local method, ruri, ver = msg:getRequestLine()
local uri = string.gsub(ruri, "@(.*):%d+", "@abc.cisco.com")
msg:setRequestUri(uri)
local toheader = msg:getHeader("To")
local touri = string.gsub(toheader, "@(.*)>", "@abc.cisco.com>")
msg:modifyHeader("To", touri)
end
return M
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide