<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Trying to get RTP working through Cisco Router in Routing and SD-WAN</title>
    <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691305#M300609</link>
    <description>&lt;P&gt;Hello Kris&lt;/P&gt;
&lt;P&gt;This look suspiciously like that same rtr with the buggy IOS for NVI nat? - LOL&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyhow could you try amend the ZBFW acl WAN-LAN to include the following and make sure they are above your exiting ace entries&lt;/P&gt;
&lt;P&gt;ip access-list extended SIP-Protection&lt;BR /&gt;&lt;STRONG&gt;5&lt;/STRONG&gt; &lt;STRONG&gt;permit udp any any range 16384 32767&lt;BR /&gt;6 permit tcp any any eq 1720&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Aug 2018 09:14:29 GMT</pubDate>
    <dc:creator>paul driver</dc:creator>
    <dc:date>2018-08-20T09:14:29Z</dc:date>
    <item>
      <title>Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691126#M300591</link>
      <description>&lt;P&gt;Hi All&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I have NVI nat on this router, everything works on the LAN as expected but from the WAN, my Sip phone can register but no audio. I assume RTSP is the issue here&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ive restricted my SIP server to use 16384-16390 and opened these firewall ports direct to the SIP end host.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately, the same issue&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My configuration is attached.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ultimately, all i need to do is make SIP signaled calls from a LAN based SIP client to a 4G, WAN based SIP client. only 1 call.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is CUBE a solution?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;class-map type inspect match-any WAN-to-LAN
 match access-group name RDP
 match access-group name SSH
 match protocol sip
 match access-group name HTTP-HTTPS
 match access-group name SIP-Protection
class-map type inspect match-any LAN-to-WAN
 match access-group name LAN-to-WAN
 match protocol https
 match protocol http
!
policy-map type inspect WAN-to-LAN
 description "Permits inbound to LAN from WAN"
 class type inspect WAN-to-LAN
  inspect
 class class-default
  drop
policy-map type inspect LAN-to-WAN
 description "Permits all traffic from the LAN to the WAN"
 class type inspect LAN-to-WAN
  inspect
 class class-default
  drop
!
zone security LAN
 description "Towards 192.168.0.x"
zone security WAN
 description "Towards NBN"
zone-pair security LAN-to-WAN source LAN destination WAN
 description "Ties the LAN to the WAN"
 service-policy type inspect LAN-to-WAN
zone-pair security WAN-to-LAN source WAN destination LAN
 description "Protect WAN interface"
 service-policy type inspect WAN-to-LAN

!
interface GigabitEthernet0/0
 description "NBN HFC Aussie BroadBand 100/40"
 ip address dhcp
 ip access-group 1 in
 no ip redirects
 ip nat enable
 zone-member security WAN
 load-interval 30
 duplex auto
 speed auto
!

interface GigabitEthernet0/1
 description "Local LAN 192.168.0.0/24"
 no ip address
 no ip redirects
 ip nat enable
 duplex auto
 speed 1000
 bridge-group 1
!

interface Vlan1
 description "Link to the 192.168.0.x LAN"
 ip address 192.168.0.254 255.255.255.0
 no ip redirects
 ip nat enable
 zone-member security LAN

!

ip nat source static tcp 192.168.0.141 80 interface GigabitEthernet0/0 6168
ip nat source static tcp 192.168.0.10 3389 interface GigabitEthernet0/0 6150
ip nat source static tcp 192.168.0.3 3001 interface GigabitEthernet0/0 3001
ip nat source static tcp 192.168.0.2 443 interface GigabitEthernet0/0 6164
ip nat source static tcp 192.168.0.4 3389 interface GigabitEthernet0/0 6169
ip nat source static tcp 192.168.0.3 3000 interface GigabitEthernet0/0 3000
ip nat source static tcp 192.168.0.3 22 interface GigabitEthernet0/0 6165
ip nat source static tcp 192.168.0.4 82 interface GigabitEthernet0/0 6166
ip nat source static tcp 192.168.0.3 8080 interface GigabitEthernet0/0 6170
ip nat source list LAN-NAT interface GigabitEthernet0/0 overload
ip nat source static tcp 192.168.0.4 5060 interface GigabitEthernet0/0 5060
ip route 192.168.0.7 255.255.255.255 ucse4/0
ip route 192.168.3.2 255.255.255.255 Embedded-Service-Engine0/0
ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/0 dhcp
ip ssh source-interface Vlan1
ip ssh rsa keypair-name ssh
ip ssh version 2
!
ip access-list extended HTTP-HTTPS
 permit tcp any host 192.168.0.141 eq www
 permit tcp any host 192.168.0.3 eq 8080
 permit tcp any host 192.168.0.3 eq 3001
 permit tcp any host 192.168.0.4 eq 82
 permit tcp any host 192.168.0.3 eq www
 permit tcp any host 192.168.0.2 eq 443
 permit tcp any host 192.168.0.3 eq 6170
 permit tcp any host 192.168.0.3 eq 3000

ip access-list extended LAN-NAT
 remark NATs all the LAN hosts to the WAN
 permit ip 192.168.0.0 0.0.0.255 any
!
ip access-list extended LAN-to-WAN
 permit ip 192.168.0.0 0.0.0.255 any
!
ip access-list extended SIP-Protection
 permit tcp host 203.129.27.127 host 192.168.0.4 eq 5060
 permit udp host 203.129.27.127 host 192.168.0.4 eq 5060
 permit udp host 203.129.27.127 host 192.168.0.4
 permit udp any host 192.168.0.10 range 16384 16390
 permit udp any host 192.168.0.141 range 16384 16390
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 06:01:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691126#M300591</guid>
      <dc:creator>dastrix80</dc:creator>
      <dc:date>2018-08-20T06:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691242#M300596</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;interface GigabitEthernet0/1&lt;BR /&gt; description "Local LAN 192.168.0.0/24"&lt;BR /&gt; no ip address&lt;BR /&gt; no ip redirects&lt;BR /&gt; ip nat enable&lt;BR /&gt; duplex auto&lt;BR /&gt; speed 1000&lt;BR /&gt;&lt;STRONG&gt;--&amp;gt; bridge-group 1&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this a typo ? If not, where is the BVI ?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 07:32:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691242#M300596</guid>
      <dc:creator>Georg Pauwen</dc:creator>
      <dc:date>2018-08-20T07:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691264#M300601</link>
      <description>&lt;P&gt;Sorry, here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;interface Vlan1
 description "Link to the 192.168.0.x LAN"
 ip address 192.168.0.254 255.255.255.0
 no ip redirects
 ip nat enable
 zone-member security LAN
end
&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Aug 2018 08:12:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691264#M300601</guid>
      <dc:creator>dastrix80</dc:creator>
      <dc:date>2018-08-20T08:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691274#M300604</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;that is the SVI. If you have a bridge group configured, you need a BVI interface. Post the full running configuration, not just snippets, otherwise it is just guesswork.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, I don't see access list 1, what do you have specified ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;interface GigabitEthernet0/0&lt;BR /&gt; description "NBN HFC Aussie BroadBand 100/40"&lt;BR /&gt; ip address dhcp&lt;BR /&gt; &lt;STRONG&gt;ip access-group 1 in&lt;/STRONG&gt;&lt;BR /&gt; no ip redirects&lt;BR /&gt; ip nat enable&lt;BR /&gt; zone-member security WAN&lt;BR /&gt; load-interval 30&lt;BR /&gt; duplex auto&lt;BR /&gt; speed auto&lt;BR /&gt;!&lt;/P&gt;
&lt;P&gt;interface GigabitEthernet0/1&lt;BR /&gt; description "Local LAN 192.168.0.0/24"&lt;BR /&gt; no ip address&lt;BR /&gt; no ip redirects&lt;BR /&gt; ip nat enable&lt;BR /&gt; duplex auto&lt;BR /&gt; speed 1000&lt;BR /&gt; bridge-group 1&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 08:27:27 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691274#M300604</guid>
      <dc:creator>Georg Pauwen</dc:creator>
      <dc:date>2018-08-20T08:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691283#M300606</link>
      <description>&lt;P&gt;SVI/BVI - same thing. Everything works perfectly except SIP.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Full config here&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 08:39:08 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691283#M300606</guid>
      <dc:creator>dastrix80</dc:creator>
      <dc:date>2018-08-20T08:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691305#M300609</link>
      <description>&lt;P&gt;Hello Kris&lt;/P&gt;
&lt;P&gt;This look suspiciously like that same rtr with the buggy IOS for NVI nat? - LOL&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyhow could you try amend the ZBFW acl WAN-LAN to include the following and make sure they are above your exiting ace entries&lt;/P&gt;
&lt;P&gt;ip access-list extended SIP-Protection&lt;BR /&gt;&lt;STRONG&gt;5&lt;/STRONG&gt; &lt;STRONG&gt;permit udp any any range 16384 32767&lt;BR /&gt;6 permit tcp any any eq 1720&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 09:14:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691305#M300609</guid>
      <dc:creator>paul driver</dc:creator>
      <dc:date>2018-08-20T09:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691308#M300610</link>
      <description>&lt;P&gt;Hi Paul&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I changed the OS, which fixed the NAT issues &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; 15.4.3 now. Still have the script which readds the NAT's upon DHCP on the WAN going down, but it works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's absolutely the same router though &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Same issue im afraid.. I tuned FreeSwitch to the port range I put in my ACL FYI. No audio&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 09:24:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691308#M300610</guid>
      <dc:creator>dastrix80</dc:creator>
      <dc:date>2018-08-20T09:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691317#M300611</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;Going down the ZBFW route - Check out the post from the Firewall forum - &lt;A href="https://community.cisco.com/t5/firewalls/configuring-zone-based-firewall-for-voip/td-p/2601637" target="_self"&gt;here&lt;/A&gt;&amp;nbsp; it may be applicable to you or not regards your voice&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 09:36:40 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691317#M300611</guid>
      <dc:creator>paul driver</dc:creator>
      <dc:date>2018-08-20T09:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691319#M300612</link>
      <description>&lt;P&gt;Thanks, with the ZBF turned off on the WAN/LAN, I get the same issue so I'm pretty sure this is a NAT/SIP issue?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do see however he has static UDP nats for each RTP port&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: added those nats, same issue &lt;span class="lia-unicode-emoji" title=":face_blowing_a_kiss:"&gt;😘&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 09:51:58 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691319#M300612</guid>
      <dc:creator>dastrix80</dc:creator>
      <dc:date>2018-08-20T09:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691326#M300613</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;So then you'll need to amend any static nat entries pertaining to your host to accommodate your voice&lt;/P&gt;
&lt;P&gt;Have a look&amp;nbsp; &lt;A href="https://www.cisco.com/c/en/us/support/docs/ip/network-address-translation-nat/211269-NAT-in-VoIP.html" target="_self"&gt;here&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 09:57:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691326#M300613</guid>
      <dc:creator>paul driver</dc:creator>
      <dc:date>2018-08-20T09:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691327#M300614</link>
      <description>&lt;P&gt;Yes, i tried that&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I added this, 192.168.0.141 being the IP address of the device I'm calling on my LAN. No change.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;conf t
!
 ip nat source static udp 192.168.0.141 16384 interface GigabitEthernet0/0 16384
 ip nat source static udp 192.168.0.141 16385 interface GigabitEthernet0/0 16385
 ip nat source static udp 192.168.0.141 16386 interface GigabitEthernet0/0 16386
 ip nat source static udp 192.168.0.141 16387 interface GigabitEthernet0/0 16387 
ip nat source static udp 192.168.0.141 16388 interface GigabitEthernet0/0 16388
ip nat source static udp 192.168.0.141 16389 interface GigabitEthernet0/0 16389
ip nat source static udp 192.168.0.141 16390 interface GigabitEthernet0/0 16390

&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 10:00:12 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691327#M300614</guid>
      <dc:creator>dastrix80</dc:creator>
      <dc:date>2018-08-20T10:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691755#M300671</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;looking at your config, you have SIP ALG turned off:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;no ip nat service sip udp port 5060&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a specific reason to disable it ? Try and reenable it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;--&amp;gt; ip nat service sip udp port 5060 (which is the default actually)...&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 20:40:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691755#M300671</guid>
      <dc:creator>Georg Pauwen</dc:creator>
      <dc:date>2018-08-20T20:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691760#M300672</link>
      <description>&lt;P&gt;anyone &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 21:01:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691760#M300672</guid>
      <dc:creator>dastrix80</dc:creator>
      <dc:date>2018-08-20T21:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691767#M300674</link>
      <description>&lt;P&gt;hi George, with it enabled or disabled the results are the same im afraid.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Signalling works if the SIP NAT Service is disabled for TCP. RTP doesnt work at all, ONLY on the LAN&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FreeSwitch has been configured with RTP as below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ill happy PAY for someone to solve it!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;    &amp;lt;!-- RTP port range --&amp;gt;
    &amp;lt;param name="rtp-start-port" value="16384"/&amp;gt;
    &amp;lt;param name="rtp-end-port" value="16390"/&amp;gt;&lt;/PRE&gt;
&lt;P&gt;SI&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 21:20:34 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691767#M300674</guid>
      <dc:creator>dastrix80</dc:creator>
      <dc:date>2018-08-20T21:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691770#M300675</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;try:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Router(config)#ip nat service allow-sip-even-rtp-ports&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 21:15:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691770#M300675</guid>
      <dc:creator>Georg Pauwen</dc:creator>
      <dc:date>2018-08-20T21:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691776#M300676</link>
      <description>&lt;P&gt;No change Georg &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 21:27:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691776#M300676</guid>
      <dc:creator>dastrix80</dc:creator>
      <dc:date>2018-08-20T21:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691784#M300678</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;what if you use the IP address assigned by DHCP to your WAN interface and use that instead of the interface name ? So e.g.:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ip nat source static tcp 192.168.0.4 5060 212.22.12.12 5060 extendable&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 21:57:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691784#M300678</guid>
      <dc:creator>Georg Pauwen</dc:creator>
      <dc:date>2018-08-20T21:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691799#M300680</link>
      <description>&lt;P&gt;Hi Georg&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The issue is not with 5060, as mentioned the phone can register with the SIP server just fine on the static nat I've created. It rings, accepts and hangs up just fine. So this static nat is not the culprit.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also the extendable is not an option using my nat statement&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 23:21:32 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691799#M300680</guid>
      <dc:creator>dastrix80</dc:creator>
      <dc:date>2018-08-20T23:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691851#M300683</link>
      <description>&lt;P&gt;And here lies the problem. That IP address is my mobile phones private IP (the the Telco allocated one) which means the proxy doesnt know how to route to it, hence no RTP.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;v=0&lt;BR /&gt;o=Zoiper 0 1 IN IP4 10.164.13.47&lt;BR /&gt;s=Zoiper&lt;BR /&gt;c=IN IP4 10.164.13.47&lt;BR /&gt;t=0 0&lt;BR /&gt;m=audio 16392 RTP/AVP 0 3 8 101&lt;BR /&gt;a=rtpmap:0 PCMU/8000&lt;BR /&gt;a=rtpmap:3 GSM/8000&lt;BR /&gt;a=rtpmap:8 PCMA/8000&lt;BR /&gt;a=rtpmap:101 telephone-event/8000&lt;BR /&gt;a=fmtp:101 0-16&lt;BR /&gt;a=sendrecv&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2018 02:40:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691851#M300683</guid>
      <dc:creator>dastrix80</dc:creator>
      <dc:date>2018-08-21T02:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to get RTP working through Cisco Router</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691856#M300685</link>
      <description>&lt;P&gt;And its fixed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Had to open the RTP post to the SIP Server in combination with turning the ALG's on and setting RPORT on my zoipher client. Works nicely now &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2018 03:10:08 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/trying-to-get-rtp-working-through-cisco-router/m-p/3691856#M300685</guid>
      <dc:creator>dastrix80</dc:creator>
      <dc:date>2018-08-21T03:10:08Z</dc:date>
    </item>
  </channel>
</rss>

