| Recommended Action | To summarize the more common ones:
- Check Basic IP Routing: Basic IP reachability should always be checked first. As RTP streams are connectionless (transported over UDP), traffic may travel successfully in one direction, but get lost in the opposite direction.
- Enable IP Routing: Make sure your router has IP routing enabled, that is, does not have the global configuration command "no IP routing".
- To enable IP routing, simply type the following global configuration command in your Cisco IOS gateway:
- gateway(config)# conf t
- gateway(config)# ip routing
- Cut-through Two Way Audio Early: In some cases it is necessary to establish a two-way audio path as soon as the RTP channel is opened. In other words, before the connect message is received. To achieve this, type the voice rtp send-recv global configuration command:
- gateway(config)# conf t
- gateway(config)# voice rtp send-recv
- Disable voice-fastpath: The Cisco IOS command voice-fastpath enable is a hidden global configuration command for the AS5350 and AS5400, which is enabled by default. To disable it, use:
- gateway(config)# conf t
- gateway(config)#no voice-fastpath enable.
|