mirror of
https://git.proxmox.com/git/pve-common
synced 2025-08-14 00:40:25 +00:00
fix #2303: detect IPs of p2p interfaces
"ip address show" prints: inet ADDR peer PEERADDR/32 scope global DEVICE for pointtopoint interfaces. We're not interested in the netmask itself, just make the Regex match. Signed-off-by: Stefan Reiter <s.reiter@proxmox.com>
This commit is contained in:
parent
8a27e4a457
commit
5c1556cd27
@ -592,7 +592,7 @@ sub get_local_ip_from_cidr {
|
||||
my $code = sub {
|
||||
my $line = shift;
|
||||
|
||||
if ($line =~ m!^\s*inet(?:6)?\s+($PVE::Tools::IPRE)/\d+!) {
|
||||
if ($line =~ m!^\s*inet(?:6)?\s+($PVE::Tools::IPRE)(?:/\d+|\s+peer\s+)!) {
|
||||
push @$IPs, $1;
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user