In this section:
The SBC Core includes a configurable Transparency Profile capable of transparently passing SIP headers and SIP message bodies.
This example configuration describes how to create and configure a transparency profile to transparently pass headers and message bodies using the following basic steps:
Though these steps can be performed from either the EMA or from the CLI, the description below is limited to CLI.
Ribbon recommends using the Transparency Profile to configure transparency on the SBC Core Core for new deployments, as well as applying additional transparency configurations to existing deployments. Do not use IP Signaling Profile flags in these scenarios because the flags will be retired in upcoming releases.
Refer to the SBC SIP Transparency Implementation Guide for additional information.
Enter the following commands to create a transparency profile.
set profiles services transparencyProfile testProfile commit
Perform the following steps to configure headers and/or message bodies in your transparency profile.
Configure Transparency of "all" Headers.
set profiles services transparencyProfile testProfile sipHeader all commit
Configure Transparency of a specific Header with Per-Method Exclusion.
set profiles services transparencyProfile testProfile sipHeader contact excludedMethods info, notify commit
Configure Selective Exclusion of Transparency of Headers.
set profiles services transparencyProfile testProfile sipHeader contact ignoreTransparency yes commit
Rules must be configured in the Transparency Profile for the types of content that must be transparently passed through. These rules can be categorized as follows based on the SBC action to take:
Allow a specific type of content through.
set profiles services transparencyProfile testProfile sipMessageBody application/foo commit
Allow all types of content through.
set profiles services transparencyProfile testProfile sipMessageBody all commit
Allow all types of content through in all SIP messages except select SIP methods.
set profiles services transparencyProfile testProfile sipMessageBody all excludedMethods info,invite commit
Allow a specific message body through in all SIP messages except certain select methods.
set profiles services transparencyProfile testProfile sipMessageBody application/foo excludedMethods info,invite commit
Disallow a message body from being transparently passed through.
set profiles services transparencyProfile testProfile sipMessageBody application/foo ignoreTransparency yes commit
Enter the following commands to attach a transparency profile to a trunk group:
set addressContext testAC zone testZone sipTrunkGroup testTG services transparencyProfile testProfile commit
To enable a Transparency Profile, enter the following commands:
set profiles services transparencyProfile testProfile state enabled commit
To view the currently configured transparency profiles, enter the following 'show' command:
show profiles services transparencyProfile
Example:
show profiles services transparencyProfile transparencyProfile test { sipHeader all; sipMessageBody all; sipMessageBody application/foo { ignoreTransparency yes; } sipMessageBody application/new { excludedMethods invite,info; } }
Enter the following commands to detach a transparency profile from a trunk group:
delete addressContext testAC zone testZone sipTrunkGroup testTG services transparencyProfile commit
The state of the transparency profile must be disabled before any modification or deletion of the transparency profile can be made. See example below:
set profiles services transparencyProfile testProfile state disabled commit delete profiles services transparencyProfile testProfile commit