Skip to content
Snippets Groups Projects
Commit a4657cb0 authored by Florian Schaal's avatar Florian Schaal
Browse files

FS#2108 - Add option to set multiple ip addressses for a openvz container

FS#2006 - IPv6 Support for V-Server
parent eb1177f6
No related branches found
No related tags found
No related merge requests found
...@@ -60,6 +60,14 @@ class vm_openvz_plugin { ...@@ -60,6 +60,14 @@ class vm_openvz_plugin {
// Set the IP address // Set the IP address
$app->db->query("UPDATE openvz_ip SET vm_id = ? WHERE ip_address = ?", $this->id, $this->dataRecord['ip_address']); $app->db->query("UPDATE openvz_ip SET vm_id = ? WHERE ip_address = ?", $this->id, $this->dataRecord['ip_address']);
// Set additional IPs
if (isset($this->dataRecord['additional_ip'])) {
$app->db->query("UPDATE openvz_ip SET vm_id = 0, additional = 'n' WHERE vm_id = ? AND additional='y'", $this->id);
foreach ($this->dataRecord['additional_ip'] as $idx => $rec) {
$app->db->query("UPDATE openvz_ip SET vm_id = ?, additional = 'y' WHERE ip_address = ?", $this->id, $rec);
}
}
// Create the OpenVZ config file and store it in config field // Create the OpenVZ config file and store it in config field
$this->makeOpenVZConfig(); $this->makeOpenVZConfig();
...@@ -95,8 +103,16 @@ class vm_openvz_plugin { ...@@ -95,8 +103,16 @@ class vm_openvz_plugin {
// Set the IP address // Set the IP address
if(isset($this->dataRecord['ip_address'])) { if(isset($this->dataRecord['ip_address'])) {
$app->db->query("UPDATE openvz_ip SET vm_id = 0 WHERE vm_id = ?", $this->id); $app->db->query("UPDATE openvz_ip SET vm_id = 0 WHERE vm_id = ? AND additional='n'", $this->id);
$app->db->query("UPDATE openvz_ip SET vm_id = ? WHERE ip_address = ?", $this->id, $this->dataRecord['ip_address']); $app->db->query("UPDATE openvz_ip SET vm_id = ?, additional = 'n' WHERE ip_address = ?", $this->id, $this->dataRecord['ip_address']);
}
// Set additional IPs
if (isset($this->dataRecord['additional_ip'])) {
$app->db->query("UPDATE openvz_ip SET vm_id = 0, additional = 'n' WHERE (vm_id = ? AND additional='y')", $this->id);
foreach ($this->dataRecord['additional_ip'] as $idx => $rec) {
$app->db->query("UPDATE openvz_ip SET vm_id = ?, additional = 'y' WHERE ip_address = ?", $this->id, $rec);
}
} }
// Create the OpenVZ config file and store it in config field // Create the OpenVZ config file and store it in config field
...@@ -195,6 +211,17 @@ class vm_openvz_plugin { ...@@ -195,6 +211,17 @@ class vm_openvz_plugin {
$hostname = str_replace('{VEID}', $vm['veid'], $vm['hostname']); $hostname = str_replace('{VEID}', $vm['veid'], $vm['hostname']);
$tpl->setVar('hostname', $hostname); $tpl->setVar('hostname', $hostname);
$additional_ips = $app->db->queryAllRecords("SELECT * FROM openvz_ip WHERE vm_id = ?",$this->id);
if (isset($additional_ips)) {
$vm['ip_address']='';
foreach ($additional_ips as $ip) {
$vm['ip_address'] .= " ".$ip['ip_address'];
}
$vm['ip_address'] = substr($vm['ip_address'],1);
}
$tpl->setVar('ip_address', $vm['ip_address']);
$tpl->setVar('ip_address', $vm['ip_address']); $tpl->setVar('ip_address', $vm['ip_address']);
$tpl->setVar('nameserver', $vm['nameserver']); $tpl->setVar('nameserver', $vm['nameserver']);
$tpl->setVar('capability', $vm['capability']); $tpl->setVar('capability', $vm['capability']);
......
...@@ -327,6 +327,12 @@ if($_SESSION["s"]["user"]["typ"] == 'admin') { ...@@ -327,6 +327,12 @@ if($_SESSION["s"]["user"]["typ"] == 'admin') {
//################################# //#################################
) )
); );
$form["tabs"]['additional_ip'] = array (
'title' => "Additional IP",
'width' => 100,
'template' => "templates/openvz_vm_additional_ip_edit.htm",
);
} }
......
...@@ -178,6 +178,19 @@ class page_action extends tform_actions { ...@@ -178,6 +178,19 @@ class page_action extends tform_actions {
$app->tpl->setVar("ip_address", $ip_select); $app->tpl->setVar("ip_address", $ip_select);
unset($tmp); unset($tmp);
unset($ips); unset($ips);
//* Additional IPs
$sql="SELECT * FROM openvz_ip WHERE reserved = 'n' AND ((vm_id = ? AND additional='y') OR vm_id = 0) AND server_id = ?";
$additional_ips = $app->db->queryAllRecords($sql, $this->id, $vm_server_id);
foreach ($additional_ips as $idx => $rec) {
$temp .= "<input type='hidden' id='id".$idx."' name='additional_ip[".$idx."]' name='additional_ip[".$idx."]' value='0'>";
$used = @($rec['additional']=='y')?'CHECKED':'';
$temp .= "<input type='checkbox' value='".$rec['ip_address']."' id='id".$idx."' name='additional_ip[".$idx."]' ".$used."> ".$rec['ip_address']."<br>";
}
$app->tpl->setVar("additional_ip", $temp);
unset($used);
unset($temp);
unset($additional_ips);
if($this->id > 0) { if($this->id > 0) {
//* we are editing a existing record //* we are editing a existing record
......
<div class='page-header'></div>
<p><tmpl_var name="list_desc_txt"></p>
<legend>Additional IPs</legend>
<div class="form-group">
<div class="col-sm-3">
{tmpl_var name='additional_ip'}
</div>
</div>
<input type="hidden" name="id" value="{tmpl_var name='id'}">
<div class="clear"><div class="right">
<button class="btn btn-default formbutton-success" type="button" value="{tmpl_var name='btn_save_txt'}" data-submit-form="pageForm" data-form-action="vm/openvz_vm_edit.php">{tmpl_var name='btn_save_txt'}</button>
<button class="btn btn-default formbutton-default" type="button" value="{tmpl_var name='btn_cancel_txt'}" data-load-content="vm/openvz_vm_list.php">{tmpl_var name='btn_cancel_txt'}</button>
</div></div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment