Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Find heartbeat ip address with cllsif command Post 303034545 by tomato00 on Monday 29th of April 2019 12:44:44 AM
Old 04-29-2019
Find heartbeat ip address with cllsif command

hi~~
my Os is 6.1
i want to find heartbeat ip address from below result.
i think, is it en7 onto both nodes?

Code:
[AAA01:root]/usr/es/sbin/cluster/utilities/cllsif
Adapter              Type       Network    Net Type   Attribute  Node       IP Address       Hardware Address Interface Name   Global Name      Netmask          Alias for HB Prefix Length

AAA01_1            service    net_diskhbmulti_01 diskhbmulti serial     AAA01    /dev/mndhb_lv_01                  mndhb_vg_01
AAA01_2            service    net_diskhbmulti_02 diskhbmulti serial     AAA01    /dev/mndhb_lv_02                  mndhb_vg_02
AAA01_3            service    net_diskhbmulti_03 diskhbmulti serial     AAA01    /dev/mndhb_lv_03                  mndhb_vg_03
AAA01              boot       net_ether_01 ether      public     AAA01    10.50.10.212                      en8                         255.255.255.0               24
AAA01-PRIV         service    net_ether_02 ether      private    AAA01    10.0.0.1                          en7                         255.255.255.0               24
BBB02_2            service    net_diskhbmulti_01 diskhbmulti serial     BBB02    /dev/mndhb_lv_01                  mndhb_vg_01
BBB02_3            service    net_diskhbmulti_02 diskhbmulti serial     BBB02    /dev/mndhb_lv_02                  mndhb_vg_02
BBB02_4            service    net_diskhbmulti_03 diskhbmulti serial     BBB02    /dev/mndhb_lv_03                  mndhb_vg_03
BBB02              boot       net_ether_01 ether      public     BBB02    10.50.10.213                      en8                         255.255.255.0               24
BBB02-PRIV         service    net_ether_02 ether      private    BBB02    10.0.0.2                          en7                         255.255.255.0               24


Last edited by Scrutinizer; 04-29-2019 at 01:23 PM..
 

10 More Discussions You Might Find Interesting

1. IP Networking

Mac address - what is line command to find and active new card

How do you find mac address and active new card. (1 Reply)
Discussion started by: wmetz
1 Replies

2. UNIX for Dummies Questions & Answers

How to find i.p address of our server

I don't have root access. How do I find i.p address of our sun server? Thanks. (4 Replies)
Discussion started by: vpotluri
4 Replies

3. UNIX for Advanced & Expert Users

Find LAN Address

Hi, I am wondering how I can find the network address under following situation. Things available: 1. An active network drop without knowing any details about the network. 2. I have windows, Linux, and Solaris machine available to use. Things to achieve: 1. Find out the... (5 Replies)
Discussion started by: jiashi2
5 Replies

4. HP-UX

how to find the IP address of a printer

I'm trying to find the IP address of a print queue. I tried this, but nada. cat /etc/hosts | lp -d lp01 Looked in the hosts file but it's not there (2 Replies)
Discussion started by: abNORMal
2 Replies

5. Cybersecurity

Help Required: Command to find IP address and command executed of a user

Hi, I am trying to write a script which would figure out who has run which command and their IP. As i dont have any clue as to which commands would do this job, i request some gurus to help me on this. Thanks Vishwas (2 Replies)
Discussion started by: loggedout
2 Replies

6. AIX

AIX:Command to get netaddress/subnet address command in IPv4/IP6

AIX:Command to get netaddress/subnet address command in IPv4/IP6 Can anybody help us with a command to retrieve netaddress/subnet address command in IPv4/IP6 on aix machine. net/subnet address is in the format 172.16.212.0(signifies all 255 machines in an IPv4 network) (2 Replies)
Discussion started by: rookie8278
2 Replies

7. UNIX for Dummies Questions & Answers

Is there a unix command to find ALL hostnames for an ip address?

I am trying to determine if there are several url/host names for an IP address. Is there a UNIX command to find ALL host names for an IP address? Thank you in advance. (3 Replies)
Discussion started by: rukasu
3 Replies

8. UNIX for Dummies Questions & Answers

How to Find another IP address

Hi Guys, I want to find another(Local host) machine IP address from my machine.. We are all connected in the same server, I mean same LAN. What i done is Connected with that user machine using SSH and SU.. After that i used IFCONFIG but it shows my Ip address. Can not able to get the... (8 Replies)
Discussion started by: Adhi
8 Replies

9. UNIX for Dummies Questions & Answers

Finding e-mail address using "find" command

any useful command to find and e-mail address hardcoded into a cfg file on an specific server? I already tried with:: find . -type f | xargs grep -l "nobody@foundstone.com" Thanks!! (1 Reply)
Discussion started by: JLo5621
1 Replies

10. Shell Programming and Scripting

Script to find available IP address

Hi, I am trying to write a script that will check all used IP on the server and then print me an addressees that are not in use. Problem is in comparing two variables #!/bin/bash NETSTAT=$(netstat -ntp | awk '{ print $4 }' | grep -v "127.0.0.1" | cut -d ":" -f1 | grep "^"|sort | uniq )... (6 Replies)
Discussion started by: nemesis911
6 Replies
AUTHKEYS(5)							Configuration Files						       AUTHKEYS(5)

NAME
authkeys - Authentication file for the Heartbeat cluster messaging layer DESCRIPTION
/etc/ha.d/authkeys is read by heartbeat(8). It enables Heartbeat to securely authenticate cluster nodes. This file must not be readable or writable by any users other than root. FILE FORMAT
Two lines are required in the authkeys file: 1. A line which says which key to use in signing outgoing packets 2. One or more lines defining how incoming packets might be being signed. The file must follow the following format: auth num num method secret num method secret num method secret ... num is a numerical identifier, between 1 and 15 inclusive. It must be unique within the file. method is one of the available authentication signature methods (see below for supported methods). secret is an alphanumerical shared secret used to identify cluster nodes to each other. auth num selects the currently active authentication method and secret. SUPPORTED SIGNATURE METHODS
The following signature methods are supported in authkeys (listed here in alphabetical order): md5 MD5 hash method. This method requires a shared secret. sha1 SHA-1 hash method. This method requires a shared secret. crc Cyclic Redundancy Check hash method. This method does not require a shared secret and is insecure; it's use is strongly discouraged. An absolutely up-to-date list of authentication methods supported may be retrieved by running ls /usr/lib/heartbeat/plugins/HBauth/*.so. AUTHORS
Alan Robertson <alanr@unix.sh> heartbeat, original Wiki page Florian Haas <florian.haas@linbit.com> man page Heartbeat 3.0.5 24 Nov 2009 AUTHKEYS(5)
All times are GMT -4. The time now is 01:10 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy