Page 1 of 1

TCP/IP command not received

Posted: 12 Aug 2019 11:58
by mixmog
I'm trying to send TCP/IP command from one instance of PF to another.

When sending test message from PF (A) to PF (B), the result is "OK", however, no command is enacted on PF (B).

I know the syntax is correct because I can successfully trigger the command from Packet Sender - the command is enacted on the target isntance of PF.

What am I missing?

The command is:

192.168.1.71:8052|AUTHORIZATION myriad\r\n\r\nMIXER_INPUT_VOLUME_SET S1|1.0\r\n\r\n

Re: TCP/IP command not received

Posted: 12 Aug 2019 12:16
by radio42
Please try to replace the \r\n by ${CRLF}

E.g. use: (all in one line!)

EXEC_SEND_TCP 192.168.1.71:8052|AUTHORIZATION myriad${CRLF}${CRLF}MIXER_INPUT_VOLUME_SET S1|1.0${CRLF}${CRLF}

Re: TCP/IP command not received

Posted: 15 Aug 2019 12:38
by mixmog
That did the trick - many thanks!