Skip to content

List All IP Addresses for a Node

Supported Versions Last Updated
1.2.00 & higher
json output 1.14.00 & higher
2013/04/30
Action node-iplist
Method GET, POST
Variables

nodeid [id of node]

rdtype [json] For json output specify json or for default output leave blank. This variable is optional

Example Output

XML

Success:

 <status>success</status>

<statusmsg>Available ip addresses</statusmsg> / <statusmsg>No available ip addresses</statusmsg>

<ipcount>numbers of ip's</ipcount>

<ips>123.123.123.123,124.124.124.124,125.125.125.125</ips>

Error:

 <status>error</status>

<statusmsg>ERROR MESSAGE</statusmsg>

JSON

Success:

 {

"status":"success",

"statusmsg":"Available ip addresses",

"ipcount":"3"

"ips":"123.123.123.123,124.124.124.124,125.125.125.125"

}

Error:

 {"status":"error","statusmsg":"ERROR MESSAGE"}

Back to top