0

Hi I am new to Azure Cloud and scripting - Is it possible to use Azure funtions to run network commands like traceroute, or tcpdump in order to trouble shoot network issues with our wan connection ?

Rob
  • 14,746
  • 28
  • 47
  • 65
  • This question should be closed as a duplicate of https://stackoverflow.com/questions/45348498/run-exe-executable-file-in-azure-function – Rob Dec 02 '17 at 13:25

1 Answers1

2

It is possible to run the commands (identical to the way you’d do it from a console app), but keep in mind that Azure Functions runs within the App Service sandbox and some operations may be restricted. You can find more information about the sandbox here: https://github.com/projectkudu/kudu/wiki/Azure-Web-App-sandbox

Fabio Cavalcante
  • 12,328
  • 3
  • 35
  • 43