Sponsored Content
Operating Systems AIX HACMP Persistent IP blacklisted Post 302511492 by aixromeo on Thursday 7th of April 2011 01:39:16 AM
Old 04-07-2011
Ok let me rephrase the problem.

Its a production system.
I configured 1 persistant and 1 service per node address. When Clients (users) requests the active node using its service address the client receive the response with no problem.

When the communication is initiated by the node to other servers behind a firewall, no communication established. My interpretation is when the node initiates communication, it use the persistent the persistent address instead of the service one. On the firewall, only the service IP address is allowed so the trafic with the peristant address is blocked.
Is there a workaround?

Regards,
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Persistent variable

I found a way to make a numeric variable persistent for a script : #!/bin/bash function Persist() { # 1:Expression like VARIABLE=Value (numeric) local V=${1%=*} eval "$1" sed -i "s/^$V=*/$1/" $(which $(basename $0)) || return 1 }And how to use itAA=12 read -p "Enter a... (2 Replies)
Discussion started by: frans
2 Replies

2. AIX

HACMP does not start db2 after failover (db2nodes not getting modified by hacmp)

hi, when I do a failover, hacmp always starts db2 but recently it fails to start db2..noticed the issue is db2nodes.cfg is not modified by hacmp and is still showing primary node..manually changed the node name to secondary after which db2 started immediately..unable to figure out why hacmp is... (4 Replies)
Discussion started by: gkr747
4 Replies

3. AIX

Unable to add persistent IP

i am trying to make HACMP but when i add a persistent ip, error shows unable to determine address for 'UPIDGIS1_pers' pls help me out AIX - 5.3 HACMP -5.4 thanks (2 Replies)
Discussion started by: reply.ravi
2 Replies

4. Solaris

aggr not persistent after a reboot

All, I hope someone can help me on my problem with an aggregate, as I am a Solaris noob. I tried doing this according to the official documentation from Oracle (unfortunately, as a new user to the forum, I may not post URLs...) and also googled a lot around, but have not found any solution yet.... (15 Replies)
Discussion started by: Captainquark
15 Replies

5. Solaris

Persistent boot disks issue

Hi all, please i need your help urgently I am faced to a serious boot disks issue on an Sun Fire E2900. The system run with two disque in zpool . The operating system is Solaris 10 (ZFS) The first time the issue occured, i got the error below on the two disks: Apr 7 08:04:33... (0 Replies)
Discussion started by: saki_jumeau
0 Replies

6. War Stories

Why am I persistent to be WRONG!

:wall::wall::wall::wall: I am sharing some techno-geeky-work related issue, which can best be dissected here only. I am expecting more of a discussion,as serious as when two guys sharing experience over smoke and beer. The thing is, till now i have been only a student, so never cared about how... (10 Replies)
Discussion started by: animesharma
10 Replies

7. Programming

Python Request Persistent

I noticed that when attempting to download videos from the url, I receive a 403 forbidden when I get through to a certain point in my downloads. I can download a third of the videos but will error: Retrieving file 'blah-video.f4v'... Traceback (most recent call last): ... (0 Replies)
Discussion started by: metallica1973
0 Replies

8. Post Here to Contact Site Administrators and Moderators

UNIX.com is mail-blacklisted

Hi, I just registered to this forums using an e-mail address where the activation mail never was received. Thanks to Scott who activated my account by hand. So I looked up unix.com in blacklists on mxtoolbox.com (I'm not yet allowed to post URLs...) and found that the site is blacklisted in... (3 Replies)
Discussion started by: rse
3 Replies

9. Linux

Add persistent route in cent os 6.5

Hi , I have cent os 6.5 and am trying to make few routes permanent for bond: i have added two routes using below two commands : /sbin/route add -net 10.0.0.0 netmask 255.0.0.0 gw 10.59.160.128 /sbin/route add -net 0.0.0.0 netmask 0.0.0.0 gw 49.44.52.90 post which route command output is... (5 Replies)
Discussion started by: omkar.jadhav
5 Replies

10. AIX

BootIP vs Persistent IP in HACMP

I have done other clusters (HP MC/Service Guard and oracle Clusters, and RHEL Cluster services), and have good idea about hacmp (a little older knowledge). However the term "Boot IP" for some reason is messing with my head. Have not done HACMP since the 4.1.2.X days. Is the Bootip the... (1 Reply)
Discussion started by: mrmurdock
1 Replies
RDMA_GETADDRINFO(3)					   Librdmacm Programmer's Manual				       RDMA_GETADDRINFO(3)

NAME
rdma_getaddrinfo - Provides transport independent address translation. SYNOPSIS
#include <rdma/rdma_cma.h> int rdma_getaddrinfo (char *node, char *service, struct rdma_addrinfo *hints, struct rdma_addrinfo **res); ARGUMENTS
node Optional, name, dotted-decimal IPv4, or IPv6 hex address to resolve. service Service name or port number of address. hints Reference to an rdma_addrinfo structure containing hints about the type of service the caller supports. res A pointer to a linked list of rdma_addrinfo structures containing response information. DESCRIPTION
Resolves the destination node and service address and returns information needed to establish communication. Provides the RDMA functional equivalent to getaddrinfo. RETURN VALUE
Returns 0 on success, or -1 on error. If an error occurs, errno will be set to indicate the failure reason. NOTES
Either node or service must be provided. If hints are provided, the operation will be controlled by hints.ai_flags. If RAI_PASSIVE is specified, the call will resolve address information for use on the passive side of a connection. rdma_addrinfo ai_flags Hint flags that control the operation. Supported flags are: RAI_PASSIVE Indicates that the results will be used on the passive/listening side of a connection. RAI_NUMERICHOST If specified, then the node parameter, if provided, must be a numerical network address. This flag suppresses any lengthy address resolution. RAI_NOROUTE If set, this flag suppresses any lengthy route resolution. ai_family Address family for the source and destination address. Supported families are: AF_INET, AF_INET6, and AF_IB. ai_qp_type Indicates the type of RDMA QP used for communication. Supported types are: IBV_UD (unreliable datagram) and IBV_RC (reliable connected). ai_port_space RDMA port space in use. Supported values are: RDMA_PS_UDP and RDMA_PS_TCP. ai_src_len The length of the source address referenced by ai_src_addr. This will be 0 if an appropriate source address could not be dis- covered for a given destination. ai_dst_len The length of the destination address referenced by ai_dst_addr. This will be 0 if the RAI_PASSIVE flag was specified as part of the hints. ai_src_addr If provided, the address for the local RDMA device. ai_dst_addr If provided, the address for the destination RDMA device. ai_src_canonname The canonical for the source. ai_dst_canonname The canonical for the destination. ai_route_len Size of the routing information buffer referenced by ai_route. This will be 0 if the underlying transport does not require routing data, or none could be resolved. ai_route Routing information for RDMA transports that require routing data as part of connection establishment. The format of the rout- ing data depends on the underlying transport. If Infiniband transports are used, ai_route will reference an array of struct ibv_path_data. ai_connect_len Size of connection information referenced by ai_connect. This will be 0 if the underlying transport does not require addi- tional connection information. ai_connect Data exchanged as part of the connection establishment process. If provided, ai_connect data must be transferred as private data, with any user supplied private data following it. ai_next Pointer to the next rdma_addrinfo structure in the list. Will be NULL if no more structures exist. SEE ALSO
rdma_create_id(3), rdma_resolve_route(3), rdma_connect(3), rdma_create_qp(3), rdma_bind_addr(3), rdma_create_ep(3) librdmacm 2010-07-19 RDMA_GETADDRINFO(3)
All times are GMT -4. The time now is 03:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy