Quote from: ajr on May 10, 2026, 06:47:42 PMQuote from: viragomann on May 10, 2026, 10:46:22 AMQuote from: ajr on May 10, 2026, 09:41:54 AMtcpdump does not show any packets on the WAN interface so I do not know the sender address.Any source address in packets stemming from 127.0.0.0/8 is translated to the CARP VIP on the WAN due to your rule. So it's obvious the you cannot see any IP of this subnet.^^
So I try this:Code Selectroot@opn1:~ # pfctl -s nat192.168.178.11 is the interface address and 192.168.178.2 is the VIP.
no nat proto carp all
nat on igb1 inet from ! <opn1_igb1_plus_lo_addr> to any -> 192.168.178.2 port 1024:65535
nat on igb1 inet from <opn1_igb1_plus_lo_addr> to any -> <opn1_igb1_address> port 1024:65535 round-robin
root@opn1:~ # pfctl -T show -t opn1_igb1_address
192.168.178.11
root@opn1:~ # pfctl -T show -t opn1_igb1_plus_lo_addr
127.0.0.0/8
192.168.178.11
Any comments ?
Does not resolve the issue:
Code Select
# pfctl -s nat
no nat proto carp all
nat on igb1 inet from ! <opn2_igb1_plus_lo_addr> to any -> 192.168.178.2 port 1024:65535
nat on igb1 inet from <opn2_igb1_plus_lo_addr> to any -> <opn2_igb1_address> port 1024:65535 round-robin
root@opn2:~ # pfctl -T show -t opn2_igb1_address
192.168.178.12
root@opn2:~ # pfctl -T show -t opn2_igb1_plus_lo_addr
127.0.0.0/8
192.168.178.12
root@opn2:~ # ping 192.168.178.1
PING 192.168.178.1 (192.168.178.1): 56 data bytes
ping: sendto: Invalid argument
What am I doing wrong ?
"