Difference between revisions of "Create objects in CLI"

From Tech-Wiki
Jump to: navigation, search
Line 5: Line 5:
  
 
List one similar object using:
 
List one similar object using:
  tmsh# list ltm profile client-ssl sslprofile  
+
  (tmos)# list ltm profile client-ssl sslprofile  
  
 
Then adjust the output and paste it into f5:
 
Then adjust the output and paste it into f5:
  tmsh# load sys config merge from-terminal
+
  (tmos)# load sys config merge from-terminal
  
 
Once you're done, hit Control-D to finish.
 
Once you're done, hit Control-D to finish.
  
 
Or you can use the create command and type everything in one single line:
 
Or you can use the create command and type everything in one single line:
  tmsh# create ltm profile client-ssl my_clientssl_profile {...... }
+
  (tmos)# create ltm profile client-ssl my_clientssl_profile {...... }

Revision as of 19:19, 11 April 2019

Back to Local Traffic Mananger

In order to create one object, you have two options.

List one similar object using:

(tmos)# list ltm profile client-ssl sslprofile 

Then adjust the output and paste it into f5:

(tmos)# load sys config merge from-terminal

Once you're done, hit Control-D to finish.

Or you can use the create command and type everything in one single line:

(tmos)# create ltm profile client-ssl my_clientssl_profile {...... }