For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

Julio_Navarro's avatar
Julio_Navarro
Icon for Cirrostratus rankCirrostratus
Oct 15, 2015

CURL CURLE UNSUPPORTED PROTOCOL

Hello!

I am trying to run this external monitor and I am getting out from the CURL command is :

CURLE_UNSUPPORTED_PROTOCOL (1)

This is the command:

curl-apd -k https://1.2.3.4/status/ 2>&1 > /dev/null | grep -i -q "away"

Please advise

Thank you

J

2 Replies

  • try the following in your external monitor:

    curl-apd -k https://1.2.3.4/status/ | grep -i -q 1>&1 /dev/null 
    
  • Hi Andrew!

    I made some changes based on your suggestion and it worked:

    curl -fNs -k https://1.2.3.4/status/ --connect-timeout 5 | grep -i "away" 2>&1 > /dev/null