My name is Morteza Hanasavi, I am a graduate of software engineering and since 2000 entered the profession and worked on network ,programming ,security. I would like to share this personal experience with others on this blog. When I started…
Author: morteza
Installing And Using Krio Control
There are a lot of accounting software for managing users , but I think one of the best of them is Kerio Control. kerio have many features like IPS, Antivirus,url and content filtring,Load balancing and Qos , managing Quota,dhcp server…
Install HPONCFG on ESXI for configuring hp server ILO
Hi , .. ssh to ESXI, #cd /tmp Download this file #wget http://hanasavi.ir/download/hpe-HPUtil-esxi6.5-bundle-2.6a-1.zip #esxcli software vib install -d /tmp/hpe-HPUtil-esxi6.5-bundle-2.6a-1.zip reload the esxi with this command : #reload # cd /opt/hp/tools reset ilo to factory #./hponcfg -r Get a txt file from…
GSM modem media & Zabbix
hi , today I use a Gsm modem to notify zabbix alerts by sms , the organization that I work there have billionton GSM Modem: for using this device , we must do this: First find my usb that…
Write a Script and add as media type in zabbix
Hi, every body Today I’d like to write a article about wrtting a script by python and use it in zabbix as a media type for sending triggers by sms: First : create a file with name : ghasedak.py ,…
Basic Cisco Vlaning Command
in this article ,I do a vlaning and you can try this by Packect Tracer,
Auto backup for Cisco Device
For getting back automatically after write a command or on periodically time do like this:
1 2 3 4 5 6 7 8 9 |
#conf t #service password-encryption #ip ftp username myUser #ip ftp password myPassword #archive #path ftp://myFtpServerIP/$h$t #time-period 1440 #write-memory #do wri |
write-memory command is for writting configuration after using ‘do wri’ command, in this case every time you using do wri the configuration will…
Setting SnmpV3 at Cisco device
We can use 3 level security for snmp version 3: noAuthNoPriv authNoPriv authPriv I want to use authPriv becuse of more security than other one:
1 2 3 4 |
#conf t #snmp-server group monitoring v3 priv #snmp-server "Enter-Security-Name" monitoring v3 auth md5 ”Enter-Authentication-passphrase” priv aes 128 ”Enter-Privacy-passphrase” #do wri |
Edit “Enter-Security-Name”,”Enter-Authentication-passphrase” and ”Enter-Privacy-passphrase” with your data For testing your device you can use snmpwalk…
Cisco Device SnmpV3 Template For Zabbix
I collected this template because I need a template for cisco devices that use snmpv3 .I spent alot of time on network but I cant obtain like this.here I upload this template for you. for using this template, download xml…
Installing Grafana v5.3.1 on Centos7
Grafana is The open platform for beautiful analytics and monitoring. Here we installing grafana , then in other post we try to use with zabbix server to have a nice graph an report:
1 2 3 4 5 6 7 8 9 10 11 12 |
#sudo yum install wget #wget https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana-5.3.1-1.x86_64.rpm #sudo yum localinstall grafana-5.3.1-1.x86_64.rpm #sudo systemctl daemon-reload #sudo systemctl start grafana-server #sudo systemctl status grafana-server #sudo systemctl enable grafana-server |
Installing Zabbix Plugin:
1 2 3 4 5 6 7 |
#sudo grafana-cli plugins install alexanderzobnin-zabbix-app #sudo systemctl restart grafana-server #sudo firewall-cmd --permanent --add-port=3000/tcp #sudo firewall-cmd --permanent --list-all |
1 |
#sudo firewall-cmd --reload |
The default…