Extract IP of Relay

I’m trying to extract the IP address of a clients relay. The below gives me something like http://10.10.10.85:52311/bfmirror/downloads/. I just want the IP. Is there another client setting that could be used?

parameter “relay_ip” = value of setting “__RelayServer1” of client

Thanks!

Well, we can just parse the output to the desired format. How about something like:

parameter "relay_ip" = "{preceding text of first ":" of following text of first "://" of value of setting "__RelayServer1" of client | "n/a"}"

yes, that’ll do just fine. Thanks Aram!