Should be similar on other switch types. Retrieve current settings about tagged/untagged VLAN Modify VLAN settings Write it back Save switch state Be sure not to cut yourself from switch management 🙂 You should have SNMP enabled and configured on switch (user with permission to read and write). We are using there two functions to… Continue reading Setting VLAN ports with SNMP and PHP on D-Link DGS-1210-28
Category: Internet
Monitoring BIND 9.6 with ZABBIX on Ubuntu
Basic concept is simple – BIND will generate XML file with statistics, PHP script output values we want into standalone files and we read those values with ZABBIX agent. We gonna need PHP to process XML statistics from BIND, install it with:
1 |
apt-get install php5-common php5-cli |
Turn on integrated BIND webserver with statistics in configuration file named.conf:
1 2 3 |
statistics-channels { inet * port 8053 allow { 127.0.0.1;}; }; |
And… Continue reading Monitoring BIND 9.6 with ZABBIX on Ubuntu