Check connection (rsh or nimsh) between NIM server and LPAR

NIM server needs to be connected with LPARs, either using rsh or nimsh protocol. In case this communcation is lost, mksysb backups or other tasks from NIM to this lpar will fail. So, I have made this simple script to check this connectivity between NIM and LPAR.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/ksh
# Copyright (C) 2012 Israel Garcia iga3725 @ yahoo.com
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program
# You need to add parameter $1 as the name of the lpar (machine resource) to the script:
#
# Check machine resource exist on NIM:
lsnim -c machines|grep "$1" 1>/dev/null
if [[ $? -eq 0 ]] ; then
   echo
     else
    echo "ERROR: $1 machine resource does not exists on NIM." && exit 1
fi
#
nim -o lslpp $1 |grep bos.rte.odm 1>/dev/null
 
if [[ $? == 0 ]];then
    echo "Communication NIM-LPAR $1 is OK!!"
else
    echo; echo "ERROR: There's no connection between NIM and LPAR $1. Check configuration."
fi
echo

Just thanks if the post was helpful

5 (3)
Article Rating (3 Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
AIX, Storage, System Admin Allocating shared storage to VIOS clients
Viewed 3097 times since Fri, Apr 19, 2019
How to setup an user in AIX
Viewed 5408 times since Mon, May 28, 2018
Many Choices for AIX File Integrity
Viewed 3484 times since Wed, May 30, 2018
AIX - How to get network speed and statistic of ethernet adapter in AIX
Viewed 16553 times since Fri, Jun 8, 2018
AIX, Networking↑ Adding and deleting a static network route using the command line
Viewed 3726 times since Fri, Apr 19, 2019
Problem on resizing volume group on AIX 0516-1714, 0516-792, 0516-787, and 0516-404
Viewed 3652 times since Fri, Jul 6, 2018
Part 3, Tuning swap space settings AIX7
Viewed 10008 times since Wed, Jun 19, 2019
Using splitvg in AIX to make a copy of a volume group
Viewed 9868 times since Mon, Jun 3, 2019
Manages processor scheduler tunable parameters schedo AIX
Viewed 3361 times since Thu, Sep 20, 2018
AIX, Networking Etherchannel failover testing
Viewed 3827 times since Fri, Apr 19, 2019