Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IPaddr2: add support for network interfaces altname in the monitor operation #2027

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

waays-tl
Copy link

Currently, it's not possible to use an interface's altname by specifying it in the nic= proprerty because the monitor routine fails to recognize that the IP is configured on the proper interface.

This patch fixes that by returning all the altname properties of an interface alongside its main name.

Copy link

knet-jenkins bot commented Mar 24, 2025

Can one of the admins check and authorise this run please: https://ci.kronosnet.org/job/resource-agents/job/resource-agents-pipeline/job/PR-2027/1/input


echo "$iface"
echo "$iface $iface_altname"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should only return one interface name here, so you could do an if/else like if [ -n "$iface_altname" ]; then.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's a comment a few lines up that says:
# Its output are interface names devided by spaces (e.g., "eth0 eth1").

According to my tests, it works when returning both names (added set -x):

root! server:~# pcs resource debug-monitor vipAB
Operation monitor for vipAB (ocf:heartbeat:IPaddr2) returned: 'ok' (0)
 >  stderr: + local ipaddr=192.xxxxxxx
 >  stderr: + local netmask=27
 >  stderr: + ip -o -f inet addr show
 >  stderr: + grep \ 192.xxxxxxxxx/27
 >  stderr: + cut -d   -f2
 >  stderr: + grep -v ^ipsec[0-9][0-9]*$
 >  stderr: + local iface=enp8s0f1
 >  stderr: + ip -f inet link show dev enp8s0f1
 >  stderr: + grep altname
 >  stderr: + sed s/^[[:space:]]*//; s/altname //g
 >  stderr: + tr \n  
 >  stderr: + local iface_altname=nic-third 
 >  stderr: + echo enp8s0f1 nic-third 
 >  stderr: + return 0

@oalbrigt oalbrigt changed the title Add support for network interfaces altname in the monitor operation IPaddr2: add support for network interfaces altname in the monitor operation Mar 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants