https://github.com/jchavanton/rtp_latch
https://github.com/jchavanton/rtp_latch
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jchavanton/rtp_latch
- Owner: jchavanton
- Created: 2018-10-16T22:04:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-16T22:13:36.000Z (over 6 years ago)
- Last Synced: 2025-01-30T07:28:25.355Z (5 months ago)
- Language: C
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
RTP latch
Julien Chavanton
Julien Chavanton
flowroute.com
Edited by
Julien Chavanton
flowroute.com
Copyright © 2018 Flowroute.com
__________________________________________________________________Table of Contents
1. Admin Guide
1.1. Overview
1.2. Functions1.2.1. rtp_spoof(source_ip, source_port, destination_ip,
destination_port)List of Examples
1.1. Example usage
Chapter 1. Admin Guide
1.1. Overview
RTP_latch module is used to trigger port latching on RTP endpoints.
Sometimes RTP endpoint will do port latching even if the remote peer is
not natted we may end up with 2 such devices facing each other, in this
case triggering port latching may be the only option.1.2. Functions
1.2.1. rtp_spoof(source_ip, source_port, destination_ip, destination_port)
value a integer return code.
Example 1.1. Example usage
...
$avp(media_src_port) = 1111;
$avp(media_dst_port) = 4444;
$avp(media_src_ip) = "192.168.1.10";
$avp(media_dst_ip) = "192.168.1.20";
rtp_spoof("$avp(media_src_ip)", "$avp(media_src_port)",
"$avp(media_dst_ip)", "$avp(media_dst_port)");
...