Forum Discussion

Fotios_30046's avatar
Fotios_30046
Icon for Nimbostratus rankNimbostratus
Aug 26, 2010

Add ClientSSL Profile Via Command Line

I've been trying to script all additions/modifications to our bigip so they can be logged into change database, but seem to be having a problem adding a clientssl profile.

 

 

Here is the command I'm trying to execute:

 

 

b profile clientssl XXXX { defaults from clientssl key "XXXX.key" cert "XXXX.crt" chain "GeoTrust.crt" ciphers "ALL:!NULL:!ADH:!LOW:!EXP:RC4+RSA:!SSLv2:+HIGH:+MEDIUM" options { dont insert empty fragments no sslv2 } }

 

 

I'm getting error:

 

 

-bash: !NULL: event not found

 

 

I tried to wrap the ! in apostrophe, but it still won't work.

 

  • George_Watkins_'s avatar
    George_Watkins_
    Historic F5 Account
    You need to escape those "bangs". "!NULL" should look like this "\!NULL" for bash to handle it correctly. Even with quotes, bash still tries to interpret it.

     

     

    -George