Forum Discussion

Zahid_101145's avatar
Zahid_101145
Icon for Nimbostratus rankNimbostratus
Sep 19, 2008

V9.4.4 Command Bugs

I have recently updated my LTM1500 Boxes to version 9.4.4 and have observed that the following three "bigpipe" commands are not working in this version:

 

1- b makecookie x.x.x.x:x

 

2- b profile http ramcache reset

 

3- b profile http ramcache dump

 

Can anyone suggest any alternate/substitute for these commands in v9.4.4?

 

 

Thanks,

 

Zahid
  • hoolio's avatar
    hoolio
    Icon for Cirrostratus rankCirrostratus
    Hi Zahid,

     

     

    1. I'm not sure when makecookie was removed, but Joe posted an example for how to generate the encoded value using an iRule:

     

    http://devcentral.f5.com/Default.aspx?tabid=53&forumid=5&tpage=1&view=topic&postid=9756

     

     

    SOL6917 also describes the encoding algorithm:

     

     

    SOL6917 - Overview of BIG-IP LTM cookie encoding for the cookie persistence profile

     

    https://support.f5.com/kb/en-us/solutions/public/6000/900/sol6917.html?sr=1188278

     

     

    2. RAM cache commands seemed to have changed (maybe after 9.4.2?).

     

     

    a. List cache entries:

     

     

    b profile http test_ramcache_http ramcache entry all

     

     

    b. Delete cache entries

     

     

    b profile http test_ramcache_http ramcache entry all delete

     

     

    The format is described in the 9.4.3+ Command Line Guide:

     

    https://support.f5.com/kb/en-us/products/big-ip_ltm/manuals/product/CLI_guide_943.html

     

     

     

    profile http [ | all] ramcache aging rate [show]

     

    profile http [ | all] ramcache entry [ | all] [show]

     

    profile http [ | all] ramcache ignore client cache control [show]

     

    profile http [ | all] ramcache insert age header [show]

     

    profile http [ | all] ramcache max age [show]

     

    profile http [ | all] ramcache max entries [show]

     

    profile http [ | all] ramcache max object size [show]

     

    profile http [ | all] ramcache min object size [show]

     

    profile http [ | all] ramcache size [show]

     

    profile http [ | all] ramcache uri exclude [show]

     

    profile http [ | all] ramcache uri include [show]

     

    profile http [ | all] ramcache uri pinned [show]

     

     

    profile http ( | all) ramcache entry ( | all) delete

     

     

    profile http my_rc_profile ramcache entry show

     

    profile http my_rc_profile ramcache entry all delete

     

     

     

     

    Aaron