Post describes procedure to disable IPv6 on CentOS/RHEL 7. There are 2 ways to do this : 1. Disable IPv6 in kernel module (requires reboot) 2. Disable IPv6 using sysctl settings (no reboot required) To verify if IPv6 is enabled or not, execute : # ifconfig -a | grep inet6 inet6 fe80::211:aff:fe6a:9de4 prefixlen 64 scopeid […]
Archives for April 2016
Netbackup Script to get Policy Vs client list
Here is a small script to get the list of clients configured against a list of policies in netbackup. Command used here is bpplclients to get the client list. Put the list of policy in a file /tmp/policy_list. # cat /tmp/policy_list policy01 policy02 policy03 The script : for i in `cat /tmp/policy_list` do bpplclients $i […]