Categories
- Blog (1)
- Grandstream UCM (1)
- IP Telephony (45)
- KVM (1)
- Linux (54)
- Microsoft (5)
- Mikrotik (14)
- Network (16)
- Paloalto Firewall (1)
- Uncategorized (196)
- Vicidial (4)
- VMware (67)
-
Recent Posts
- How to Retrieve VICIdial Admin Password from MySQL Database
- How to Manage KVM Virtual Machines on Ubuntu Server Using virsh
- Palo Alto UNAT Configuration – Step-by-Step Lab Guide (LAN → DMZ via WAN)
- Point-to-Point Wireless Devices Comparison: Practical Hardware Selection Guide
- Excitel Broadband Router Default Login
Category Archives: Linux
SSH Login Email Alerts
SSH Login Email Alerts The examples below send an email when someone logs into your server. For this to work, your server must be able to send mail using the mail command. CentOS Open the file ~/.bash_profile in a text editor. Append the following … Continue reading
iptables port forwarding
iptables port forwarding I am port forwarding public ip x.x.x.x to private ip 192.168.200.200 . iptables -A INPUT -i eth0 -p tcp –dport 5001 -m state –state NEW,ESTABLISHED -j ACCEPT iptables -A OUTPUT -o eth0 -p tcp –sport 5001 -m … Continue reading
how to configure Static IP on Centos 6
how to configure Static IP on Centos 6 ## Configure eth0 # # vi /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=”eth0″ NM_CONTROLLED=”yes” ONBOOT=yes HWADDR=A4:BA:DB:37:F1:04 TYPE=Ethernet BOOTPROTO=static NAME=”System eth0″ UUID=5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03 IPADDR=192.168.1.44 NETMASK=255.255.255.0
How to Show All NAT Tables Rules IPTABLES
How to Show All NAT Tables Rules IPTABLES iptables -t nat -L iptables -t nat -L -n -v | grep ‘something’ iptables -t nat -L -n -v The netstat-nat command display the natted connections on a Linux iptable firewall yum … Continue reading
no “setup” command found in CentOS minimal install
no “setup” command found in CentOS minimal install In Minimum Install this will not get install If we got below Error, we need to install some packages to get work with setup command [root@gkhan.in ~] setup -bash: setup: command not … Continue reading
fail2ban missing whois program
fail2ban missing whois program missing whois program in fail2ban email alerts . you are not able to receive IP information . #yum search whois gnome-nettool.x86_64 : A GNOME interface for various networking tools jwhois.x86_64 : Internet whois/nicname client. perl-Net-Whois.noarch : … Continue reading
How to Install the noip Client on Linux
How to Install the noip Client on Linux noip provides free Dynamic DNS services ( http://www.noip.com/remote-access) as DynDns was providing but its allow only three hostnames as free. This guide will walk you through the installation and setup of the … Continue reading
Remote Host Identification Has Changed error and solution
Remote Host Identification Has Changed error and solution When we run scp command to copy data to remote host its gives us error @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ IT IS POSSIBLE THAT SOMEONE IS DOING … Continue reading
Posted in Linux
Leave a comment
How to search text in linux
How to search text in linux You can use grep command in Linux for example grep -Ril “text-to-find-here” / i stands for upper/lower case (optional in your case). R stands for recursive. l stands for “show the file name, not … Continue reading
Posted in Linux
Leave a comment
how to run multiple command on single line on CentOS
If you want to run multiple command on single line on CentOS. If you want to execute each command only if the previous one succeeded, then combine them using the “&&” operator. If one of the commands fails, then all … Continue reading
Posted in Linux
Leave a comment