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…
Month: December 2018
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…