Forum Discussion

Lalitha_379027's avatar
Lalitha_379027
Icon for Altocumulus rankAltocumulus
Jan 07, 2019

License Check Date of Big-IP from Big-IQ

I would like to check License date of Big-IP devices from Big-IQ.Where I can find it?

 

2 Replies

  • If you are after the output from

    tmsh show sys license
    , then send a GET request to the BIG-IP's
    /mgmt/tm/sys/license
    endpoint: e.g.,

     curl -sku : https:///mgmt/tm/sys/license
    

    To grab just the date related fields, pipe the output to a JSON parser and grep.

    ... | python -m json.tool | grep -E -A 1 'license.+Date|serviceCheckDate'
    

    An example output:

                           "licenseEndDate": {
                                "description": "2019/01/29"
        --
                            "licenseStartDate": {
                                "description": "2018/11/04"
        --
                            "licensedOnDate": {
                                "description": "2018/12/19"
        --
                            "serviceCheckDate": {
                                "description": "2018/12/30"