0

.NET アプリケーションから Asterisk サーバーに接続しようとしていますが、接続が確立されません。次のコードを使用してアスタリスクに接続しています。

Socket clientSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
IPEndPoint serverEndPoint = new IPEndPoint(IPAddress.Parse("192.168.0.35"), 5038);
clientSocket.Connect(serverEndPoint);

次のエラーが表示されます。

A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.0.35:5038

誰かが私が間違っていること、またはこれに対する解決策を教えてもらえますか?

よろしく、タマシュ

4

1 に答える 1

0

manager.conf で AMI を確認します。次のようになります。

 enabled = yes
 port = 5038
 bindaddr = 0.0.0.0
于 2013-02-20T11:00:26.010 に答える