i got the syslog and ntp settings question a couple of times before so i just did a quick test to see if something breaks if i (almost blindly) add them. 5 minutes later the good news is that ...
See more...
i got the syslog and ntp settings question a couple of times before so i just did a quick test to see if something breaks if i (almost blindly) add them. 5 minutes later the good news is that it works fine. i have an eda v1.06 now that has an ntp and syslog setting on the left. adding a management VLAN should be just as simple (if you know where to add it ). i'm not building that into the eda by default but here's a few hints: edit /var/www/eda/index.php add a line after 87 that says: if ($vlanid=$_POST["vlanid"]) { $cfg["VLANID"]=$vlanid; } add a line after 198 that says: row("vlanid", $cfg["VLANID"]); edit /var/www/ks/ks5.php and at the end, right before the autobackup: <? if ($cfg["VLANID"]) { ?> esxcli network vswitch standard portgroup set -p Management --vlan-id <?=$cfg["VLANID"]; ?> <? } ?> i have a few more things i wanted to add so you could wait for the next eda release that should be out soon. or you can add ntpserver and syslogserver the same way as described above. to add color to input boxes shouldn't be too hard to do. i use a 'row' function to display the various input lines. it takes 2 or 3 parameters where the 3rd optional will display a small hint if you hoover your mouse over the input box. if you change inc.php in /var/www/eda: change line 34 and add '$color' as 4th argument change line 36 after '<input' add ' style='background:$color' then in /var/www/eda/index.php at any line that has a 'row' function you could add a color 'lightblue', 'orange', whatever as 4th argument