mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| if ($_POST['editing']) {
 | |
|     if ($_SESSION['userlevel'] > '7') {
 | |
|         $ipmi_hostname = mres($_POST['ipmi_hostname']);
 | |
|         $ipmi_username = mres($_POST['ipmi_username']);
 | |
|         $ipmi_password = mres($_POST['ipmi_password']);
 | |
| 
 | |
|         if ($ipmi_hostname != '') {
 | |
|             set_dev_attrib($device, 'ipmi_hostname', $ipmi_hostname);
 | |
|         }
 | |
|         else {
 | |
|             del_dev_attrib($device, 'ipmi_hostname');
 | |
|         }
 | |
| 
 | |
|         if ($ipmi_username != '') {
 | |
|             set_dev_attrib($device, 'ipmi_username', $ipmi_username);
 | |
|         }
 | |
|         else {
 | |
|             del_dev_attrib($device, 'ipmi_username');
 | |
|         }
 | |
| 
 | |
|         if ($ipmi_password != '') {
 | |
|             set_dev_attrib($device, 'ipmi_password', $ipmi_password);
 | |
|         }
 | |
|         else {
 | |
|             del_dev_attrib($device, 'ipmi_password');
 | |
|         }
 | |
| 
 | |
|         $update_message = 'Device IPMI data updated.';
 | |
|         $updated        = 1;
 | |
|     }
 | |
|     else {
 | |
|         include 'includes/error-no-perm.inc.php';
 | |
|     }//end if
 | |
| }//end if
 | |
| 
 | |
| if ($updated && $update_message) {
 | |
|     print_message($update_message);
 | |
| }
 | |
| else if ($update_message) {
 | |
|     print_error($update_message);
 | |
| }
 | |
| 
 | |
| ?>
 | |
| 
 | |
| <h3>IPMI settings</h3>
 | |
| 
 | |
| <form id="edit" name="edit" method="post" action="" role="form" class="form-horizontal">
 | |
| <input type="hidden" name="editing" value="yes">
 | |
|   <div class="form-group">
 | |
|     <label for="ipmi_hostname" class="col-sm-2 control-label">IPMI/BMC Hostname</label>
 | |
|     <div class="col-sm-6">
 | |
|       <input id="ipmi_hostname" name="ipmi_hostname" class="form-control" value="<?php echo get_dev_attrib($device, 'ipmi_hostname'); ?>" />
 | |
|     </div>
 | |
|   </div>
 | |
|   <div class="form-group">
 | |
|     <label for="ipmi_username" class="col-sm-2 control-label">IPMI/BMC Username</label>
 | |
|     <div class="col-sm-6">
 | |
|       <input id="ipmi_username" name="ipmi_username" class="form-control" value="<?php echo get_dev_attrib($device, 'ipmi_username'); ?>" />
 | |
|     </div>
 | |
|   </div>
 | |
|   <div class="form-group">
 | |
|     <label for="impi_password" class="col-sm-2 control-label">IPMI/BMC Password</label>
 | |
|     <div class="col-sm-6">
 | |
|       <input id="ipmi_password" name="ipmi_password" type="password" class="form-control" value="<?php echo get_dev_attrib($device, 'ipmi_password'); ?>" />
 | |
|     </div>
 | |
|   </div>
 | |
|   <button class="btn btn-default btn-sm" type="submit" name="Submit">Save</button>
 | |
| </form>
 | |
| <p>To disable IPMI polling, please clear the setting fields and click <b>Save</b>.</p>
 |