diff options
| author | Tarik Gasmi | 2007-05-14 10:03:48 +0200 |
|---|---|---|
| committer | Tarik Gasmi | 2007-05-14 10:03:48 +0200 |
| commit | 59cf91925ca8da43d2427331b23e4673b0e53095 (patch) | |
| tree | 871f39414143192cb3e8bd6f4bd2b7462e7076b9 /ldap-site-mngmt/webinterface/computers/dhcphost_change.php | |
| parent | Some webinterface data. (diff) | |
| download | core-59cf91925ca8da43d2427331b23e4673b0e53095.tar.gz core-59cf91925ca8da43d2427331b23e4673b0e53095.tar.xz core-59cf91925ca8da43d2427331b23e4673b0e53095.zip | |
Other webinterface data.
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1077 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'ldap-site-mngmt/webinterface/computers/dhcphost_change.php')
| -rw-r--r-- | ldap-site-mngmt/webinterface/computers/dhcphost_change.php | 177 |
1 files changed, 177 insertions, 0 deletions
diff --git a/ldap-site-mngmt/webinterface/computers/dhcphost_change.php b/ldap-site-mngmt/webinterface/computers/dhcphost_change.php new file mode 100644 index 00000000..907fae8f --- /dev/null +++ b/ldap-site-mngmt/webinterface/computers/dhcphost_change.php @@ -0,0 +1,177 @@ +<?php +include('../standard_header.inc.php'); + +$syntax = new Syntaxcheck; + +$dhcp = $_POST['dhcpcont']; +$olddhcp = $_POST['olddhcp']; +$hostip = $_POST['hostip']; +$fixedaddress = $_POST['fixadd']; +$oldfixedaddress = $_POST['oldfixadd']; + +$rbs = $_POST['rbs']; +$oldrbs = $_POST['oldrbs']; + +$hostDN = $_POST['hostdn']; +$sbmnr = $_POST['sbmnr']; + +$dhcp = htmlentities($dhcp); +$olddhcp = htmlentities($olddhcp); +$rbs = htmlentities($rbs); +$oldrbs = htmlentities($oldrbs); + + +/*echo "new dhcp:"; print_r($dhcp); echo "<br>"; +echo "old dhcp:"; print_r($olddhcp); echo "<br>"; +echo "new rbs:"; print_r($rbs); echo "<br>"; +echo "old rbs:"; print_r($oldrbs); echo "<br>"; +echo "Host DN:"; print_r($hostDN); echo "<br>"; +echo "submenuNR:"; print_r($sbmnr); echo "<br><br>";*/ + + +$seconds = 40; +$url = 'dhcphost.php?dn='.$hostDN.'&sbmnr='.$sbmnr; + +echo " +<html> +<head> + <title>AU Management</title> + <link rel='stylesheet' href='../styles.css' type='text/css'> +</head> +<body> +<table border='0' cellpadding='30' cellspacing='0'> +<tr><td>"; + +########################################## +# DHCP + +if ($dhcp != "none" && $dhcp != $olddhcp){ + if ($dhcp != ""){ + $exp = ldap_explode_dn($dhcp, 1); + $dhcpcn = $exp[0]; + $dhcpau = $exp[2]; + + $entrydhcp ['dhcphlpcont'] = $dhcp; + if ($olddhcp != ""){ + echo "DHCP replace "; print_r($olddhcp); echo " with "; print_r($entrydhcp); echo "<br>"; + if ($result = ldap_mod_replace($ds,$hostDN,$entrydhcp)){ + $mesg = "Rechner erfolgreich in DHCP <b>".$dhcpcn." [Abt.: ".$dhcpau."]</b> angemeldet<br><br>"; + }else{ + $mesg = "Fehler beim ändern des DHCP Dienstes zu <b>".$dhcpcn."</b>!<br><br>"; + } + }else{ + if ( $hostip != "" ){ + $entrydhcp ['dhcpoptfixed-address'] = "ip"; + } + echo "DHCP add "; print_r($entrydhcp); echo "<br>"; + if ($result = ldap_mod_add($ds,$hostDN,$entrydhcp)){ + $mesg = "Rechner erfolgreich in DHCP <b>".$dhcpcn." [Abt.: ".$dhcpau."]</b> angemeldet<br><br>"; + }else{ + $mesg = "Fehler beim ändern des DHCP Dienstes zu <b>".$dhcpcn."</b>!<br><br>"; + } + } + }else{ + $entrydhcp ['dhcphlpcont'] = array(); + if ( $fixedaddress != "" ){ + $entrydhcp ['dhcpoptfixed-address'] = array(); + } + echo "DHCP delete "; echo "<br>"; + if ($result = ldap_mod_del($ds,$hostDN,$entrydhcp)){ + $mesg = "Rechner erfolgreich aus DHCP gelöscht<br><br>"; + }else{ + $mesg = "Fehler beim löschen aus DHCP Dienst!<br><br>"; + } + } + +} +if ($dhcp == "none"){ + echo " DHCP none <br>"; +} + +# DHCP Option fixed-address +if ($fixedaddress != "none" && $fixedaddress != $oldfixedaddress){ + if ($fixedaddress != ""){ + $entryfixadd ['dhcpoptfixed-address'] = $fixedaddress; + if ($oldfixedaddress != ""){ + echo "Fixed Address ändern"; echo "<br>"; + if ($result = ldap_mod_replace($ds,$hostDN,$entryfixadd)){ + $mesg = "Option Fixed-Address erfolgreich auf <b>".$fixedaddress."</b> geändert<br><br>"; + }else{ + $mesg = "Fehler beim ändern der Option Fixed-Address auf <b>".$fixedaddress."</b>!<br><br>"; + } + }else{ + echo "Fixed Address auf IP Adresse setzen"; echo "<br>"; + if ($result = ldap_mod_add($ds,$hostDN,$entryfixadd)){ + $mesg = "Option Fixed-Address erfolgreich auf <b>".$fixedaddress."</b> gesetzt<br><br>"; + }else{ + $mesg = "Fehler beim setzen der Option Fixed-Address auf <b>".$fixedaddress."</b>!<br><br>"; + } + } + }else{ + $entryfixadd ['dhcpoptfixed-address'] = array(); + echo "No Fixed Address"; echo "<br>"; + if ($result = ldap_mod_del($ds,$hostDN,$entryfixadd)){ + $mesg = "Option Fixed-Address erfolgreich gelöscht<br><br>"; + }else{ + $mesg = "Fehler beim löschen der Option Fixed-Address!<br><br>"; + } + } +} + + +########################################## +# RBS + +if ($rbs != "none" && $rbs != $oldrbs){ + if ($rbs != ""){ + $exp = ldap_explode_dn($rbs, 1); + $rbscn = $exp[0]; + $rbsau = $exp[2]; + + $dhcpdata = get_node_data($rbs,array("tftpserverip","initbootfile")); + $entryrbs ['hlprbservice'] = $rbs; + $entryrbs ['dhcpoptnext-server'] = $dhcpdata['tftpserverip']; + $entryrbs ['dhcpoptfilename'] = $dhcpdata['initbootfile']; + if ($oldrbs != ""){ + echo "RBS replace "; print_r($oldrbs); echo " with "; print_r($entryrbs); echo "<br>"; + if ($result = ldap_mod_replace($ds,$hostDN,$entryrbs)){ + rbs_adjust_host($hostDN, $rbs); + $mesg = "Remote Boot Service erfolgreich zu <b>".$rbscn." [Abt.: ".$rbsau."]</b> geändert<br><br>"; + }else{ + $mesg = "Fehler beim ändern des Remote Boot Services zu <b>".$rbscn."</b>!<br><br>"; + } + }else{ + echo "RBS add "; print_r($entryrbs); echo "<br>"; + if ($result = ldap_mod_add($ds,$hostDN,$entryrbs)){ + rbs_adjust_host($hostDN, $rbs); + $mesg = "Remote Boot Service erfolgreich zu <b>".$rbscn." [Abt.: ".$rbsau."]</b> geändert<br><br>"; + }else{ + $mesg = "Fehler beim ändern des Remote Boot Services zu <b>".$rbscn."</b>!<br><br>"; + } + } + }else{ + $entryrbs ['hlprbservice'] = array(); + $entryrbs ['dhcpoptnext-server'] = array(); + $entryrbs ['dhcpoptfilename'] = array(); + echo "RBS delete "; echo "<br>"; + if ($result = ldap_mod_del($ds,$hostDN,$entryrbs)){ + $mesg = "Rechner erfolgreich aus RBS gelöscht<br><br>"; + }else{ + $mesg = "Fehler beim löschen aus RBS!<br><br>"; + } + } +} +if ($rbs == "none"){ + echo "RBS none <br>"; +} + + +##################### + +$mesg .= "<br>Sie werden automatisch auf die vorherige Seite zurückgeleitet. <br> + Falls nicht, klicken Sie hier <a href=".$url." style='publink'>back</a>"; +redirect($seconds, $url, $mesg, $addSessionId = TRUE); + +echo "</td></tr></table></body> +</html>"; +?>
\ No newline at end of file |
