System::Services::reboot_system

Introduced : BIG-IP_v9.0
Reboots the system. This method will reboot the system within specified number of seconds. Once this method has been called, no further operations or requests should be sent to the Portal, and make sure all pending operations are completed before the reboot.

Prototype

 reboot_system(
    in long seconds_to_reboot
);

Parameters

Parameter Type Description
seconds_to_reboot long The number of seconds before the reboot takes place.

Return Type

Type Description
void  

Exceptions

Exception Description
Common::AccessDenied Raised if the client credentials are not valid.
Common::InvalidArgument Raised if one of the arguments is invalid.
Common::OperationFailed Raised if an operation error occurs.

See Also

Warning

The links to the sample code below are remnants of the old DevCentral wiki and will result in a 404 error. For best results, please copy the link text and search the codeshare directly on DevCentral.

Sample Code


#!/usr/bin/python
# Script called with one argument (the IP address)
import suds; import bigsuds as pc;
ip = sys.argv[1]
un = 'admin'
pw = 'admin'
b = pc.BIGIP(hostname = ip, username = un, password = pw)
sr = b.System.Services.reboot_system(0)
sys.exit()

The BIG-IP API Reference documentation contains community-contributed content. F5 does not monitor or control community code contributions. We make no guarantees or warranties regarding the available code, and it may contain errors, defects, bugs, inaccuracies, or security vulnerabilities. Your access to and use of any code available in the BIG-IP API reference guides is solely at your own risk.