MAC-flipping when using jails

Status
Not open for further replies.

airflow

Contributor
Joined
May 29, 2014
Messages
111
Hi,

I've a question regarding networking within a FreeNAS-system (especially when using jails).

Each day I get a mail (security run output) with lots of messages like these:

Code:
fractal.hetzendorf.local kernel log messages:
> arp: 172.22.2.2 moved from 02:47:2f:00:08:0a to ac:22:0b:4f:44:ea on epair1b
> arp: 172.22.2.2 moved from 02:5a:0e:00:0d:0a to ac:22:0b:4f:44:ea on epair6b
> arp: 172.22.2.2 moved from 02:5a:0e:00:0d:0a to ac:22:0b:4f:44:ea on epair6b
> arp: 172.22.2.2 moved from 02:5a:0e:00:0d:0a to ac:22:0b:4f:44:ea on epair6b
> arp: 172.22.2.2 moved from 02:5a:0e:00:0d:0a to ac:22:0b:4f:44:ea on epair6b
> arp: 172.22.2.2 moved from 02:47:2f:00:08:0a to ac:22:0b:4f:44:ea on epair1b
> arp: 172.22.2.2 moved from 02:c7:9b:00:0a:0a to ac:22:0b:4f:44:ea on epair3b
> arp: 172.22.2.2 moved from 02:c7:9b:00:09:0a to ac:22:0b:4f:44:ea on epair2b
> arp: 172.22.2.2 moved from 02:8c:47:00:0c:0a to ac:22:0b:4f:44:ea on epair5b
> arp: 172.22.2.2 moved from 02:5a:0e:00:0d:0a to ac:22:0b:4f:44:ea on epair6b
[loads of similar lines]

-- End of security output --


I investigated a little what's happening here. I didn't find any discussion/explanation on the internet, but my own findings are: Every jail of FreeNAS creates a pair of virtual interfaces epair<n>a (in the main-system) and epair<n>b (in the jail), where <n> is the number of the jail. epair<n>b is the interface where the IP of the jail is configured. Additionaly, there is a bridge0, which connects all epair<n>a and the physical interface (em0 in my case). Obviously, there must also be some logical connection between epair<n>a and epair<n>b, but i didn't find any virtual bridges that connect these two. I guess that's happening in the setup of the jails somewhere.

Nevertheless, in my understanding the jails and the mainsystem are connected via a virtual bridge. Bridges forward packets by looking at MAC-adresses, but they do not rewrite them. So all IPs used are in the same subnet, there is no routing involved.

The messages above indicate that there is MAC-flipping of the IP of the main-system (172.22.2.2). When I look at these messages closely, I see that it's always a flip from the MAC of an epair<n>a to the real MAC within in the main-system (em0, which has ac:22:0b:4f:44:ea). When I test from one of the jails, I see that ARP-resolution for the IP of the main-system (172.22.2.2) always resolves the the MAC of the corresponding epair<n>a-interface. This is not what I would expect, I would expect it to resolve to the MAC of em0, where this IP really lives. By the way, IP-adresses that live outside the FreeNAS-system (but still within the same subnet) are correctly resolved, also within the jails.

So for some reason the IP of the main-system does resolve differently within the jails. But even if I just accept this, there is still the question why does the system think that there is MAC-flipping? There is no MAC-flipping within any jail (or the main-system), so far I have checked it seems to stay consistent. Also, it's always the move from epair<n>a's MAC to em0's MAC - never the other direction! So what is really happening here? And can I prevent these messages, as they clog the security output with these unnecessary info and keep me from spotting the real interesting/important stuff?

Thanks,
airflow
 

saurav

Contributor
Joined
Jul 29, 2012
Messages
139
This happens for me too, except this part:

ARP-resolution for the IP of the main-system (172.22.2.2) always resolves the the MAC of the corresponding epair<n>a-interface.

For me, the IP of the main system always resolves to its real (own) mac and not to some epair<n>a interface.

I also see things like these in the dmesg.today in the jails:

arp: MY:RO:UT:ER:SM:AC attempts to modify permanent entry for 192.168.1.1 on epair4b

If you want to turn it off, google for a sysctl called "net.link.ether.inet.log_arp_movements". Also check the "arp" manpage. I haven't used that syctl because I don't completely understand what "proxy arp" is and how it is involved in jails' networking.
 

airflow

Contributor
Joined
May 29, 2014
Messages
111
For me, the IP of the main system always resolves to its real (own) mac and not to some epair<n>a interface.

This statement is only true for me when looking at ARP-resolution from within a jail (you can jump into a jail with "jexec <jailname> csh"). Are you sure that within a jail the main IP is resolved to its physical MAC? Not here.

If you want to turn it off, google for a sysctl called "net.link.ether.inet.log_arp_movements". Also check the "arp" manpage. I haven't used that syctl because I don't completely understand what "proxy arp" is and how it is involved in jails' networking.

This looks like there is an IP adress conflict. One of your jails has the same IP as your router.
 

saurav

Contributor
Joined
Jul 29, 2012
Messages
139
This statement is only true for me when looking at ARP-resolution from within a jail (you can jump into a jail with "jexec <jailname> csh"). Are you sure that within a jail the main IP is resolved to its physical MAC? Not here.

Yes, I'm sure. It is from within the jail. I wrote a small script to check this
Code:
#!/bin/sh

for JAIL in `sudo warden list | grep -v '^ID' | grep -v '^----' | awk '{print $1}'`
do
        echo $JAIL: `sudo jexec $JAIL arp -a | fgrep $1`
done



This looks like there is an IP adress conflict. One of your jails has the same IP as your router.
What looks like an IP address conflict?

That is what everyone keeps telling each other when they see that in the other person's logs. It may look like that, but it is not so. There is no IP address conflict. All jails belong to an IP range far away from the router
 

Dave Genton

Contributor
Joined
Feb 27, 2014
Messages
133
The MAC "flipping" is coming from the fact that your IP address is bound to both MAC addresses. Your primary NIC interface IP/MAC pair, then its detected when the same IP speaks using the other Mac address, my routers and other networking devices all complain about it as well but I haven't yet tried to stop it by changing/adding static mac-addresses in the jails as of yet. Due to the bridge it creates internally your primary IP address is aliased in the jail and used as the default gateway for the jail.
 

falkon

Cadet
Joined
Dec 12, 2015
Messages
7
I'm sorry to bring up an old thread but I seem to have the same problem.
Each jail was already set with a permanent MAC. 192.168.1.4 is plex and 192.168.1.100 is the server itself.
I think whenever the MAC swaps for 192.168.1.4, I lose access to plex.


Code:
Caprica.local kernel log messages:
> CPU: Intel(R) Xeon(R) CPU E3-1225 v3 @ 3.20GHz (3192.67-MHz K8-class CPU)
> SMP: AP CPU #1 Launched!
> Timecounter "TSC-low" frequency 1596334336 Hz quality 1000
> arp: 00:a0:de:95:e1:43 is using my IP address 192.168.1.100 on em0!
> vboxdrv: fAsync=0 offMin=0x2eb offMax=0xe55
> arp: 00:a0:de:95:e1:43 is using my IP address 192.168.1.100 on em0!
> bridge0: link state changed to UP
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair6b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair6b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair6b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair6b
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair6b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair6b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair6b
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair6b
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair6b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 58:6d:8f:81:0a:c9 is using my IP address 192.168.1.4 on epair6b!
> arp: 58:6d:8f:81:0a:c9 is using my IP address 192.168.1.4 on epair6b!
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 58:6d:8f:81:0a:c9 is using my IP address 192.168.1.4 on epair6b!
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 58:6d:8f:81:0a:c9 is using my IP address 192.168.1.4 on epair6b!
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 58:6d:8f:81:0a:c9 is using my IP address 192.168.1.4 on epair6b!
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 58:6d:8f:81:0a:c9 is using my IP address 192.168.1.4 on epair6b!
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 58:6d:8f:81:0a:c9 is using my IP address 192.168.1.4 on epair6b!
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 58:6d:8f:81:0a:c9 is using my IP address 192.168.1.4 on epair6b!
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 58:6d:8f:81:0a:c9 is using my IP address 192.168.1.4 on epair6b!
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.100 moved from 44:39:c4:94:b2:24 to 00:a0:de:95:e1:43 on epair8b
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 192.168.1.4 moved from 58:6d:8f:81:0a:c9 to 02:c0:cd:00:0a:0b on epair0b
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on epair0b
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 00:a0:de:95:e1:43 attempts to modify permanent entry for 192.168.1.100 on em0
> arp: 192.168.1.100 moved from 00:a0:de:95:e1:43 to 44:39:c4:94:b2:24 on epair8b
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on em0
> arp: 192.168.1.4 moved from 02:c0:cd:00:0a:0b to 58:6d:8f:81:0a:c9 on em0
> arp: 192.168.1.100 moved from 02:ff:20:00:0a:0a to 44:39:c4:94:b2:24 on epair6b
 
D

dlavigne

Guest
Please create a new thread that also includes your build version (from System -> Information) and hardware specs.
 
Status
Not open for further replies.
Top