Forum Discussion

Andre_Barnes's avatar
Andre_Barnes
Icon for Nimbostratus rankNimbostratus
Aug 07, 2014

BigSuds

Can anyone provide an example of how to use the System.ConfigSync.synchronize_configuration method using Python and BigSuds? I am having trouble finding the proper method parameters to submit to the function call.

 

5 Replies

  • What version of BigIP are you running? This method only works for v9 and v10. I just want to make sure you are on one of those before I try and tackle this?

     

  • I am not entirely sure how this works. In V9 there was a 'Sync to Peer' and 'Sync From Peer' This doesn't indicate which it is, or how to specify which direction it is.

    I don't have a v9 I can test on, but it should be:

    b = bigsuds.BIGIP(hostname=hostname,username=username,password=password)
    b.System.ConfigSync.synchronize_configuration(sync_flag='CONFIGSYNC_ALL')
    
    • JRahm's avatar
      JRahm
      Icon for Admin rankAdmin
      nice, mimlo! Not sure why I didn't see your answers when I posted.