FreeBSD 10.3-STABLE #7 r317754: Sat Jun 17 16:25:50 AEST 2017
It appears that this rule in /etc/devd.conf is triggering:
despite the fact that I have static IPv4 and IPv6 addresses.
From /var/log/messages:
From /etc/rc.conf:
Anyone know why? This seems to have only started happening since setting up IPv6.
It appears that this rule in /etc/devd.conf is triggering:
Code:
#
# Try to start dhclient on Ethernet-like interfaces when the link comes
# up. Only devices that are configured to support DHCP will actually
# run it. No link down rule exists because dhclient automatically exits
# when the link goes down.
#
notify 0 {
match "system" "IFNET";
match "type" "LINK_UP";
media-type "ethernet";
action "/etc/rc.d/dhclient quietstart $subsystem";
};
despite the fact that I have static IPv4 and IPv6 addresses.
From /var/log/messages:
Code:
Jun 19 10:29:46 shadow kernel: nfe0: link state changed to DOWN
Jun 19 10:31:47 shadow kernel: nfe0: link state changed to UP
Jun 19 10:31:47 shadow devd: Executing '/etc/rc.d/dhclient quietstart nfe0'
Jun 19 14:21:50 shadow kernel: nfe0: link state changed to DOWN
Jun 19 14:27:21 shadow kernel: nfe0: link state changed to UP
Jun 19 14:27:21 shadow devd: Executing '/etc/rc.d/dhclient quietstart nfe0'
From /etc/rc.conf:
Code:
ifconfig_nfe0=" inet 192.168.1.4 netmask 0xffffff00 media 100baseTx mediaopt full-duplex"
defaultrouter="192.168.1.1"
ifconfig_nfe0_ipv6="inet6 2400:1dc0:0:1a01:3631:c4dd::4 prefixlen 64"
ipv6_defaultrouter="fe80::3631:c4ff:febc:d01f%nfe0"
Anyone know why? This seems to have only started happening since setting up IPv6.