Implementing support for save current running configuration and load configuration from a file.
endpoint : POST /mgmt/tm/sys/config
request body : {
"command" : "save" or "load"
"options": [{"file":},{"passphrase":}]
}
options is optional field, when not provided the configuration will be saved to or load from default file. passphrase is used to encrypt the file, when not provided the file will be unencrypted. To load config from an encrypted file, the same passphrase that was used to save the file must be used to load.
To save/lod the config to/from a .tar file, provide the file name ending with .tar; for example "backup.tar"
Implementing support for save current running configuration and load configuration from a file.
endpoint : POST /mgmt/tm/sys/config request body : { "command" : "save" or "load" "options": [{"file":},{"passphrase":}]
}
options is optional field, when not provided the configuration will be saved to or load from default file. passphrase is used to encrypt the file, when not provided the file will be unencrypted. To load config from an encrypted file, the same passphrase that was used to save the file must be used to load. To save/lod the config to/from a .tar file, provide the file name ending with .tar; for example "backup.tar"