/server/generate_network_config
GET https://api.sitehost.nz/1.3/server/generate_network_config.json
Generates the network configuration for a server.
Query Parameters
Parameter | Type | Required | Description |
client_id | integer | Yes | The ID for the client that the server belongs to.Example: 1 |
name | string | Yes | The name of the server.Example: servername |
Code Samples
JavaScript PHP Rails Pythonvar xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", "https://api.sitehost.nz/1.3/server/generate_network_config.json?apikey=your_key_here&client_id=1&name=servername", false);
xmlHttp.send();
var response = xmlHttp.responseText;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.sitehost.nz/1.3/server/generate_network_config.json?apikey=your_key_here&client_id=1&name=servername");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
require 'net/http'
require 'uri'
uri = URI.parse("https://api.sitehost.nz/1.3/server/generate_network_config.json?apikey=your_key_here&client_id=1&name=servername")
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Get.new(uri.request_uri)
response = http.request(request)
import requests
uri = 'https://api.sitehost.nz/1.3/server/generate_network_config.json?apikey=your_key_here&client_id=1&name=servername'
response = requests.get(uri)
Response
200:application/json
{
"return": {
"/etc/network/interfaces": "# This file describes the network interfaces available on your system\n# and how to activate them. For more information, see interfaces(5).\n\n# The loopback network interface\nauto lo\niface lo inet loopback\n\n# SiteHost Configured Interfaces\nauto eth0\niface eth0 inet static\n address 192.168.15.4\n netmask 255.255.255.0\n gateway 192.168.15.1\n post-up ethtool -K eth0 tx off\n\n"
},
"msg": "Successful",
"status": true
}
"return": {
"/etc/network/interfaces": "# This file describes the network interfaces available on your system\n# and how to activate them. For more information, see interfaces(5).\n\n# The loopback network interface\nauto lo\niface lo inet loopback\n\n# SiteHost Configured Interfaces\nauto eth0\niface eth0 inet static\n address 192.168.15.4\n netmask 255.255.255.0\n gateway 192.168.15.1\n post-up ethtool -K eth0 tx off\n\n"
},
"msg": "Successful",
"status": true
}