Link to home
Start Free TrialLog in
Avatar of Rodrigo Carrilho
Rodrigo Carrilho

asked on

Polycom HDX 7000 not receiving incoming calls

Hi,

I have a site using Polycom HDX 7000 and due to some recent network changes the Polycom doesn't receive incoming calls anymore.

The connection is described below:


INTERNET
     |
PUBLIC FIX IP IP
     |
MIKROTIK ROUTER CCR1009 (DHCP & NAT)
     |
SWITCH
     |
DRAYTEK 2860 ROUTER (DHCP & NAT)
     |
SWITCH
     |
POLYCOM


I am testing the Polycom using  VTCTest at  71.14.2.157 and/or 71.14.2.158 and my public IP display correctly.
Outgoing calls are fine.

On the internal router (Draytek) I have open the following ports to linked them to the internal IP of the Polycom.

NAT -> OPEN PORTS

TCP 1720
TCP  3230-3243
UDP 3230-3341

What is the best way to solve and or troubleshoot this issue?

Thanks,
Giraffe
ASKER CERTIFIED SOLUTION
Avatar of David Johnson, CD
David Johnson, CD
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Rodrigo Carrilho
Rodrigo Carrilho

ASKER

Do you have any instructions on how to open ports on MIKROTIK router using Winbox please?
/ip firewall nat add chain=dstnat protocol=tcp dst-port=1720 action=dst-nat to-addresses=<internal IP address> to-ports=1720
/ip firewall nat add chain=dstnat protocol=tcp dst-port=3231-3243 action=dst-nat to-addresses=<internal IP address> to-ports=3231-3243
/ip firewall nat add chain=dstnat protocol=udp dst-port=3230-3341 action=dst-nat to-addresses=<internal IP address> to-ports=3230-3341

Easier if you have access to the web interface

from their wiki http://wiki.mikrotik.com/wiki/Forwarding_a_port_to_an_internal_IP
This example will show you how to forward port (tcp 5900) to an internal IP using destination NAT. 69.69.69.69 is the example wan IP, 192.168.1.101 is the desired internal destination.

/ip firewall nat add chain=dstnat dst-address=69.69.69.69 protocol=tcp dst-port=5900 \
    action=dst-nat to-addresses=192.168.1.101 to-ports=5900