Can I add TCP and UDP on the same host.v1 config?

Hi there again!

I am adding an RDP service, and I would like to support both TCP and UDP (for acceleration). Can that is added to this command, or does it need to be two configs?

ziti edge create config "${NAME}".cfg.host.v1 host.v1 '{
  "address":"127.0.0.1",
  "protocol":"tcp",
  "allowedPortRanges": [ {"low":'"${LOWPORT}"',"high":'"${HIGHPORT}"'} ],
  "forwardPort": true, 
  "listenOptions": { "identity": "$tunneler_id.name" }
  }'

I'd think this would work. Did you try it out?

"forwardProtocol": true, "allowedProtocols": [ "tcp", "udp" ]

I will give that a shot, thanks a bunch!!

Yup... that did it. You da man!