Deploy Tcp/ip Listener on azure Paas Solution

Shweta Singh 6 Reputation points
2021-04-06T11:45:05.31+00:00

Hi our team is looking to integrate teltonika gps device for which we need to deploy TCP IP listener on azure .. Which azure PAAS solution we should opt?

Azure Cloud Services
Azure Cloud Services
An Azure platform as a service offer that is used to deploy web and cloud applications.
633 questions
Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
7,101 questions
Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
6,844 questions
0 comments No comments
{count} vote

1 answer

Sort by: Most helpful
  1. Ryan Hill 25,481 Reputation points Microsoft Employee
    2021-04-07T17:09:07.997+00:00

    Hi @Shweta Singh ,

    The details you provided are a little vague but from PaaS standpoint, only ports 80 and 443 are open to the internet; see https://github.com/projectkudu/kudu/wiki/Azure-Web-App-sandbox#networking-restrictionsconsiderations. Similar rules apply to an app service environment, https://learn.microsoft.com/en-us/azure/app-service/environment/network-info#network-security-groups.

    I'm assuming the Teltonika device requires a different random port. I would reevaluate the need for the listener and look for an alternative way, for instance a local app that listens and forwards that information on. Nonetheless, if TCP/IP listening is a core requirement, then you will have to go the IaaS route. Create a VM that will host your application and secure the VM with Firewall/NSGs for accepting traffic on that port.

    Regards,
    Ryan

    Note: I've added additional tags to your question for greater visibility.