[ РЕШЕНО ] Обновление systemd поломало интернет

vall
В репах уже systemd -> 245-2.

Не исправили. Сеть после перезагрузки приходится поднимать вручную.
Понятно. В текущих кедах всё крутится без проблем. После выключения, перезагрузки, сна -- сеть сама поднимается как обычно.
dmix
Сеть после перезагрузки приходится поднимать вручную.
Вы бы хоть сказали что у вас сеть поднимает: какой сервис и лог этого сервиса показали
vs220
Точно [email protected] сеть поднимает?
ls /etc/systemd/system/multi-user.target.wants
ls /etc/systemd/network

systemctl status [email protected]
и покажите

systemctl list-units

Короче говоря, сегодня утром проснулся, осердчал на systemd, и РЕШЕНИЕ сразу придумалось - благодаря вашим наводкам выше, разумеется ) А именно:

sudo systemctl start [email protected]
sudo systemctl enable [email protected]


- и всё, после перезагрузки инет есть. systemd кстати уже 245-3, сегодня утром же и прилетело. Кстати изначально на

systemctl status [email protected]

ответ был "Inactive (dead)". Сейчас же, после указанного решения, уже "Active". И ещё, на ноуте с инетом через Wi-Fi обновление systemd прошло незамеченным, всё в порядке.

Остался непонятным лишь один вопрос: какого... хм... чёрта это всё произошло? Баг, фича, раззвездяйство?
yurius
чёрта это всё произошло?
судя по логу

journalctl -u [email protected]
– Logs begin at Thu 2020-01-09 09:32:25 EET, end at Tue 2020-03-10 19:2>
– No entries –
с 9января у вас dhcpcd@enp2s0 не стартовал
значит или другая служба сеть поднимала или dhcpcd на все интерфейсы

Смотрите лог на предмет сервисов связанных с интернетом и что у вас сеть поднимало
дрипнуть по какому нибудь признаку enp, dhcpcd, ip а потом уже по дате более подробно глянуть
например
journalctl |grep -e "Link is Up" -e enp -e dhcpcd -e network -e r8169
---
…мар 12 22:20:18 vs220 audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dhcpcd@enp3s0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'

journalctl --since="2020-3-12 22:20:16"
мар 12 22:20:18 vs220 systemd[1]: Stopped target Network.

мар 12 22:20:18 vs220 systemd[1]: Stopping dhcpcd on enp3s0…
….
мар 12 22:20:18 vs220 dhcpcd[520]: enp3s0: removing interface
мар 12 22:20:18 vs220 dhcpcd[520]: dhcpcd exited
мар 12 22:20:18 vs220 systemd[1]: [email protected]: Succeeded.
мар 12 22:20:18 vs220 systemd[1]: Stopped dhcpcd on enp3s0

journalctl -u [email protected]
----
мар 12 18:03:44 vs220 systemd[1]: Starting dhcpcd on enp3s0...
мар 12 18:03:45 vs220 dhcpcd[449]: enp3s0: waiting for carrier
мар 12 18:03:45 vs220 dhcpcd[449]: enp3s0: waiting for carrier
мар 12 18:03:45 vs220 dhcpcd[449]: enp3s0: carrier acquired
мар 12 18:03:45 vs220 dhcpcd[449]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:d4:3d:7e:4f:77:b4
мар 12 18:03:45 vs220 dhcpcd[449]: enp3s0: IAID 7e:4f:77:b4
мар 12 18:03:45 vs220 dhcpcd[449]: enp3s0: carrier lost
мар 12 18:03:46 vs220 dhcpcd[449]: enp3s0: carrier acquired
мар 12 18:03:46 vs220 dhcpcd[449]: enp3s0: IAID 7e:4f:77:b4
мар 12 18:03:47 vs220 dhcpcd[449]: enp3s0: soliciting a DHCP lease
мар 12 18:03:48 vs220 dhcpcd[449]: enp3s0: offered 192.168.0.100 from 192.168.0.1
мар 12 18:03:48 vs220 dhcpcd[449]: enp3s0: leased 192.168.0.100 for 7200 seconds
мар 12 18:03:48 vs220 dhcpcd[449]: enp3s0: adding route to 192.168.0.0/24
мар 12 18:03:48 vs220 dhcpcd[449]: enp3s0: adding default route via 192.168.0.1
мар 12 18:03:48 vs220 dhcpcd[449]: forked to background, child pid 520
мар 12 18:03:48 vs220 systemd[1]: Started dhcpcd on enp3s0.
мар 12 22:20:18 vs220 systemd[1]: Stopping dhcpcd on enp3s0...
мар 12 22:20:18 vs220 dhcpcd[33721]: sending signal TERM to pid 520
мар 12 22:20:18 vs220 dhcpcd[33721]: waiting for pid 520 to exit
мар 12 22:20:18 vs220 dhcpcd[33721]: sending signal TERM to pid 520
мар 12 22:20:18 vs220 dhcpcd[33721]: waiting for pid 520 to exit
мар 12 22:20:18 vs220 dhcpcd[520]: received SIGTERM, stopping
мар 12 22:20:18 vs220 dhcpcd[520]: enp3s0: removing interface
мар 12 22:20:18 vs220 dhcpcd[520]: dhcpcd exited
мар 12 22:20:18 vs220 systemd[1]: [email protected]: Succeeded.
мар 12 22:20:18 vs220 systemd[1]: Stopped dhcpcd on enp3s0.
видно например что при выключении успешно выключился интерфейс а сеть выключал и поднимал [email protected]
vs220
journalctl –since="2020-3-12 22:20:16"

yurius@yurius:~$ journalctl --since="2020-3-10 12:20:16" | grep "enp\|dhcpcd"
Mar 10 14:23:21 yurius systemd-networkd[333]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 14:23:21 yurius systemd-networkd[333]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 10 14:23:21 yurius systemd-networkd[333]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 14:23:21 yurius systemd-networkd[333]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 14:23:22 yurius systemd-networkd[333]: enp2s0: IPv6 successfully enabled
Mar 10 14:23:22 yurius systemd-networkd[333]: enp2s0: Link UP
Mar 10 14:23:23 yurius systemd-networkd[333]: enp2s0: Gained carrier
Mar 10 14:23:25 yurius systemd-networkd[333]: enp2s0: Gained IPv6LL
Mar 10 14:23:38 yurius systemd-networkd[333]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 10 14:29:25 yurius systemd-networkd[333]: enp2s0: DHCP lease lost
Mar 10 14:29:47 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 14:29:47 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 14:29:47 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 14:29:47 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 14:47:07 yurius sudo[1298]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/ip link set enp2s0 up
Mar 10 14:47:07 yurius systemd-networkd[338]: enp2s0: Link UP
Mar 10 14:47:08 yurius systemd-networkd[338]: enp2s0: Gained carrier
Mar 10 14:47:10 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Mar 10 14:47:19 yurius sudo[1352]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/dhcpcd enp2s0
Mar 10 14:47:19 yurius dhcpcd[1353]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 10 14:47:19 yurius dhcpcd[1353]: enp2s0: IAID 23:b6:e6:64
Mar 10 14:47:19 yurius dhcpcd[1353]: enp2s0: soliciting a DHCP lease
Mar 10 14:47:19 yurius dhcpcd[1353]: enp2s0: offered 192.168.1.2 from 192.168.1.1
Mar 10 14:47:19 yurius dhcpcd[1353]: enp2s0: probing address 192.168.1.2/24
Mar 10 14:47:19 yurius dhcpcd[1353]: enp2s0: soliciting an IPv6 router
Mar 10 14:47:24 yurius dhcpcd[1353]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 10 14:47:24 yurius dhcpcd[1353]: enp2s0: adding route to 192.168.1.0/24
Mar 10 14:47:24 yurius dhcpcd[1353]: enp2s0: adding default route via 192.168.1.1
Mar 10 14:47:24 yurius dhcpcd[1353]: forked to background, child pid 1426
Mar 10 14:47:31 yurius dhcpcd[1426]: enp2s0: no IPv6 Routers available
Mar 10 17:40:21 yurius dhcpcd[1426]: received SIGTERM, stopping
Mar 10 17:40:21 yurius dhcpcd[1426]: enp2s0: removing interface
Mar 10 17:40:21 yurius dhcpcd[1426]: dhcpcd exited
Mar 10 17:40:41 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 17:40:41 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 17:40:41 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 17:40:41 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 17:42:53 yurius systemd-networkd[1199]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 17:42:53 yurius systemd-networkd[1199]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 17:43:38 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 17:43:38 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 17:43:38 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 17:43:38 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 17:48:53 yurius systemd-networkd[1283]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 17:48:53 yurius systemd-networkd[1283]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 17:49:15 yurius systemd-networkd[1283]: enp2s0: Link UP
Mar 10 17:49:17 yurius systemd-networkd[1283]: enp2s0: Gained carrier
Mar 10 17:49:18 yurius systemd-networkd[1283]: enp2s0: Gained IPv6LL
Mar 10 17:49:25 yurius dhcpcd[1358]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 10 17:49:25 yurius dhcpcd[1358]: enp2s0: IAID 23:b6:e6:64
Mar 10 17:49:25 yurius dhcpcd[1358]: enp2s0: soliciting an IPv6 router
Mar 10 17:49:25 yurius dhcpcd[1358]: enp2s0: rebinding lease of 192.168.1.2
Mar 10 17:49:26 yurius dhcpcd[1358]: enp2s0: probing address 192.168.1.2/24
Mar 10 17:49:31 yurius dhcpcd[1358]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 10 17:49:31 yurius dhcpcd[1358]: enp2s0: adding route to 192.168.1.0/24
Mar 10 17:49:31 yurius dhcpcd[1358]: enp2s0: adding default route via 192.168.1.1
Mar 10 17:49:31 yurius dhcpcd[1358]: forked to background, child pid 1441
Mar 10 17:49:37 yurius dhcpcd[1441]: enp2s0: no IPv6 Routers available
Mar 10 17:51:05 yurius dhcpcd[1441]: received SIGTERM, stopping
Mar 10 17:51:05 yurius dhcpcd[1441]: enp2s0: removing interface
Mar 10 17:51:05 yurius dhcpcd[1441]: dhcpcd exited
Mar 10 17:51:19 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 17:51:19 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 17:51:19 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 17:51:19 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 17:51:43 yurius systemd-networkd[337]: enp2s0: Link UP
Mar 10 17:51:44 yurius systemd-networkd[337]: enp2s0: Gained carrier
Mar 10 17:51:45 yurius dhcpcd[934]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 10 17:51:45 yurius dhcpcd[934]: enp2s0: IAID 23:b6:e6:64
Mar 10 17:51:45 yurius dhcpcd[934]: enp2s0: rebinding lease of 192.168.1.2
Mar 10 17:51:45 yurius dhcpcd[934]: enp2s0: probing address 192.168.1.2/24
Mar 10 17:51:45 yurius dhcpcd[934]: enp2s0: soliciting an IPv6 router
Mar 10 17:51:46 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Mar 10 17:51:50 yurius dhcpcd[934]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 10 17:51:50 yurius dhcpcd[934]: enp2s0: adding route to 192.168.1.0/24
Mar 10 17:51:50 yurius dhcpcd[934]: enp2s0: adding default route via 192.168.1.1
Mar 10 17:51:50 yurius dhcpcd[934]: forked to background, child pid 1012
Mar 10 17:51:58 yurius dhcpcd[1012]: enp2s0: no IPv6 Routers available
Mar 10 17:53:02 yurius systemd[1]: [email protected]: Killing process 1012 (dhcpcd) with signal SIGKILL.
Mar 10 17:53:16 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 17:53:16 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 10 17:53:16 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 17:53:16 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 17:53:16 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Mar 10 17:53:17 yurius systemd-networkd[336]: enp2s0: Link UP
Mar 10 17:53:18 yurius systemd-networkd[336]: enp2s0: Gained carrier
Mar 10 17:53:19 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Mar 10 17:53:20 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 10 19:22:26 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Mar 10 19:22:44 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 19:22:44 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 19:22:44 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 19:22:44 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 19:24:45 yurius sudo[1145]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/journalctl -u [email protected]
Mar 10 19:28:52 yurius sudo[1213]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/ip link set enp2s0 up
Mar 10 19:28:52 yurius systemd-networkd[337]: enp2s0: Link UP
Mar 10 19:28:54 yurius systemd-networkd[337]: enp2s0: Gained carrier
Mar 10 19:28:55 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Mar 10 19:29:02 yurius sudo[1272]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/dhcpcd enp2s0
Mar 10 19:29:02 yurius dhcpcd[1273]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 10 19:29:02 yurius dhcpcd[1273]: enp2s0: IAID 23:b6:e6:64
Mar 10 19:29:02 yurius dhcpcd[1273]: enp2s0: rebinding lease of 192.168.1.2
Mar 10 19:29:02 yurius dhcpcd[1273]: enp2s0: probing address 192.168.1.2/24
Mar 10 19:29:02 yurius dhcpcd[1273]: enp2s0: soliciting an IPv6 router
Mar 10 19:29:07 yurius dhcpcd[1273]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 10 19:29:07 yurius dhcpcd[1273]: enp2s0: adding route to 192.168.1.0/24
Mar 10 19:29:07 yurius dhcpcd[1273]: enp2s0: adding default route via 192.168.1.1
Mar 10 19:29:07 yurius dhcpcd[1273]: forked to background, child pid 1333
Mar 10 19:29:14 yurius dhcpcd[1333]: enp2s0: no IPv6 Routers available
Mar 10 19:38:22 yurius dhcpcd[1333]: received SIGTERM, stopping
Mar 10 19:38:22 yurius dhcpcd[1333]: enp2s0: removing interface
Mar 10 19:38:22 yurius dhcpcd[1333]: dhcpcd exited
Mar 10 19:38:37 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 19:38:37 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 19:38:37 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 19:38:38 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 19:39:05 yurius sudo[923]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/ip link set enp2s0 up
Mar 10 19:39:06 yurius systemd-networkd[338]: enp2s0: Link UP
Mar 10 19:39:07 yurius systemd-networkd[338]: enp2s0: Gained carrier
Mar 10 19:39:08 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Mar 10 19:39:09 yurius sudo[943]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/dhcpcd enp2s0
Mar 10 19:39:09 yurius dhcpcd[944]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 10 19:39:09 yurius dhcpcd[944]: enp2s0: IAID 23:b6:e6:64
Mar 10 19:39:09 yurius dhcpcd[944]: enp2s0: rebinding lease of 192.168.1.2
Mar 10 19:39:09 yurius dhcpcd[944]: enp2s0: probing address 192.168.1.2/24
Mar 10 19:39:09 yurius dhcpcd[944]: enp2s0: soliciting an IPv6 router
Mar 10 19:39:15 yurius dhcpcd[944]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 10 19:39:15 yurius dhcpcd[944]: enp2s0: adding route to 192.168.1.0/24
Mar 10 19:39:15 yurius dhcpcd[944]: enp2s0: adding default route via 192.168.1.1
Mar 10 19:39:15 yurius dhcpcd[944]: forked to background, child pid 1007
Mar 10 19:39:21 yurius dhcpcd[1007]: enp2s0: no IPv6 Routers available
Mar 10 19:40:25 yurius systemd[1]: [email protected]: Killing process 1007 (dhcpcd) with signal SIGKILL.
Mar 10 19:40:46 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 19:40:46 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 10 19:40:47 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 19:40:47 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 19:40:47 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Mar 10 19:40:47 yurius systemd-networkd[337]: enp2s0: Link UP
Mar 10 19:40:48 yurius systemd-networkd[337]: enp2s0: Gained carrier
Mar 10 19:40:50 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Mar 10 19:40:51 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 10 20:39:00 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Mar 11 06:23:09 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 11 06:23:09 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 11 06:23:09 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 11 06:23:09 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 11 06:23:09 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Mar 11 06:23:10 yurius systemd-networkd[335]: enp2s0: Link UP
Mar 11 06:23:11 yurius systemd-networkd[335]: enp2s0: Gained carrier
Mar 11 06:23:13 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Mar 11 06:23:14 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 11 06:26:55 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Mar 11 06:27:14 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 11 06:27:14 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 11 06:27:14 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 11 06:27:14 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 11 06:30:14 yurius sudo[1084]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/ip link set enp2s0 up
Mar 11 06:30:14 yurius systemd-networkd[337]: enp2s0: Link UP
Mar 11 06:30:15 yurius systemd-networkd[337]: enp2s0: Gained carrier
Mar 11 06:30:17 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Mar 11 06:30:24 yurius sudo[1158]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/dhcpcd enp2s0
Mar 11 06:30:25 yurius dhcpcd[1159]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 11 06:30:25 yurius dhcpcd[1159]: enp2s0: IAID 23:b6:e6:64
Mar 11 06:30:25 yurius dhcpcd[1159]: enp2s0: rebinding lease of 192.168.1.2
Mar 11 06:30:25 yurius dhcpcd[1159]: enp2s0: probing address 192.168.1.2/24
Mar 11 06:30:25 yurius dhcpcd[1159]: enp2s0: soliciting an IPv6 router
Mar 11 06:30:30 yurius dhcpcd[1159]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 11 06:30:30 yurius dhcpcd[1159]: enp2s0: adding route to 192.168.1.0/24
Mar 11 06:30:30 yurius dhcpcd[1159]: enp2s0: adding default route via 192.168.1.1
Mar 11 06:30:30 yurius dhcpcd[1159]: forked to background, child pid 1220
Mar 11 06:30:37 yurius dhcpcd[1220]: enp2s0: no IPv6 Routers available
Mar 11 06:31:37 yurius dhcpcd[1220]: received SIGTERM, stopping
Mar 11 06:31:37 yurius dhcpcd[1220]: enp2s0: removing interface
Mar 11 06:31:37 yurius dhcpcd[1220]: dhcpcd exited
Mar 11 06:31:55 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 11 06:31:55 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 11 06:31:55 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 11 06:31:55 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 11 06:32:37 yurius sudo[1110]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/ip link set enp2s0 up
Mar 11 06:32:37 yurius systemd-networkd[338]: enp2s0: Link UP
Mar 11 06:32:39 yurius systemd-networkd[338]: enp2s0: Gained carrier
Mar 11 06:32:40 yurius sudo[1113]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/dhcpcd enp2s0
Mar 11 06:32:40 yurius dhcpcd[1114]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 11 06:32:40 yurius dhcpcd[1114]: enp2s0: IAID 23:b6:e6:64
Mar 11 06:32:40 yurius dhcpcd[1114]: enp2s0: rebinding lease of 192.168.1.2
Mar 11 06:32:40 yurius dhcpcd[1114]: enp2s0: soliciting an IPv6 router
Mar 11 06:32:40 yurius dhcpcd[1114]: enp2s0: probing address 192.168.1.2/24
Mar 11 06:32:40 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Mar 11 06:32:45 yurius dhcpcd[1114]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 11 06:32:45 yurius dhcpcd[1114]: enp2s0: adding route to 192.168.1.0/24
Mar 11 06:32:45 yurius dhcpcd[1114]: enp2s0: adding default route via 192.168.1.1
Mar 11 06:32:45 yurius dhcpcd[1114]: forked to background, child pid 1222
Mar 11 06:32:52 yurius dhcpcd[1222]: enp2s0: no IPv6 Routers available
Mar 11 06:38:26 yurius dhcpcd[1222]: received SIGTERM, stopping
Mar 11 06:38:26 yurius dhcpcd[1222]: enp2s0: removing interface
Mar 11 06:38:26 yurius dhcpcd[1222]: dhcpcd exited
Mar 11 06:38:41 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 11 06:38:41 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 11 06:38:41 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 11 06:38:41 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 11 06:38:41 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Mar 11 06:38:42 yurius systemd-networkd[336]: enp2s0: Link UP
Mar 11 06:38:43 yurius systemd-networkd[336]: enp2s0: Gained carrier
Mar 11 06:38:44 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Mar 11 06:38:44 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 11 07:54:20 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Mar 11 09:29:27 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 11 09:29:27 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 11 09:29:27 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 11 09:29:27 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 11 09:29:27 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Mar 11 09:29:27 yurius systemd-networkd[335]: enp2s0: Link UP
Mar 11 09:29:28 yurius systemd-networkd[335]: enp2s0: Gained carrier
Mar 11 09:29:29 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Mar 11 09:29:45 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 11 10:50:21 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Mar 11 14:30:35 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 11 14:30:35 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 11 14:30:35 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 11 14:30:35 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 11 14:30:35 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Mar 11 14:30:35 yurius systemd-networkd[336]: enp2s0: Link UP
Mar 11 14:30:36 yurius systemd-networkd[336]: enp2s0: Gained carrier
Mar 11 14:30:38 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Mar 11 14:30:39 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 11 19:04:37 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Mar 12 06:33:37 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 12 06:33:37 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 12 06:33:37 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 12 06:33:37 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 12 06:33:37 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Mar 12 06:33:37 yurius systemd-networkd[336]: enp2s0: Link UP
Mar 12 06:33:39 yurius systemd-networkd[336]: enp2s0: Gained carrier
Mar 12 06:33:40 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Mar 12 06:33:41 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 12 20:35:24 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Mar 13 06:32:12 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 13 06:32:12 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 13 06:32:12 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 13 06:32:12 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 13 06:32:12 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Mar 13 06:32:12 yurius systemd-networkd[337]: enp2s0: Link UP
Mar 13 06:32:13 yurius systemd-networkd[337]: enp2s0: Gained carrier
Mar 13 06:32:15 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Mar 13 06:32:16 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 13 06:40:47 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Mar 13 06:41:03 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 13 06:41:03 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 13 06:41:03 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 13 06:41:03 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 13 06:48:24 yurius sudo[1125]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/systemctl status [email protected]
Mar 13 06:49:18 yurius sudo[1131]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/systemctl start [email protected]
Mar 13 06:49:18 yurius systemd[1]: Created slice system-dhcpcd.slice.
Mar 13 06:49:18 yurius systemd[1]: Starting dhcpcd on enp2s0...
Mar 13 06:49:18 yurius dhcpcd[1134]: enp2s0: waiting for carrier
Mar 13 06:49:18 yurius systemd-networkd[336]: enp2s0: Link UP
Mar 13 06:49:18 yurius dhcpcd[1134]: enp2s0: carrier acquired
Mar 13 06:49:18 yurius dhcpcd[1134]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 13 06:49:18 yurius dhcpcd[1134]: enp2s0: IAID 23:b6:e6:64
Mar 13 06:49:18 yurius dhcpcd[1134]: enp2s0: adding address fe80::c05b:9fcf:67e6:7428
Mar 13 06:49:18 yurius dhcpcd[1134]: enp2s0: carrier lost
Mar 13 06:49:18 yurius dhcpcd[1134]: enp2s0: deleting address fe80::c05b:9fcf:67e6:7428
Mar 13 06:49:20 yurius systemd-networkd[336]: enp2s0: Gained carrier
Mar 13 06:49:20 yurius dhcpcd[1134]: enp2s0: carrier acquired
Mar 13 06:49:20 yurius dhcpcd[1134]: enp2s0: IAID 23:b6:e6:64
Mar 13 06:49:20 yurius dhcpcd[1134]: enp2s0: adding address fe80::c05b:9fcf:67e6:7428
Mar 13 06:49:20 yurius dhcpcd[1134]: enp2s0: soliciting an IPv6 router
Mar 13 06:49:21 yurius dhcpcd[1134]: enp2s0: rebinding lease of 192.168.1.2
Mar 13 06:49:21 yurius dhcpcd[1134]: enp2s0: probing address 192.168.1.2/24
Mar 13 06:49:21 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Mar 13 06:49:26 yurius dhcpcd[1134]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 13 06:49:26 yurius dhcpcd[1134]: enp2s0: adding route to 192.168.1.0/24
Mar 13 06:49:26 yurius dhcpcd[1134]: enp2s0: adding default route via 192.168.1.1
Mar 13 06:49:26 yurius dhcpcd[1134]: forked to background, child pid 1259
Mar 13 06:49:26 yurius systemd[1]: Started dhcpcd on enp2s0.
Mar 13 06:49:26 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dhcpcd@enp2s0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 06:49:33 yurius dhcpcd[1259]: enp2s0: no IPv6 Routers available
Mar 13 06:49:34 yurius sudo[1304]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/systemctl enable [email protected]
Mar 13 06:49:48 yurius systemd[1]: Stopping dhcpcd on enp2s0...
Mar 13 06:49:48 yurius dhcpcd[1442]: sending signal TERM to pid 1259
Mar 13 06:49:48 yurius dhcpcd[1442]: waiting for pid 1259 to exit
Mar 13 06:49:48 yurius dhcpcd[1442]: sending signal TERM to pid 1259
Mar 13 06:49:48 yurius dhcpcd[1442]: waiting for pid 1259 to exit
Mar 13 06:49:48 yurius dhcpcd[1259]: received SIGTERM, stopping
Mar 13 06:49:48 yurius dhcpcd[1259]: enp2s0: removing interface
Mar 13 06:49:48 yurius dhcpcd[1259]: dhcpcd exited
Mar 13 06:49:48 yurius systemd[1]: [email protected]: Succeeded.
Mar 13 06:49:48 yurius systemd[1]: Stopped dhcpcd on enp2s0.
Mar 13 06:49:48 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dhcpcd@enp2s0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 06:49:48 yurius systemd[1]: Removed slice system-dhcpcd.slice.
Mar 13 06:50:03 yurius systemd[1]: Created slice system-dhcpcd.slice.
Mar 13 06:50:03 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 13 06:50:03 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 13 06:50:03 yurius systemd-networkd[339]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 13 06:50:03 yurius systemd-networkd[339]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 13 06:50:04 yurius systemd[1]: Starting dhcpcd on enp2s0...
Mar 13 06:50:04 yurius systemd-networkd[339]: enp2s0: Link UP
Mar 13 06:50:04 yurius dhcpcd[498]: enp2s0: waiting for carrier
Mar 13 06:50:04 yurius dhcpcd[498]: enp2s0: carrier acquired
Mar 13 06:50:04 yurius dhcpcd[498]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 13 06:50:04 yurius dhcpcd[498]: enp2s0: IAID 23:b6:e6:64
Mar 13 06:50:04 yurius dhcpcd[498]: enp2s0: adding address fe80::c05b:9fcf:67e6:7428
Mar 13 06:50:04 yurius dhcpcd[498]: enp2s0: carrier lost
Mar 13 06:50:04 yurius dhcpcd[498]: enp2s0: deleting address fe80::c05b:9fcf:67e6:7428
Mar 13 06:50:05 yurius dhcpcd[498]: enp2s0: carrier acquired
Mar 13 06:50:05 yurius systemd-networkd[339]: enp2s0: Gained carrier
Mar 13 06:50:05 yurius dhcpcd[498]: enp2s0: IAID 23:b6:e6:64
Mar 13 06:50:05 yurius dhcpcd[498]: enp2s0: adding address fe80::c05b:9fcf:67e6:7428
Mar 13 06:50:06 yurius dhcpcd[498]: enp2s0: rebinding lease of 192.168.1.2
Mar 13 06:50:06 yurius dhcpcd[498]: enp2s0: probing address 192.168.1.2/24
Mar 13 06:50:06 yurius dhcpcd[498]: enp2s0: soliciting an IPv6 router
Mar 13 06:50:07 yurius systemd-networkd[339]: enp2s0: Gained IPv6LL
Mar 13 06:50:10 yurius dhcpcd[498]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 13 06:50:10 yurius dhcpcd[498]: enp2s0: adding route to 192.168.1.0/24
Mar 13 06:50:10 yurius dhcpcd[498]: enp2s0: adding default route via 192.168.1.1
Mar 13 06:50:10 yurius dhcpcd[498]: forked to background, child pid 565
Mar 13 06:50:10 yurius systemd[1]: Started dhcpcd on enp2s0.
Mar 13 06:50:10 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dhcpcd@enp2s0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 06:50:19 yurius dhcpcd[565]: enp2s0: no IPv6 Routers available
Mar 13 07:01:04 yurius sudo[1446]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/systemctl status [email protected]
Mar 13 07:22:47 yurius systemd[1]: Stopping dhcpcd on enp2s0...
Mar 13 07:22:47 yurius dhcpcd[1724]: sending signal TERM to pid 565
Mar 13 07:22:47 yurius dhcpcd[1724]: waiting for pid 565 to exit
Mar 13 07:22:47 yurius dhcpcd[1724]: sending signal TERM to pid 565
Mar 13 07:22:47 yurius dhcpcd[1724]: waiting for pid 565 to exit
Mar 13 07:22:47 yurius dhcpcd[565]: received SIGTERM, stopping
Mar 13 07:22:47 yurius dhcpcd[565]: enp2s0: removing interface
Mar 13 07:22:47 yurius dhcpcd[565]: dhcpcd exited
Mar 13 07:22:47 yurius systemd[1]: [email protected]: Succeeded.
Mar 13 07:22:47 yurius systemd[1]: Stopped dhcpcd on enp2s0.
Mar 13 07:22:47 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dhcpcd@enp2s0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 07:22:47 yurius systemd[1]: Removed slice system-dhcpcd.slice.
Mar 13 07:23:03 yurius systemd[1]: Created slice system-dhcpcd.slice.
Mar 13 07:23:03 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 13 07:23:03 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 13 07:23:03 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 13 07:23:03 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 13 07:23:04 yurius systemd[1]: Starting dhcpcd on enp2s0...
Mar 13 07:23:04 yurius systemd-networkd[338]: enp2s0: Link UP
Mar 13 07:23:04 yurius dhcpcd[498]: enp2s0: waiting for carrier
Mar 13 07:23:04 yurius dhcpcd[498]: enp2s0: carrier acquired
Mar 13 07:23:04 yurius dhcpcd[498]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 13 07:23:04 yurius dhcpcd[498]: enp2s0: IAID 23:b6:e6:64
Mar 13 07:23:04 yurius dhcpcd[498]: enp2s0: adding address fe80::c05b:9fcf:67e6:7428
Mar 13 07:23:04 yurius dhcpcd[498]: enp2s0: carrier lost
Mar 13 07:23:04 yurius dhcpcd[498]: enp2s0: deleting address fe80::c05b:9fcf:67e6:7428
Mar 13 07:23:05 yurius dhcpcd[498]: enp2s0: carrier acquired
Mar 13 07:23:05 yurius systemd-networkd[338]: enp2s0: Gained carrier
Mar 13 07:23:05 yurius dhcpcd[498]: enp2s0: IAID 23:b6:e6:64
Mar 13 07:23:05 yurius dhcpcd[498]: enp2s0: adding address fe80::c05b:9fcf:67e6:7428
Mar 13 07:23:06 yurius dhcpcd[498]: enp2s0: soliciting an IPv6 router
Mar 13 07:23:06 yurius dhcpcd[498]: enp2s0: rebinding lease of 192.168.1.2
Mar 13 07:23:06 yurius dhcpcd[498]: enp2s0: probing address 192.168.1.2/24
Mar 13 07:23:07 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Mar 13 07:23:12 yurius dhcpcd[498]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 13 07:23:12 yurius dhcpcd[498]: enp2s0: adding route to 192.168.1.0/24
Mar 13 07:23:12 yurius dhcpcd[498]: enp2s0: adding default route via 192.168.1.1
Mar 13 07:23:12 yurius dhcpcd[498]: forked to background, child pid 565
Mar 13 07:23:12 yurius systemd[1]: Started dhcpcd on enp2s0.
Mar 13 07:23:12 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dhcpcd@enp2s0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 07:23:19 yurius dhcpcd[565]: enp2s0: no IPv6 Routers available
yurius@yurius:~$

- c 10 марта.

vs220
journalctl |grep -e "Link is Up" -e enp -e dhcpcd -e network -e r8169

yurius@yurius:~$ journalctl |grep -e "Link is Up" -e enp -e dhcpcd -e network -e r8169 > journal.txt

- вот выхлоп:

Jan 09 09:33:33 yurius systemd[4923]: Listening on GnuPG network certificate management daemon.
Jan 09 10:38:12 yurius systemd[4923]: Closed GnuPG network certificate management daemon.
Jan 09 12:39:05 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 09 12:39:05 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 09 12:39:08 yurius systemd[558]: Closed GnuPG network certificate management daemon.
Jan 09 12:39:08 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Jan 09 12:39:08 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 09 12:39:08 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 09 12:39:08 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 09 12:39:08 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 09 12:39:08 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 09 12:39:08 yurius kernel: audit: type=1131 audit(1578566348.949:204): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 09 14:00:00 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 09 14:00:00 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 09 14:00:00 yurius kernel: libphy: r8169: probed
Jan 09 14:00:00 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 09 14:00:00 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 09 14:00:00 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 09 14:00:00 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 09 14:00:00 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 09 14:00:00 yurius systemd-networkd[336]: Enumeration completed
Jan 09 14:00:00 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 09 14:00:00 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 09 14:00:00 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 09 14:00:00 yurius kernel: audit: type=1130 audit(1578571200.758:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 09 14:00:00 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Jan 09 14:00:00 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 09 14:00:00 yurius systemd-networkd[336]: enp2s0: Link UP
Jan 09 14:00:00 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 09 14:00:03 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 09 14:00:03 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 09 14:00:03 yurius systemd-networkd[336]: enp2s0: Gained carrier
Jan 09 14:00:04 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Jan 09 14:00:05 yurius systemd[538]: Listening on GnuPG network certificate management daemon.
Jan 09 14:00:07 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 09 14:00:16 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 09 22:02:36 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 09 22:02:36 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 09 22:02:39 yurius systemd[538]: Closed GnuPG network certificate management daemon.
Jan 09 22:02:39 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Jan 09 22:02:39 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 09 22:02:39 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 09 22:02:39 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 09 22:02:39 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 09 22:02:39 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 10 07:42:22 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 10 07:42:22 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 10 07:42:22 yurius kernel: libphy: r8169: probed
Jan 10 07:42:22 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 10 07:42:22 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 10 07:42:22 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 10 07:42:22 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 10 07:42:22 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 10 07:42:22 yurius systemd-networkd[339]: Enumeration completed
Jan 10 07:42:22 yurius systemd-networkd[339]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 10 07:42:22 yurius systemd-networkd[339]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 10 07:42:22 yurius systemd-networkd[339]: enp2s0: IPv6 successfully enabled
Jan 10 07:42:22 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 10 07:42:22 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 07:42:22 yurius kernel: audit: type=1130 audit(1578634942.839:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 07:42:22 yurius systemd-networkd[339]: enp2s0: Link UP
Jan 10 07:42:22 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 10 07:42:24 yurius systemd-networkd[339]: enp2s0: Gained carrier
Jan 10 07:42:24 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 10 07:42:24 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 10 07:42:26 yurius systemd-networkd[339]: enp2s0: Gained IPv6LL
Jan 10 07:42:37 yurius systemd-networkd[339]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 10 07:42:38 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 07:42:38 yurius kernel: audit: type=1130 audit(1578634958.613:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 07:48:39 yurius systemd[559]: Listening on GnuPG network certificate management daemon.
Jan 10 07:55:09 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 10 07:55:09 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 07:55:12 yurius systemd[559]: Closed GnuPG network certificate management daemon.
Jan 10 07:55:12 yurius systemd-networkd[339]: enp2s0: DHCP lease lost
Jan 10 07:55:12 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 10 07:55:12 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 07:55:12 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 10 07:55:12 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 10 07:55:12 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 10 07:55:28 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 10 07:55:28 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 10 07:55:28 yurius kernel: libphy: r8169: probed
Jan 10 07:55:28 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 10 07:55:28 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 10 07:55:28 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 10 07:55:28 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 10 07:55:28 yurius systemd-networkd[338]: Enumeration completed
Jan 10 07:55:28 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 07:55:28 yurius kernel: audit: type=1130 audit(1578635728.601:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 07:55:28 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 10 07:55:28 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 10 07:55:28 yurius systemd-networkd[338]: enp2s0: IPv6 successfully enabled
Jan 10 07:55:28 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 10 07:55:28 yurius systemd-networkd[338]: enp2s0: Link UP
Jan 10 07:55:28 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 10 07:55:30 yurius systemd-networkd[338]: enp2s0: Gained carrier
Jan 10 07:55:30 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 10 07:55:30 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 10 07:55:31 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Jan 10 07:55:33 yurius systemd-networkd[338]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 10 07:55:35 yurius systemd[542]: Listening on GnuPG network certificate management daemon.
Jan 10 07:55:43 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 07:55:43 yurius kernel: audit: type=1130 audit(1578635743.574:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
                                          NetworkAgent</<@resource:///org/gnome/shell/ui/components/networkAgent.js:639:17
                                          NetworkAgent</<@resource:///org/gnome/shell/ui/components/networkAgent.js:639:17
Jan 10 08:42:51 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 10 08:42:51 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 08:42:54 yurius systemd[542]: Closed GnuPG network certificate management daemon.
Jan 10 08:42:54 yurius systemd-networkd[338]: enp2s0: DHCP lease lost
Jan 10 08:42:54 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 10 08:42:54 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 08:42:54 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 10 08:42:54 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 10 08:42:54 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 10 08:43:53 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 10 08:43:54 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 10 08:43:54 yurius kernel: libphy: r8169: probed
Jan 10 08:43:54 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 10 08:43:54 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 10 08:43:54 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 10 08:43:54 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 10 08:43:54 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 10 08:43:54 yurius systemd-networkd[336]: Enumeration completed
Jan 10 08:43:54 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 10 08:43:54 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 10 08:43:54 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 08:43:54 yurius kernel: audit: type=1130 audit(1578638634.273:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 08:43:54 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Jan 10 08:43:54 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 10 08:43:54 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 10 08:43:54 yurius systemd-networkd[336]: enp2s0: Link UP
Jan 10 08:43:56 yurius systemd-networkd[336]: enp2s0: Gained carrier
Jan 10 08:43:56 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 10 08:43:56 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 10 08:43:57 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Jan 10 08:43:59 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 10 08:44:08 yurius systemd[535]: Listening on GnuPG network certificate management daemon.
Jan 10 08:44:10 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 09:40:49 yurius systemd[535]: Started GnuPG network certificate management daemon.
Jan 10 13:30:50 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 13:30:50 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 10 13:30:53 yurius systemd[535]: Stopping GnuPG network certificate management daemon...
Jan 10 13:30:53 yurius systemd[535]: Stopped GnuPG network certificate management daemon.
Jan 10 13:30:53 yurius systemd[535]: Closed GnuPG network certificate management daemon.
Jan 10 13:30:53 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Jan 10 13:30:53 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 10 13:30:53 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 13:30:53 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 10 13:30:53 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 10 13:30:53 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 10 13:31:13 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 10 13:31:14 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 10 13:31:14 yurius kernel: libphy: r8169: probed
Jan 10 13:31:14 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 10 13:31:14 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 10 13:31:14 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 10 13:31:14 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 10 13:31:14 yurius systemd-networkd[337]: Enumeration completed
Jan 10 13:31:14 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 13:31:14 yurius kernel: audit: type=1130 audit(1578655874.275:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 13:31:14 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 10 13:31:14 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 10 13:31:14 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Jan 10 13:31:14 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 10 13:31:14 yurius systemd-networkd[337]: enp2s0: Link UP
Jan 10 13:31:14 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 10 13:31:16 yurius systemd-networkd[337]: enp2s0: Gained carrier
Jan 10 13:31:16 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 10 13:31:16 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 10 13:31:17 yurius systemd[536]: Listening on GnuPG network certificate management daemon.
Jan 10 13:31:17 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 10 13:31:18 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Jan 10 13:31:30 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 13:31:30 yurius kernel: audit: type=1130 audit(1578655890.185:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 20:36:09 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 10 20:36:09 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 10 20:36:09 yurius systemd-networkd[337]: enp2s0: Lost carrier
Jan 10 20:36:09 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Jan 10 20:36:09 yurius systemd-networkd[337]: lo: Reset carrier
Jan 10 20:36:09 yurius systemd-networkd[337]: enp2s0: Gained carrier
Jan 10 20:36:09 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 10 20:36:11 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 10 20:36:17 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 10 20:36:17 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 20:36:17 yurius kernel: audit: type=1131 audit(1578681377.062:164): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 20:37:50 yurius systemd[536]: Closed GnuPG network certificate management daemon.
Jan 10 20:37:50 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Jan 10 20:37:50 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 10 20:37:50 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 20:37:50 yurius kernel: audit: type=1131 audit(1578681470.165:179): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 20:37:50 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 10 20:37:50 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 10 20:37:50 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 10 21:14:00 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 10 21:14:01 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 10 21:14:01 yurius kernel: libphy: r8169: probed
Jan 10 21:14:01 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 10 21:14:01 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 10 21:14:01 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 10 21:14:01 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 10 21:14:01 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 10 21:14:01 yurius systemd-networkd[338]: Enumeration completed
Jan 10 21:14:01 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 10 21:14:01 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 21:14:01 yurius kernel: audit: type=1130 audit(1578683641.377:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 10 21:14:01 yurius systemd-networkd[338]: enp2s0: IPv6 successfully enabled
Jan 10 21:14:01 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 10 21:14:01 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 10 21:14:01 yurius systemd-networkd[338]: enp2s0: Link UP
Jan 10 21:14:03 yurius systemd-networkd[338]: enp2s0: Gained carrier
Jan 10 21:14:03 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 10 21:14:03 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 10 21:14:04 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Jan 10 21:14:06 yurius systemd-networkd[338]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 10 21:14:14 yurius systemd[537]: Listening on GnuPG network certificate management daemon.
Jan 10 21:14:16 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 11 00:41:21 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 11 00:41:21 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 11 00:41:24 yurius systemd[537]: Closed GnuPG network certificate management daemon.
Jan 11 00:41:24 yurius systemd-networkd[338]: enp2s0: DHCP lease lost
Jan 11 00:41:24 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 11 00:41:24 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 11 00:41:24 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 11 00:41:24 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 11 00:41:24 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 11 07:19:59 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 11 07:20:00 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 11 07:20:00 yurius kernel: libphy: r8169: probed
Jan 11 07:20:00 yurius systemd-networkd[341]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 11 07:20:00 yurius systemd-networkd[341]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 11 07:20:00 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 11 07:20:00 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 11 07:20:00 yurius kernel: audit: type=1130 audit(1578720000.389:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 11 07:20:00 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 11 07:20:00 yurius systemd-networkd[341]: Enumeration completed
Jan 11 07:20:00 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 11 07:20:00 yurius systemd-networkd[341]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 11 07:20:00 yurius systemd-networkd[341]: enp2s0: IPv6 successfully enabled
Jan 11 07:20:00 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 11 07:20:00 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 11 07:20:00 yurius systemd-networkd[341]: enp2s0: Link UP
Jan 11 07:20:02 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 11 07:20:02 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 11 07:20:02 yurius systemd-networkd[341]: enp2s0: Gained carrier
Jan 11 07:20:03 yurius systemd-networkd[341]: enp2s0: Gained IPv6LL
Jan 11 07:20:16 yurius systemd-networkd[341]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 11 07:20:16 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 11 07:20:16 yurius kernel: audit: type=1130 audit(1578720016.099:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 11 07:20:29 yurius systemd[554]: Listening on GnuPG network certificate management daemon.
Jan 11 23:16:12 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 11 23:16:12 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 11 23:16:12 yurius systemd[554]: Closed GnuPG network certificate management daemon.
Jan 11 23:16:12 yurius systemd-networkd[341]: enp2s0: DHCP lease lost
Jan 11 23:16:12 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 11 23:16:12 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 11 23:16:12 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 11 23:16:12 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 11 23:16:12 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 12 08:07:30 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 12 08:07:31 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 12 08:07:31 yurius kernel: libphy: r8169: probed
Jan 12 08:07:31 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 12 08:07:31 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 12 08:07:31 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 12 08:07:31 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 12 08:07:31 yurius systemd-networkd[336]: Enumeration completed
Jan 12 08:07:31 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 08:07:31 yurius kernel: audit: type=1130 audit(1578809251.480:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 08:07:31 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 12 08:07:31 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 12 08:07:31 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Jan 12 08:07:31 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 12 08:07:31 yurius systemd-networkd[336]: enp2s0: Link UP
Jan 12 08:07:31 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 12 08:07:34 yurius systemd-networkd[336]: enp2s0: Gained carrier
Jan 12 08:07:34 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 12 08:07:34 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 12 08:07:35 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Jan 12 08:07:42 yurius systemd[537]: Listening on GnuPG network certificate management daemon.
Jan 12 08:07:48 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 12 08:07:48 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 08:07:48 yurius kernel: audit: type=1130 audit(1578809268.183:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 13:22:46 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 12 13:22:46 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 13:22:46 yurius kernel: audit: type=1131 audit(1578828166.739:130): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 13:22:46 yurius systemd[537]: Closed GnuPG network certificate management daemon.
Jan 12 13:22:46 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Jan 12 13:22:46 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 12 13:22:46 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 13:22:46 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 12 13:22:46 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 12 13:22:46 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 12 14:54:27 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 12 14:54:28 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 12 14:54:28 yurius kernel: libphy: r8169: probed
Jan 12 14:54:28 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 12 14:54:28 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 12 14:54:28 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 12 14:54:28 yurius systemd-networkd[341]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 12 14:54:28 yurius systemd-networkd[341]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 12 14:54:28 yurius systemd-networkd[341]: Enumeration completed
Jan 12 14:54:28 yurius systemd-networkd[341]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 12 14:54:28 yurius systemd-networkd[341]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 12 14:54:28 yurius systemd-networkd[341]: enp2s0: IPv6 successfully enabled
Jan 12 14:54:28 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 12 14:54:28 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 14:54:28 yurius kernel: audit: type=1130 audit(1578833668.468:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 14:54:28 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 12 14:54:28 yurius systemd-networkd[341]: enp2s0: Link UP
Jan 12 14:54:30 yurius systemd-networkd[341]: enp2s0: Gained carrier
Jan 12 14:54:30 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 12 14:54:30 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 12 14:54:31 yurius systemd-networkd[341]: enp2s0: Gained IPv6LL
Jan 12 14:54:35 yurius systemd-networkd[341]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Jan 12 14:54:37 yurius systemd[540]: Listening on GnuPG network certificate management daemon.
Jan 12 14:54:43 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 14:54:43 yurius kernel: audit: type=1130 audit(1578833683.955:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 17:29:40 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 12 17:29:40 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 17:29:43 yurius systemd[540]: Closed GnuPG network certificate management daemon.
Jan 12 17:29:43 yurius systemd-networkd[341]: enp2s0: DHCP lease lost
Jan 12 17:29:43 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 12 17:29:43 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 17:29:43 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 12 17:29:43 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 12 17:29:43 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 12 21:02:29 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 12 21:02:30 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 12 21:02:30 yurius kernel: libphy: r8169: probed
Jan 12 21:02:30 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 12 21:02:30 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 12 21:02:30 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 12 21:02:30 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 12 21:02:30 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 12 21:02:30 yurius systemd-networkd[339]: Enumeration completed
Jan 12 21:02:30 yurius systemd-networkd[339]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 12 21:02:30 yurius systemd-networkd[339]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 12 21:02:30 yurius systemd-networkd[339]: enp2s0: IPv6 successfully enabled
Jan 12 21:02:30 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 21:02:30 yurius kernel: audit: type=1130 audit(1578855750.518:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 21:02:30 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 12 21:02:30 yurius systemd-networkd[339]: enp2s0: Link UP
Jan 12 21:02:30 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 12 21:02:32 yurius systemd-networkd[339]: enp2s0: Gained carrier
Jan 12 21:02:32 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 12 21:02:32 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 12 21:02:34 yurius systemd-networkd[339]: enp2s0: Gained IPv6LL
Jan 12 21:02:34 yurius systemd-networkd[339]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Jan 12 21:02:46 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 21:02:46 yurius kernel: audit: type=1130 audit(1578855766.055:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 21:09:46 yurius systemd[554]: Listening on GnuPG network certificate management daemon.
Jan 12 22:45:01 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 22:45:01 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 12 22:45:01 yurius systemd[554]: Closed GnuPG network certificate management daemon.
Jan 12 22:45:02 yurius systemd-networkd[339]: enp2s0: DHCP lease lost
Jan 12 22:45:02 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 12 22:45:02 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 12 22:45:02 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 12 22:45:02 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 12 22:45:02 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 13 17:16:24 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 13 17:16:25 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 13 17:16:25 yurius kernel: libphy: r8169: probed
Jan 13 17:16:25 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 13 17:16:25 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 13 17:16:25 yurius systemd-networkd[347]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 13 17:16:25 yurius systemd-networkd[347]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 13 17:16:25 yurius systemd-networkd[347]: Enumeration completed
Jan 13 17:16:25 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 17:16:25 yurius kernel: audit: type=1130 audit(1578928585.491:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 17:16:25 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 13 17:16:25 yurius systemd-networkd[347]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 13 17:16:25 yurius systemd-networkd[347]: enp2s0: IPv6 successfully enabled
Jan 13 17:16:25 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 13 17:16:25 yurius systemd-networkd[347]: enp2s0: Link UP
Jan 13 17:16:25 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 13 17:16:27 yurius systemd-networkd[347]: enp2s0: Gained carrier
Jan 13 17:16:27 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 13 17:16:27 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 13 17:16:28 yurius systemd-networkd[347]: enp2s0: Gained IPv6LL
Jan 13 17:16:31 yurius systemd-networkd[347]: enp2s0: DHCPv4 address 192.168.1.6/24 via 192.168.1.1
Jan 13 17:16:40 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 17:16:40 yurius kernel: audit: type=1130 audit(1578928600.788:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 17:17:37 yurius systemd[553]: Listening on GnuPG network certificate management daemon.
Jan 13 17:33:19 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 13 17:33:19 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 17:33:22 yurius systemd[553]: Closed GnuPG network certificate management daemon.
Jan 13 17:33:22 yurius systemd-networkd[347]: enp2s0: DHCP lease lost
Jan 13 17:33:22 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 13 17:33:22 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 17:33:22 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 13 17:33:22 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 13 17:33:22 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 13 17:33:38 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 13 17:33:39 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 13 17:33:39 yurius kernel: libphy: r8169: probed
Jan 13 17:33:39 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 13 17:33:39 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 13 17:33:39 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 13 17:33:39 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 13 17:33:39 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 13 17:33:39 yurius systemd-networkd[339]: Enumeration completed
Jan 13 17:33:39 yurius systemd-networkd[339]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 13 17:33:39 yurius systemd-networkd[339]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 13 17:33:39 yurius systemd-networkd[339]: enp2s0: IPv6 successfully enabled
Jan 13 17:33:39 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 13 17:33:39 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 17:33:39 yurius kernel: audit: type=1130 audit(1578929619.358:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 17:33:39 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 13 17:33:39 yurius systemd-networkd[339]: enp2s0: Link UP
Jan 13 17:33:41 yurius systemd-networkd[339]: enp2s0: Gained carrier
Jan 13 17:33:41 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 13 17:33:41 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 13 17:33:42 yurius systemd-networkd[339]: enp2s0: Gained IPv6LL
Jan 13 17:33:43 yurius systemd[542]: Listening on GnuPG network certificate management daemon.
Jan 13 17:33:43 yurius systemd-networkd[339]: enp2s0: DHCPv4 address 192.168.1.6/24 via 192.168.1.1
Jan 13 17:33:54 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 17:33:54 yurius kernel: audit: type=1130 audit(1578929634.892:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 22:25:39 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 22:25:39 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 13 22:25:39 yurius kernel: audit: type=1131 audit(1578947139.025:72): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 22:25:42 yurius systemd[542]: Closed GnuPG network certificate management daemon.
Jan 13 22:25:42 yurius systemd-networkd[339]: enp2s0: DHCP lease lost
Jan 13 22:25:42 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 13 22:25:42 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 22:25:42 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 13 22:25:42 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 13 22:25:42 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 14 08:44:55 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 14 08:44:56 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 14 08:44:56 yurius kernel: libphy: r8169: probed
Jan 14 08:44:56 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 14 08:44:56 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 14 08:44:56 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 14 08:44:56 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 14 08:44:56 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 14 08:44:56 yurius systemd-networkd[338]: Enumeration completed
Jan 14 08:44:56 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 14 08:44:56 yurius kernel: audit: type=1130 audit(1578984296.460:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 14 08:44:56 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 14 08:44:56 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 14 08:44:56 yurius systemd-networkd[338]: enp2s0: IPv6 successfully enabled
Jan 14 08:44:56 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 14 08:44:56 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 14 08:44:56 yurius systemd-networkd[338]: enp2s0: Link UP
Jan 14 08:44:58 yurius systemd-networkd[338]: enp2s0: Gained carrier
Jan 14 08:44:58 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 14 08:44:58 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 14 08:45:00 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Jan 14 08:45:02 yurius systemd-networkd[338]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Jan 14 08:45:12 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 14 08:45:12 yurius kernel: audit: type=1130 audit(1578984312.340:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 14 08:46:40 yurius systemd[553]: Listening on GnuPG network certificate management daemon.
Jan 14 21:36:38 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 14 21:36:38 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 14 21:36:38 yurius systemd[553]: Closed GnuPG network certificate management daemon.
Jan 14 21:36:38 yurius systemd-networkd[338]: enp2s0: DHCP lease lost
Jan 14 21:36:38 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 14 21:36:38 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 14 21:36:38 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 14 21:36:38 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 14 21:36:38 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 15 08:07:24 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 15 08:07:25 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 15 08:07:25 yurius kernel: libphy: r8169: probed
Jan 15 08:07:25 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 15 08:07:25 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 15 08:07:25 yurius systemd-networkd[344]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 15 08:07:25 yurius systemd-networkd[344]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 15 08:07:25 yurius systemd-networkd[344]: Enumeration completed
Jan 15 08:07:25 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 15 08:07:25 yurius kernel: audit: type=1130 audit(1579068445.555:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 15 08:07:25 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 15 08:07:25 yurius systemd-networkd[344]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 15 08:07:25 yurius systemd-networkd[344]: enp2s0: IPv6 successfully enabled
Jan 15 08:07:25 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 15 08:07:25 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 15 08:07:25 yurius systemd-networkd[344]: enp2s0: Link UP
Jan 15 08:07:27 yurius systemd-networkd[344]: enp2s0: Gained carrier
Jan 15 08:07:27 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 15 08:07:27 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 15 08:07:28 yurius systemd-networkd[344]: enp2s0: Gained IPv6LL
Jan 15 08:07:43 yurius systemd-networkd[344]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 15 08:07:43 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 15 08:07:43 yurius kernel: audit: type=1130 audit(1579068463.822:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 15 08:09:14 yurius systemd[559]: Listening on GnuPG network certificate management daemon.
Jan 15 21:36:58 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 15 21:36:58 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 15 21:37:01 yurius systemd[559]: Closed GnuPG network certificate management daemon.
Jan 15 21:37:01 yurius systemd-networkd[344]: enp2s0: DHCP lease lost
Jan 15 21:37:01 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 15 21:37:01 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 15 21:37:01 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 15 21:37:01 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 15 21:37:01 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 16 08:14:55 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 16 08:14:56 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 16 08:14:56 yurius kernel: libphy: r8169: probed
Jan 16 08:14:56 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 16 08:14:56 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 16 08:14:56 yurius systemd-networkd[347]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 16 08:14:56 yurius systemd-networkd[347]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 16 08:14:56 yurius systemd-networkd[347]: Enumeration completed
Jan 16 08:14:56 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 08:14:56 yurius kernel: audit: type=1130 audit(1579155296.593:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 08:14:56 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 16 08:14:56 yurius systemd-networkd[347]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 16 08:14:56 yurius systemd-networkd[347]: enp2s0: IPv6 successfully enabled
Jan 16 08:14:56 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 16 08:14:56 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 16 08:14:56 yurius systemd-networkd[347]: enp2s0: Link UP
Jan 16 08:14:58 yurius systemd-networkd[347]: enp2s0: Gained carrier
Jan 16 08:14:58 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 16 08:14:58 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 16 08:14:59 yurius systemd-networkd[347]: enp2s0: Gained IPv6LL
Jan 16 08:15:01 yurius systemd-networkd[347]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 16 08:15:11 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 08:15:11 yurius kernel: audit: type=1130 audit(1579155311.813:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 08:16:55 yurius systemd[558]: Listening on GnuPG network certificate management daemon.
Jan 16 12:38:22 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 16 12:38:22 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 12:38:25 yurius systemd[558]: Closed GnuPG network certificate management daemon.
Jan 16 12:38:25 yurius systemd-networkd[347]: enp2s0: DHCP lease lost
Jan 16 12:38:25 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 16 12:38:25 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 12:38:25 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 16 12:38:25 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 16 12:38:25 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 16 13:58:01 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 16 13:58:01 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 16 13:58:01 yurius kernel: libphy: r8169: probed
Jan 16 13:58:01 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 16 13:58:01 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 16 13:58:01 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 16 13:58:01 yurius systemd-networkd[342]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 16 13:58:01 yurius systemd-networkd[342]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 16 13:58:01 yurius systemd-networkd[342]: Enumeration completed
Jan 16 13:58:01 yurius kernel: audit: type=1130 audit(1579175881.758:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 13:58:01 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 13:58:01 yurius systemd-networkd[342]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 16 13:58:01 yurius systemd-networkd[342]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 16 13:58:01 yurius systemd-networkd[342]: enp2s0: IPv6 successfully enabled
Jan 16 13:58:01 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 16 13:58:01 yurius systemd-networkd[342]: enp2s0: Link UP
Jan 16 13:58:01 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 16 13:58:04 yurius systemd-networkd[342]: enp2s0: Gained carrier
Jan 16 13:58:04 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 16 13:58:04 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 16 13:58:06 yurius systemd-networkd[342]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 16 13:58:06 yurius systemd-networkd[342]: enp2s0: Gained IPv6LL
Jan 16 13:58:18 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 13:58:18 yurius kernel: audit: type=1130 audit(1579175898.071:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 13:58:36 yurius systemd[558]: Listening on GnuPG network certificate management daemon.
Jan 16 14:15:27 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 16 14:15:27 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 14:15:27 yurius systemd[558]: Closed GnuPG network certificate management daemon.
Jan 16 14:15:27 yurius systemd-networkd[342]: enp2s0: DHCP lease lost
Jan 16 14:15:28 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 16 14:15:28 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 14:15:28 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 16 14:15:28 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 16 14:15:28 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 16 17:33:31 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 16 17:33:32 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 16 17:33:32 yurius kernel: libphy: r8169: probed
Jan 16 17:33:32 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 16 17:33:32 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 16 17:33:32 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 16 17:33:32 yurius systemd-networkd[353]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 16 17:33:32 yurius systemd-networkd[353]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 16 17:33:32 yurius systemd-networkd[353]: Enumeration completed
Jan 16 17:33:32 yurius systemd-networkd[353]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 16 17:33:32 yurius systemd-networkd[353]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 16 17:33:32 yurius kernel: audit: type=1130 audit(1579188812.493:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 17:33:32 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 17:33:32 yurius systemd-networkd[353]: enp2s0: IPv6 successfully enabled
Jan 16 17:33:32 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 16 17:33:32 yurius systemd-networkd[353]: enp2s0: Link UP
Jan 16 17:33:32 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 16 17:33:34 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 16 17:33:34 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 16 17:33:34 yurius systemd-networkd[353]: enp2s0: Gained carrier
Jan 16 17:33:36 yurius systemd-networkd[353]: enp2s0: Gained IPv6LL
Jan 16 17:33:37 yurius systemd-networkd[353]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 16 17:33:39 yurius systemd[536]: Listening on GnuPG network certificate management daemon.
Jan 16 17:33:48 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 17:33:48 yurius kernel: audit: type=1130 audit(1579188828.210:38): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 22:17:01 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 22:17:01 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 16 22:17:04 yurius systemd[536]: Closed GnuPG network certificate management daemon.
Jan 16 22:17:04 yurius systemd-networkd[353]: enp2s0: DHCP lease lost
Jan 16 22:17:04 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 16 22:17:04 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 16 22:17:04 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 16 22:17:04 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 16 22:17:04 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 17 08:24:01 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 17 08:24:02 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 17 08:24:02 yurius kernel: libphy: r8169: probed
Jan 17 08:24:02 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 17 08:24:02 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 17 08:24:02 yurius systemd-networkd[333]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 17 08:24:02 yurius systemd-networkd[333]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 17 08:24:02 yurius systemd-networkd[333]: Enumeration completed
Jan 17 08:24:02 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 08:24:02 yurius kernel: audit: type=1130 audit(1579242242.435:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 08:24:02 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 17 08:24:02 yurius systemd-networkd[333]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 17 08:24:02 yurius systemd-networkd[333]: enp2s0: IPv6 successfully enabled
Jan 17 08:24:02 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 17 08:24:02 yurius systemd-networkd[333]: enp2s0: Link UP
Jan 17 08:24:02 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 17 08:24:04 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 17 08:24:04 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 17 08:24:04 yurius systemd-networkd[333]: enp2s0: Gained carrier
Jan 17 08:24:06 yurius systemd-networkd[333]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 17 08:24:06 yurius systemd-networkd[333]: enp2s0: Gained IPv6LL
Jan 17 08:24:18 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 08:24:18 yurius kernel: audit: type=1130 audit(1579242258.128:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 08:27:08 yurius systemd[553]: Listening on GnuPG network certificate management daemon.
Jan 17 08:30:08 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 08:30:08 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 17 08:30:08 yurius systemd[553]: Closed GnuPG network certificate management daemon.
Jan 17 08:30:08 yurius systemd-networkd[333]: enp2s0: DHCP lease lost
Jan 17 08:30:08 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 17 08:30:08 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 08:30:08 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Jan 17 08:30:08 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Jan 17 08:30:08 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 17 08:30:24 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 17 08:30:25 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 17 08:30:25 yurius kernel: libphy: r8169: probed
Jan 17 08:30:25 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 17 08:30:25 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 17 08:30:25 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 17 08:30:25 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 17 08:30:25 yurius systemd-networkd[336]: Enumeration completed
Jan 17 08:30:25 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 17 08:30:25 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 08:30:25 yurius kernel: audit: type=1130 audit(1579242625.317:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 08:30:25 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 17 08:30:25 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Jan 17 08:30:25 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 17 08:30:25 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 17 08:30:25 yurius systemd-networkd[336]: enp2s0: Link UP
Jan 17 08:30:27 yurius systemd-networkd[336]: enp2s0: Gained carrier
Jan 17 08:30:27 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 17 08:30:27 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 17 08:30:29 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Jan 17 08:30:29 yurius systemd[537]: Listening on GnuPG network certificate management daemon.
Jan 17 08:30:29 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 17 08:30:41 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 08:30:41 yurius kernel: audit: type=1130 audit(1579242641.423:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 10:52:33 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 10:52:33 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 17 10:52:36 yurius systemd[537]: Closed GnuPG network certificate management daemon.
Jan 17 10:52:36 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Jan 17 10:52:36 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 17 10:52:36 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 10:52:36 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 17 10:52:36 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 17 10:52:36 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 17 12:07:43 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 17 12:07:44 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 17 12:07:44 yurius kernel: libphy: r8169: probed
Jan 17 12:07:44 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 17 12:07:44 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 17 12:07:44 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 17 12:07:44 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 17 12:07:44 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 17 12:07:44 yurius systemd-networkd[335]: Enumeration completed
Jan 17 12:07:44 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 17 12:07:44 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 17 12:07:44 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Jan 17 12:07:44 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 17 12:07:44 yurius kernel: audit: type=1130 audit(1579255664.423:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 12:07:44 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 12:07:44 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 17 12:07:44 yurius systemd-networkd[335]: enp2s0: Link UP
Jan 17 12:07:46 yurius systemd-networkd[335]: enp2s0: Gained carrier
Jan 17 12:07:46 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 17 12:07:46 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 17 12:07:48 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Jan 17 12:07:49 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 17 12:08:00 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 12:08:00 yurius kernel: audit: type=1130 audit(1579255680.103:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 12:08:39 yurius systemd[554]: Listening on GnuPG network certificate management daemon.
Jan 17 23:18:39 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 17 23:18:39 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 23:18:39 yurius kernel: audit: type=1131 audit(1579295919.438:91): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 23:18:39 yurius systemd[554]: Closed GnuPG network certificate management daemon.
Jan 17 23:18:39 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Jan 17 23:18:39 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 17 23:18:39 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 17 23:18:39 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 17 23:18:39 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 17 23:18:39 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 18 08:22:48 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 18 08:22:49 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 18 08:22:49 yurius kernel: libphy: r8169: probed
Jan 18 08:22:49 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 18 08:22:49 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 18 08:22:49 yurius systemd-networkd[352]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 18 08:22:49 yurius systemd-networkd[352]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 18 08:22:49 yurius systemd-networkd[352]: Enumeration completed
Jan 18 08:22:49 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 08:22:49 yurius kernel: audit: type=1130 audit(1579328569.520:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 08:22:49 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 18 08:22:49 yurius systemd-networkd[352]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 18 08:22:49 yurius systemd-networkd[352]: enp2s0: IPv6 successfully enabled
Jan 18 08:22:49 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 18 08:22:49 yurius systemd-networkd[352]: enp2s0: Link UP
Jan 18 08:22:49 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 18 08:22:51 yurius systemd-networkd[352]: enp2s0: Gained carrier
Jan 18 08:22:51 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 18 08:22:51 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 18 08:22:53 yurius systemd-networkd[352]: enp2s0: Gained IPv6LL
Jan 18 08:23:05 yurius systemd-networkd[352]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 18 08:23:05 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 08:23:05 yurius kernel: audit: type=1130 audit(1579328585.540:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 08:23:42 yurius systemd[557]: Listening on GnuPG network certificate management daemon.
Jan 18 10:08:22 yurius systemd-networkd[352]: enp2s0: Lost carrier
Jan 18 10:08:22 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 18 10:08:22 yurius systemd-networkd[352]: enp2s0: DHCP lease lost
Jan 18 10:08:24 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 18 10:08:24 yurius systemd-networkd[352]: enp2s0: Gained carrier
Jan 18 10:08:45 yurius systemd-networkd[352]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 18 14:42:18 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 14:42:18 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 18 14:42:19 yurius systemd[557]: Closed GnuPG network certificate management daemon.
Jan 18 14:42:19 yurius systemd-networkd[352]: enp2s0: DHCP lease lost
Jan 18 14:42:19 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 18 14:42:19 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 14:42:19 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Jan 18 14:42:19 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Jan 18 14:42:19 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 18 14:42:33 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 18 14:42:34 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 18 14:42:34 yurius kernel: libphy: r8169: probed
Jan 18 14:42:34 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 18 14:42:34 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 18 14:42:34 yurius systemd-networkd[344]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 18 14:42:34 yurius systemd-networkd[344]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 18 14:42:34 yurius systemd-networkd[344]: Enumeration completed
Jan 18 14:42:34 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 14:42:34 yurius kernel: audit: type=1130 audit(1579351354.343:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 14:42:34 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 18 14:42:34 yurius systemd-networkd[344]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 18 14:42:34 yurius systemd-networkd[344]: enp2s0: IPv6 successfully enabled
Jan 18 14:42:34 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 18 14:42:34 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 18 14:42:34 yurius systemd-networkd[344]: enp2s0: Link UP
Jan 18 14:42:36 yurius systemd-networkd[344]: enp2s0: Gained carrier
Jan 18 14:42:36 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 18 14:42:36 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 18 14:42:37 yurius systemd-networkd[344]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 18 14:42:37 yurius systemd[560]: Listening on GnuPG network certificate management daemon.
Jan 18 14:42:37 yurius systemd-networkd[344]: enp2s0: Gained IPv6LL
Jan 18 14:42:49 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 14:42:49 yurius kernel: audit: type=1130 audit(1579351369.676:43): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 15:53:54 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 18 15:53:54 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 15:53:57 yurius systemd[560]: Closed GnuPG network certificate management daemon.
Jan 18 15:53:57 yurius systemd-networkd[344]: enp2s0: DHCP lease lost
Jan 18 15:53:57 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 18 15:53:57 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 15:53:57 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Jan 18 15:53:57 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Jan 18 15:53:57 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 18 15:54:13 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 18 15:54:13 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 18 15:54:13 yurius kernel: libphy: r8169: probed
Jan 18 15:54:13 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 18 15:54:13 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 18 15:54:14 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 18 15:54:14 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 18 15:54:14 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 15:54:14 yurius systemd-networkd[337]: Enumeration completed
Jan 18 15:54:14 yurius kernel: audit: type=1130 audit(1579355654.095:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 15:54:14 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 18 15:54:14 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 18 15:54:14 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Jan 18 15:54:14 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 18 15:54:14 yurius systemd-networkd[337]: enp2s0: Link UP
Jan 18 15:54:14 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 18 15:54:16 yurius systemd-networkd[337]: enp2s0: Gained carrier
Jan 18 15:54:16 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 18 15:54:16 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 18 15:54:16 yurius systemd[553]: Listening on GnuPG network certificate management daemon.
Jan 18 15:54:18 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 18 15:54:18 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Jan 18 15:54:30 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 15:54:30 yurius kernel: audit: type=1130 audit(1579355670.302:46): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 15:59:36 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 18 15:59:36 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 15:59:39 yurius systemd[553]: Closed GnuPG network certificate management daemon.
Jan 18 15:59:39 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Jan 18 15:59:39 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 18 15:59:39 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 15:59:39 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 18 15:59:39 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 18 15:59:39 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 18 15:59:39 yurius kernel: audit: type=1131 audit(1579355979.325:79): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 15:59:55 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 18 15:59:55 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 18 15:59:55 yurius kernel: libphy: r8169: probed
Jan 18 15:59:55 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 18 15:59:55 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 18 15:59:55 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 18 15:59:55 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 18 15:59:55 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 18 15:59:55 yurius systemd-networkd[337]: Enumeration completed
Jan 18 15:59:55 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 18 15:59:55 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 15:59:55 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 18 15:59:55 yurius kernel: audit: type=1130 audit(1579355995.703:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 15:59:55 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Jan 18 15:59:55 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 18 15:59:55 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 18 15:59:55 yurius systemd-networkd[337]: enp2s0: Link UP
Jan 18 15:59:57 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 18 15:59:57 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 18 15:59:57 yurius systemd-networkd[337]: enp2s0: Gained carrier
Jan 18 15:59:59 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Jan 18 15:59:59 yurius systemd[553]: Listening on GnuPG network certificate management daemon.
Jan 18 15:59:59 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 18 16:00:11 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 16:00:11 yurius kernel: audit: type=1130 audit(1579356011.133:46): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 16:03:57 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 18 16:03:57 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 16:04:00 yurius systemd[553]: Closed GnuPG network certificate management daemon.
Jan 18 16:04:00 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Jan 18 16:04:00 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 18 16:04:00 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 16:04:00 yurius kernel: audit: type=1131 audit(1579356240.849:73): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 16:04:00 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Jan 18 16:04:00 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Jan 18 16:04:00 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 18 16:04:15 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 18 16:04:16 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 18 16:04:16 yurius kernel: libphy: r8169: probed
Jan 18 16:04:16 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 18 16:04:16 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 18 16:04:16 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 18 16:04:16 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 18 16:04:16 yurius systemd-networkd[335]: Enumeration completed
Jan 18 16:04:16 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 16:04:16 yurius kernel: audit: type=1130 audit(1579356256.314:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 16:04:16 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 18 16:04:16 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 18 16:04:16 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Jan 18 16:04:16 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 18 16:04:16 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 18 16:04:16 yurius systemd-networkd[335]: enp2s0: Link UP
Jan 18 16:04:18 yurius systemd-networkd[335]: enp2s0: Gained carrier
Jan 18 16:04:18 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 18 16:04:18 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 18 16:04:19 yurius systemd[559]: Listening on GnuPG network certificate management daemon.
Jan 18 16:04:20 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Jan 18 16:04:20 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 18 16:04:32 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 16:04:32 yurius kernel: audit: type=1130 audit(1579356272.164:46): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 19:04:09 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 18 19:04:09 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 19:04:09 yurius kernel: audit: type=1131 audit(1579367049.660:82): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 19:04:12 yurius systemd[559]: Closed GnuPG network certificate management daemon.
Jan 18 19:04:12 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Jan 18 19:04:12 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 18 19:04:12 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 19:04:12 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 18 19:04:12 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 18 19:04:12 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 18 19:04:27 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 18 19:04:28 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 18 19:04:28 yurius kernel: libphy: r8169: probed
Jan 18 19:04:28 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 18 19:04:28 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 18 19:04:28 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 18 19:04:28 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 18 19:04:28 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 18 19:04:28 yurius systemd-networkd[339]: Enumeration completed
Jan 18 19:04:28 yurius systemd-networkd[339]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 18 19:04:28 yurius systemd-networkd[339]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 18 19:04:28 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 19:04:28 yurius systemd-networkd[339]: enp2s0: IPv6 successfully enabled
Jan 18 19:04:28 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 18 19:04:28 yurius systemd-networkd[339]: enp2s0: Link UP
Jan 18 19:04:28 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 18 19:04:30 yurius systemd-networkd[339]: enp2s0: Gained carrier
Jan 18 19:04:30 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 18 19:04:30 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 18 19:04:31 yurius systemd[562]: Listening on GnuPG network certificate management daemon.
Jan 18 19:04:32 yurius systemd-networkd[339]: enp2s0: Gained IPv6LL
Jan 18 19:04:33 yurius systemd-networkd[339]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 18 19:04:44 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 19:04:44 yurius kernel: audit: type=1130 audit(1579367084.159:46): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 22:47:27 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 18 22:47:27 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 22:47:30 yurius systemd[562]: Closed GnuPG network certificate management daemon.
Jan 18 22:47:30 yurius systemd-networkd[339]: enp2s0: DHCP lease lost
Jan 18 22:47:30 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 18 22:47:30 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 18 22:47:30 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 18 22:47:30 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 18 22:47:30 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 19 08:02:12 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 19 08:02:13 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 19 08:02:13 yurius kernel: libphy: r8169: probed
Jan 19 08:02:13 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 19 08:02:13 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 19 08:02:13 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 19 08:02:13 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 19 08:02:13 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 19 08:02:13 yurius systemd-networkd[340]: Enumeration completed
Jan 19 08:02:13 yurius systemd-networkd[340]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 19 08:02:13 yurius kernel: audit: type=1130 audit(1579413733.546:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 19 08:02:13 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 19 08:02:13 yurius systemd-networkd[340]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 19 08:02:13 yurius systemd-networkd[340]: enp2s0: IPv6 successfully enabled
Jan 19 08:02:13 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 19 08:02:13 yurius systemd-networkd[340]: enp2s0: Link UP
Jan 19 08:02:13 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 19 08:02:15 yurius systemd-networkd[340]: enp2s0: Gained carrier
Jan 19 08:02:15 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 19 08:02:15 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 19 08:02:16 yurius systemd-networkd[340]: enp2s0: Gained IPv6LL
Jan 19 08:02:29 yurius systemd-networkd[340]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 19 08:02:29 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 19 08:02:29 yurius kernel: audit: type=1130 audit(1579413749.910:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 19 08:03:09 yurius systemd[555]: Listening on GnuPG network certificate management daemon.
Jan 19 19:43:33 yurius Thunar[8379]: [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f48c68747c0]Protocol name not provided, cannot determine if input is local or a network protocol, buffers and access patterns cannot be configured optimally without knowing the protocol
Jan 19 19:45:23 yurius Thunar[8447]: [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f345cd3c7c0]Protocol name not provided, cannot determine if input is local or a network protocol, buffers and access patterns cannot be configured optimally without knowing the protocol
Jan 19 20:39:27 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 19 20:39:27 yurius kernel: audit: type=1131 audit(1579459167.092:135): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 19 20:39:27 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 19 20:39:30 yurius systemd[555]: Closed GnuPG network certificate management daemon.
Jan 19 20:39:30 yurius systemd-networkd[340]: enp2s0: DHCP lease lost
Jan 19 20:39:30 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 19 20:39:30 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 19 20:39:30 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 19 20:39:30 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 19 20:39:30 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 20 08:03:13 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 20 08:03:14 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 20 08:03:14 yurius kernel: libphy: r8169: probed
Jan 20 08:03:14 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 20 08:03:14 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 20 08:03:14 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 20 08:03:14 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 20 08:03:14 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 20 08:03:14 yurius systemd-networkd[335]: Enumeration completed
Jan 20 08:03:14 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 20 08:03:14 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 20 08:03:14 yurius kernel: audit: type=1130 audit(1579500194.585:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 20 08:03:14 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 20 08:03:14 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Jan 20 08:03:14 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 20 08:03:14 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 20 08:03:14 yurius systemd-networkd[335]: enp2s0: Link UP
Jan 20 08:03:16 yurius systemd-networkd[335]: enp2s0: Gained carrier
Jan 20 08:03:16 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 20 08:03:16 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 20 08:03:18 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Jan 20 08:03:20 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Jan 20 08:03:30 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 20 08:03:30 yurius kernel: audit: type=1130 audit(1579500210.315:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 20 08:03:38 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Jan 20 08:05:14 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 20 08:05:14 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 20 08:05:17 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Jan 20 08:05:17 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Jan 20 08:05:17 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 20 08:05:17 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 20 08:05:17 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Jan 20 08:05:17 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Jan 20 08:05:17 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 20 08:05:17 yurius kernel: audit: type=1131 audit(1579500317.282:74): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 20 08:05:31 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 20 08:05:32 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 20 08:05:32 yurius kernel: libphy: r8169: probed
Jan 20 08:05:32 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 20 08:05:32 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 20 08:05:32 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 20 08:05:32 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 20 08:05:32 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 20 08:05:32 yurius systemd-networkd[339]: Enumeration completed
Jan 20 08:05:32 yurius kernel: audit: type=1130 audit(1579500332.260:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 20 08:05:32 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 20 08:05:32 yurius systemd-networkd[339]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 20 08:05:32 yurius systemd-networkd[339]: enp2s0: IPv6 successfully enabled
Jan 20 08:05:32 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 20 08:05:32 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 20 08:05:32 yurius systemd-networkd[339]: enp2s0: Link UP
Jan 20 08:05:34 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 20 08:05:34 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 20 08:05:34 yurius systemd-networkd[339]: enp2s0: Gained carrier
Jan 20 08:05:35 yurius systemd-networkd[339]: enp2s0: Gained IPv6LL
Jan 20 08:05:36 yurius systemd[563]: Listening on GnuPG network certificate management daemon.
Jan 20 08:05:37 yurius systemd-networkd[339]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Jan 20 08:05:47 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 20 08:05:47 yurius kernel: audit: type=1130 audit(1579500347.626:43): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 20 13:10:21 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 20 13:10:21 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 20 13:10:21 yurius systemd[563]: Closed GnuPG network certificate management daemon.
Jan 20 13:10:21 yurius systemd-networkd[339]: enp2s0: DHCP lease lost
Jan 20 13:10:21 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 20 13:10:21 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 20 13:10:21 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 20 13:10:21 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 20 13:10:21 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 21 09:23:07 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 21 09:23:08 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 21 09:23:08 yurius kernel: libphy: r8169: probed
Jan 21 09:23:08 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 21 09:23:08 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 21 09:23:08 yurius systemd-networkd[342]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 21 09:23:08 yurius systemd-networkd[342]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 21 09:23:08 yurius systemd-networkd[342]: Enumeration completed
Jan 21 09:23:08 yurius kernel: audit: type=1130 audit(1579591388.562:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 21 09:23:08 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 21 09:23:08 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 21 09:23:08 yurius systemd-networkd[342]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 21 09:23:08 yurius systemd-networkd[342]: enp2s0: IPv6 successfully enabled
Jan 21 09:23:08 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 21 09:23:08 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 21 09:23:08 yurius systemd-networkd[342]: enp2s0: Link UP
Jan 21 09:23:10 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 21 09:23:10 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 21 09:23:10 yurius systemd-networkd[342]: enp2s0: Gained carrier
Jan 21 09:23:12 yurius systemd-networkd[342]: enp2s0: Gained IPv6LL
Jan 21 09:23:13 yurius systemd-networkd[342]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Jan 21 09:23:24 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 21 09:23:24 yurius kernel: audit: type=1130 audit(1579591404.116:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 21 09:23:40 yurius systemd[564]: Listening on GnuPG network certificate management daemon.
Jan 21 21:31:22 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 21 21:31:22 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 21 21:31:22 yurius kernel: audit: type=1131 audit(1579635082.853:64): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 21 21:31:25 yurius systemd[564]: Closed GnuPG network certificate management daemon.
Jan 21 21:31:25 yurius systemd-networkd[342]: enp2s0: DHCP lease lost
Jan 21 21:31:25 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 21 21:31:25 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 21 21:31:25 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 21 21:31:25 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 21 21:31:25 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 22 07:37:12 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 22 07:37:13 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 22 07:37:13 yurius kernel: libphy: r8169: probed
Jan 22 07:37:13 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 22 07:37:13 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 22 07:37:13 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 22 07:37:13 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 22 07:37:13 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 22 07:37:13 yurius systemd-networkd[336]: Enumeration completed
Jan 22 07:37:13 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 22 07:37:13 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 22 07:37:13 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 22 07:37:13 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Jan 22 07:37:13 yurius kernel: audit: type=1130 audit(1579671433.624:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 22 07:37:13 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 22 07:37:13 yurius systemd-networkd[336]: enp2s0: Link UP
Jan 22 07:37:13 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 22 07:37:15 yurius systemd-networkd[336]: enp2s0: Gained carrier
Jan 22 07:37:15 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 22 07:37:15 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 22 07:37:17 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Jan 22 07:37:20 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Jan 22 07:37:29 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 22 07:37:29 yurius kernel: audit: type=1130 audit(1579671449.238:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 22 07:37:48 yurius systemd[556]: Listening on GnuPG network certificate management daemon.
Jan 22 08:37:48 yurius gvfsd-network[2080]: unable to create file '/run/user/1000/dconf/user': Permission denied.  dconf will not work properly.
Jan 22 08:37:48 yurius gvfsd-network[2080]: unable to create file '/run/user/1000/dconf/user': Permission denied.  dconf will not work properly.
Jan 22 08:37:48 yurius gvfsd-network[2080]: unable to create file '/run/user/1000/dconf/user': Permission denied.  dconf will not work properly.
Jan 22 08:37:48 yurius gvfsd-network[2080]: unable to create file '/run/user/1000/dconf/user': Permission denied.  dconf will not work properly.
Jan 22 08:37:48 yurius gvfsd-network[2080]: unable to create file '/run/user/1000/dconf/user': Permission denied.  dconf will not work properly.
Jan 22 08:37:48 yurius gvfsd-network[2080]: unable to create file '/run/user/1000/dconf/user': Permission denied.  dconf will not work properly.
Jan 22 15:17:57 yurius Thunar[6001]: [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f62612f47c0]Protocol name not provided, cannot determine if input is local or a network protocol, buffers and access patterns cannot be configured optimally without knowing the protocol
Jan 22 22:18:50 yurius kernel: audit: type=1131 audit(1579724330.985:193): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 22 22:18:50 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 22 22:18:50 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 22 22:18:51 yurius systemd[556]: Closed GnuPG network certificate management daemon.
Jan 22 22:18:51 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Jan 22 22:18:51 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 22 22:18:51 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 22 22:18:51 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 22 22:18:51 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 22 22:18:51 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 23 07:26:53 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 23 07:26:54 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 23 07:26:54 yurius kernel: libphy: r8169: probed
Jan 23 07:26:54 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 23 07:26:54 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 23 07:26:54 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 23 07:26:54 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 23 07:26:54 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 23 07:26:54 yurius systemd-networkd[334]: Enumeration completed
Jan 23 07:26:54 yurius systemd-networkd[334]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 23 07:26:54 yurius systemd-networkd[334]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 23 07:26:54 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 07:26:54 yurius kernel: audit: type=1130 audit(1579757214.674:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 07:26:54 yurius systemd-networkd[334]: enp2s0: IPv6 successfully enabled
Jan 23 07:26:54 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 23 07:26:54 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 23 07:26:54 yurius systemd-networkd[334]: enp2s0: Link UP
Jan 23 07:26:56 yurius systemd-networkd[334]: enp2s0: Gained carrier
Jan 23 07:26:56 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 23 07:26:56 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 23 07:26:58 yurius systemd-networkd[334]: enp2s0: Gained IPv6LL
Jan 23 07:26:59 yurius systemd-networkd[334]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Jan 23 07:27:10 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 07:27:10 yurius kernel: audit: type=1130 audit(1579757230.311:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 07:27:44 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Jan 23 11:46:29 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 23 11:46:29 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 11:46:32 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Jan 23 11:46:32 yurius systemd-networkd[334]: enp2s0: DHCP lease lost
Jan 23 11:46:32 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 23 11:46:32 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 11:46:32 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 23 11:46:32 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 23 11:46:32 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 23 12:27:26 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 23 12:27:27 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 23 12:27:27 yurius kernel: libphy: r8169: probed
Jan 23 12:27:27 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 23 12:27:27 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 23 12:27:27 yurius systemd-networkd[341]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 23 12:27:27 yurius systemd-networkd[341]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 23 12:27:27 yurius systemd-networkd[341]: Enumeration completed
Jan 23 12:27:27 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 12:27:27 yurius kernel: audit: type=1130 audit(1579775247.498:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 12:27:27 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 23 12:27:27 yurius systemd-networkd[341]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 23 12:27:27 yurius systemd-networkd[341]: enp2s0: IPv6 successfully enabled
Jan 23 12:27:27 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 23 12:27:27 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 23 12:27:27 yurius systemd-networkd[341]: enp2s0: Link UP
Jan 23 12:27:29 yurius systemd-networkd[341]: enp2s0: Gained carrier
Jan 23 12:27:29 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 23 12:27:29 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 23 12:27:30 yurius systemd-networkd[341]: enp2s0: Gained IPv6LL
Jan 23 12:27:44 yurius systemd-networkd[341]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 23 12:27:44 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 12:27:44 yurius kernel: audit: type=1130 audit(1579775264.248:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 12:27:56 yurius systemd[562]: Listening on GnuPG network certificate management daemon.
Jan 23 13:49:09 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 23 13:49:09 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 13:49:12 yurius systemd[562]: Closed GnuPG network certificate management daemon.
Jan 23 13:49:12 yurius systemd-networkd[341]: enp2s0: DHCP lease lost
Jan 23 13:49:12 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 23 13:49:12 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 13:49:12 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 23 13:49:12 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 23 13:49:12 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 23 13:49:31 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 23 13:49:32 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 23 13:49:32 yurius kernel: libphy: r8169: probed
Jan 23 13:49:32 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 23 13:49:32 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 23 13:49:32 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 23 13:49:32 yurius systemd-networkd[354]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 23 13:49:32 yurius systemd-networkd[354]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 23 13:49:32 yurius systemd-networkd[354]: Enumeration completed
Jan 23 13:49:32 yurius systemd-networkd[354]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 23 13:49:32 yurius systemd-networkd[354]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 23 13:49:32 yurius systemd-networkd[354]: enp2s0: IPv6 successfully enabled
Jan 23 13:49:32 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 23 13:49:32 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 13:49:32 yurius kernel: audit: type=1130 audit(1579780172.438:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 13:49:32 yurius systemd-networkd[354]: enp2s0: Link UP
Jan 23 13:49:32 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 23 13:49:34 yurius systemd-networkd[354]: enp2s0: Gained carrier
Jan 23 13:49:34 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 23 13:49:34 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 23 13:49:35 yurius systemd-networkd[354]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 23 13:49:35 yurius systemd-networkd[354]: enp2s0: Gained IPv6LL
Jan 23 13:49:47 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 13:49:47 yurius kernel: audit: type=1130 audit(1579780187.871:25): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 13:51:28 yurius systemd[583]: Listening on GnuPG network certificate management daemon.
Jan 23 22:00:32 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 23 22:00:32 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 22:00:32 yurius systemd[583]: Closed GnuPG network certificate management daemon.
Jan 23 22:00:32 yurius systemd-networkd[354]: enp2s0: DHCP lease lost
Jan 23 22:00:32 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 23 22:00:32 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 23 22:00:32 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 23 22:00:32 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 23 22:00:32 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 24 08:38:58 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 24 08:38:59 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 24 08:38:59 yurius kernel: libphy: r8169: probed
Jan 24 08:38:59 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 24 08:38:59 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 24 08:38:59 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 24 08:38:59 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 24 08:38:59 yurius kernel: audit: type=1130 audit(1579847939.622:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 24 08:38:59 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 24 08:38:59 yurius systemd-networkd[355]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 24 08:38:59 yurius systemd-networkd[355]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 24 08:38:59 yurius systemd-networkd[355]: Enumeration completed
Jan 24 08:38:59 yurius systemd-networkd[355]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 24 08:38:59 yurius systemd-networkd[355]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 24 08:38:59 yurius systemd-networkd[355]: enp2s0: IPv6 successfully enabled
Jan 24 08:38:59 yurius systemd-networkd[355]: enp2s0: Link UP
Jan 24 08:38:59 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 24 08:39:01 yurius systemd-networkd[355]: enp2s0: Gained carrier
Jan 24 08:39:01 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 24 08:39:01 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 24 08:39:03 yurius systemd-networkd[355]: enp2s0: Gained IPv6LL
Jan 24 08:39:05 yurius systemd-networkd[355]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Jan 24 08:39:15 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 24 08:39:15 yurius kernel: audit: type=1130 audit(1579847955.086:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 24 08:39:27 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Jan 24 15:45:23 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 24 15:45:23 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 24 15:45:25 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Jan 24 15:45:25 yurius systemd-networkd[355]: enp2s0: DHCP lease lost
Jan 24 15:45:25 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 24 15:45:25 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 24 15:45:25 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 24 15:45:25 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 24 15:45:25 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 24 15:45:41 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 24 15:45:42 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 24 15:45:42 yurius kernel: libphy: r8169: probed
Jan 24 15:45:42 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 24 15:45:42 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 24 15:45:42 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 24 15:45:42 yurius kernel: audit: type=1130 audit(1579873542.629:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 24 15:45:42 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 24 15:45:42 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 24 15:45:42 yurius systemd-networkd[335]: Enumeration completed
Jan 24 15:45:42 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 24 15:45:42 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 24 15:45:42 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Jan 24 15:45:42 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 24 15:45:42 yurius systemd-networkd[335]: enp2s0: Link UP
Jan 24 15:45:42 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 24 15:45:44 yurius systemd-networkd[335]: enp2s0: Gained carrier
Jan 24 15:45:44 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 24 15:45:44 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 24 15:45:45 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Jan 24 15:45:46 yurius systemd[544]: Listening on GnuPG network certificate management daemon.
Jan 24 15:45:47 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Jan 24 15:45:57 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 24 15:45:57 yurius kernel: audit: type=1130 audit(1579873557.406:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 24 22:05:45 yurius kernel: audit: type=1131 audit(1579896345.499:106): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 24 22:05:45 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 24 22:05:45 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 24 22:05:45 yurius systemd[544]: Closed GnuPG network certificate management daemon.
Jan 24 22:05:45 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Jan 24 22:05:45 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 24 22:05:45 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 24 22:05:45 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 24 22:05:45 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 24 22:05:45 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 25 08:11:59 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 25 08:12:00 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 25 08:12:00 yurius kernel: libphy: r8169: probed
Jan 25 08:12:00 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 25 08:12:00 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 25 08:12:00 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 25 08:12:00 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 25 08:12:00 yurius kernel: audit: type=1130 audit(1579932720.616:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 25 08:12:00 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 25 08:12:00 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 25 08:12:00 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 25 08:12:00 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 25 08:12:00 yurius systemd-networkd[336]: Enumeration completed
Jan 25 08:12:00 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 25 08:12:00 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 25 08:12:00 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Jan 25 08:12:00 yurius systemd-networkd[336]: enp2s0: Link UP
Jan 25 08:12:02 yurius systemd-networkd[336]: enp2s0: Gained carrier
Jan 25 08:12:02 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 25 08:12:02 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 25 08:12:04 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Jan 25 08:12:19 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Jan 25 08:12:19 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 25 08:12:19 yurius kernel: audit: type=1130 audit(1579932739.353:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 25 08:14:02 yurius systemd[562]: Listening on GnuPG network certificate management daemon.
Jan 25 08:16:18 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 25 08:16:19 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 25 08:16:19 yurius kernel: libphy: r8169: probed
Jan 25 08:16:19 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 25 08:16:19 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 25 08:16:19 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 25 08:16:19 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 25 08:16:19 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 25 08:16:19 yurius systemd-networkd[339]: Enumeration completed
Jan 25 08:16:19 yurius systemd-networkd[339]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 25 08:16:19 yurius systemd-networkd[339]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 25 08:16:19 yurius systemd-networkd[339]: enp2s0: IPv6 successfully enabled
Jan 25 08:16:19 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 25 08:16:19 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 25 08:16:19 yurius kernel: audit: type=1130 audit(1579932979.347:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 25 08:16:19 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 25 08:16:19 yurius systemd-networkd[339]: enp2s0: Link UP
Jan 25 08:16:21 yurius systemd-networkd[339]: enp2s0: Gained carrier
Jan 25 08:16:21 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 25 08:16:21 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 25 08:16:22 yurius systemd-networkd[339]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Jan 25 08:16:23 yurius systemd-networkd[339]: enp2s0: Gained IPv6LL
Jan 25 08:16:25 yurius systemd[544]: Listening on GnuPG network certificate management daemon.
Jan 25 08:16:35 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 25 08:16:35 yurius kernel: audit: type=1130 audit(1579932995.450:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 25 22:13:35 yurius systemd[544]: Closed GnuPG network certificate management daemon.
Jan 25 22:13:35 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 25 22:13:35 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 25 22:13:35 yurius systemd-networkd[339]: enp2s0: DHCP lease lost
Jan 25 22:13:35 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 25 22:13:35 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 25 22:13:35 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 25 22:13:35 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 25 22:13:35 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 26 07:12:17 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 26 07:12:18 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 26 07:12:18 yurius kernel: libphy: r8169: probed
Jan 26 07:12:18 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 26 07:12:18 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 26 07:12:18 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 26 07:12:18 yurius systemd-networkd[343]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 26 07:12:18 yurius systemd-networkd[343]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 26 07:12:18 yurius systemd-networkd[343]: Enumeration completed
Jan 26 07:12:18 yurius systemd-networkd[343]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 26 07:12:18 yurius systemd-networkd[343]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 26 07:12:18 yurius kernel: audit: type=1130 audit(1580015538.427:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 07:12:18 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 07:12:18 yurius systemd-networkd[343]: enp2s0: IPv6 successfully enabled
Jan 26 07:12:18 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 26 07:12:18 yurius systemd-networkd[343]: enp2s0: Link UP
Jan 26 07:12:18 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 26 07:12:20 yurius systemd-networkd[343]: enp2s0: Gained carrier
Jan 26 07:12:20 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 26 07:12:20 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 26 07:12:21 yurius systemd-networkd[343]: enp2s0: Gained IPv6LL
Jan 26 07:12:26 yurius systemd-networkd[343]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 26 07:12:33 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 07:12:33 yurius kernel: audit: type=1130 audit(1580015553.957:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 07:12:52 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Jan 26 13:42:05 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 26 13:42:05 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 13:42:05 yurius kernel: audit: type=1131 audit(1580038925.523:91): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 13:42:05 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Jan 26 13:42:05 yurius systemd-networkd[343]: enp2s0: DHCP lease lost
Jan 26 13:42:05 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 26 13:42:05 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 13:42:05 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 26 13:42:05 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 26 13:42:05 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 26 14:57:54 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 26 14:57:55 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 26 14:57:55 yurius kernel: libphy: r8169: probed
Jan 26 14:57:55 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 26 14:57:55 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 26 14:57:55 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 26 14:57:55 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 26 14:57:55 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 26 14:57:55 yurius systemd-networkd[338]: Enumeration completed
Jan 26 14:57:55 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 26 14:57:55 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 26 14:57:55 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 14:57:55 yurius kernel: audit: type=1130 audit(1580043475.423:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 14:57:55 yurius systemd-networkd[338]: enp2s0: IPv6 successfully enabled
Jan 26 14:57:55 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 26 14:57:55 yurius systemd-networkd[338]: enp2s0: Link UP
Jan 26 14:57:55 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 26 14:57:57 yurius systemd-networkd[338]: enp2s0: Gained carrier
Jan 26 14:57:57 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 26 14:57:57 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 26 14:57:58 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Jan 26 14:58:01 yurius systemd-networkd[338]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Jan 26 14:58:10 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 14:58:10 yurius kernel: audit: type=1130 audit(1580043490.703:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 14:58:27 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Jan 26 22:16:05 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 26 22:16:05 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 22:16:05 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Jan 26 22:16:05 yurius systemd-networkd[338]: enp2s0: DHCP lease lost
Jan 26 22:16:05 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 26 22:16:05 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 22:16:05 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 26 22:16:05 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 26 22:16:05 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 27 07:27:16 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 27 07:27:17 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 27 07:27:17 yurius kernel: libphy: r8169: probed
Jan 27 07:27:17 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 27 07:27:17 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 27 07:27:17 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 27 07:27:17 yurius systemd-networkd[344]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 27 07:27:17 yurius systemd-networkd[344]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 27 07:27:17 yurius systemd-networkd[344]: Enumeration completed
Jan 27 07:27:17 yurius systemd-networkd[344]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 27 07:27:17 yurius systemd-networkd[344]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 27 07:27:17 yurius kernel: audit: type=1130 audit(1580102837.482:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 07:27:17 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 07:27:17 yurius systemd-networkd[344]: enp2s0: IPv6 successfully enabled
Jan 27 07:27:17 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 27 07:27:17 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 27 07:27:17 yurius systemd-networkd[344]: enp2s0: Link UP
Jan 27 07:27:19 yurius systemd-networkd[344]: enp2s0: Gained carrier
Jan 27 07:27:19 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 27 07:27:19 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 27 07:27:21 yurius systemd-networkd[344]: enp2s0: Gained IPv6LL
Jan 27 07:27:27 yurius systemd-networkd[344]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 27 07:27:33 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 07:27:33 yurius kernel: audit: type=1130 audit(1580102853.052:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 07:27:41 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Jan 27 07:29:35 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 07:29:35 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 27 07:29:35 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Jan 27 07:29:36 yurius systemd-networkd[344]: enp2s0: DHCP lease lost
Jan 27 07:29:36 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 27 07:29:36 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 07:29:36 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 27 07:29:36 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 27 07:29:36 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 27 07:29:53 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 27 07:29:54 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 27 07:29:54 yurius kernel: libphy: r8169: probed
Jan 27 07:29:54 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 27 07:29:54 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 27 07:29:54 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 27 07:29:54 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 27 07:29:54 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 27 07:29:54 yurius systemd-networkd[340]: Enumeration completed
Jan 27 07:29:54 yurius systemd-networkd[340]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 27 07:29:54 yurius systemd-networkd[340]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 27 07:29:54 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 07:29:54 yurius kernel: audit: type=1130 audit(1580102994.302:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 07:29:54 yurius systemd-networkd[340]: enp2s0: IPv6 successfully enabled
Jan 27 07:29:54 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 27 07:29:54 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 27 07:29:54 yurius systemd-networkd[340]: enp2s0: Link UP
Jan 27 07:29:56 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 27 07:29:56 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 27 07:29:56 yurius systemd-networkd[340]: enp2s0: Gained carrier
Jan 27 07:29:57 yurius systemd-networkd[340]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 27 07:29:57 yurius systemd-networkd[340]: enp2s0: Gained IPv6LL
Jan 27 07:30:00 yurius systemd[544]: Listening on GnuPG network certificate management daemon.
Jan 27 07:30:09 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 07:30:09 yurius kernel: audit: type=1130 audit(1580103009.865:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 10:31:30 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 27 10:31:30 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 10:31:33 yurius systemd[544]: Closed GnuPG network certificate management daemon.
Jan 27 10:31:33 yurius systemd-networkd[340]: enp2s0: DHCP lease lost
Jan 27 10:31:33 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 27 10:31:33 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 10:31:33 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 27 10:31:33 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 27 10:31:33 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 27 12:27:21 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 27 12:27:22 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 27 12:27:22 yurius kernel: libphy: r8169: probed
Jan 27 12:27:22 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 27 12:27:22 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 27 12:27:22 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 27 12:27:22 yurius systemd-networkd[342]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 27 12:27:22 yurius systemd-networkd[342]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 27 12:27:22 yurius systemd-networkd[342]: Enumeration completed
Jan 27 12:27:22 yurius systemd-networkd[342]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 27 12:27:22 yurius systemd-networkd[342]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 27 12:27:22 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 12:27:22 yurius kernel: audit: type=1130 audit(1580120842.414:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 12:27:22 yurius systemd-networkd[342]: enp2s0: IPv6 successfully enabled
Jan 27 12:27:22 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 27 12:27:22 yurius systemd-networkd[342]: enp2s0: Link UP
Jan 27 12:27:22 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 27 12:27:24 yurius systemd-networkd[342]: enp2s0: Gained carrier
Jan 27 12:27:24 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 27 12:27:24 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 27 12:27:25 yurius systemd-networkd[342]: enp2s0: Gained IPv6LL
Jan 27 12:27:34 yurius systemd-networkd[342]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 27 12:27:37 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 12:27:37 yurius kernel: audit: type=1130 audit(1580120857.381:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 12:34:18 yurius systemd[556]: Listening on GnuPG network certificate management daemon.
Jan 27 17:15:30 yurius systemd-networkd[342]: eth0: IPv6 successfully enabled
Jan 27 17:15:30 yurius systemd-networkd[342]: eth0: Link UP
Jan 27 18:46:39 yurius systemd-networkd[342]: eth0: Link DOWN
Jan 27 22:39:37 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 27 22:39:37 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 22:39:40 yurius systemd[556]: Closed GnuPG network certificate management daemon.
Jan 27 22:39:40 yurius systemd-networkd[342]: enp2s0: DHCP lease lost
Jan 27 22:39:40 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 27 22:39:40 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 27 22:39:40 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 27 22:39:40 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 27 22:39:40 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 28 09:04:47 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 28 09:04:48 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 28 09:04:48 yurius kernel: libphy: r8169: probed
Jan 28 09:04:48 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 28 09:04:48 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 28 09:04:48 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 28 09:04:48 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 28 09:04:48 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 28 09:04:48 yurius systemd-networkd[336]: Enumeration completed
Jan 28 09:04:48 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 28 09:04:48 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 28 09:04:48 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Jan 28 09:04:48 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 28 09:04:48 yurius kernel: audit: type=1130 audit(1580195088.431:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 28 09:04:48 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 28 09:04:48 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 28 09:04:48 yurius systemd-networkd[336]: enp2s0: Link UP
Jan 28 09:04:50 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 28 09:04:50 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 28 09:04:50 yurius systemd-networkd[336]: enp2s0: Gained carrier
Jan 28 09:04:51 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Jan 28 09:04:54 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Jan 28 09:05:03 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 28 09:05:03 yurius kernel: audit: type=1130 audit(1580195103.834:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 28 09:10:18 yurius systemd[563]: Listening on GnuPG network certificate management daemon.
Jan 28 22:53:26 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 28 22:53:26 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 28 22:53:29 yurius systemd[563]: Closed GnuPG network certificate management daemon.
Jan 28 22:53:29 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Jan 28 22:53:29 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 28 22:53:29 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 28 22:53:29 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 28 22:53:29 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 28 22:53:29 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 29 08:13:46 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 29 08:13:47 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 29 08:13:47 yurius kernel: libphy: r8169: probed
Jan 29 08:13:47 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 29 08:13:47 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 29 08:13:47 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 29 08:13:47 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 29 08:13:47 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 29 08:13:47 yurius systemd-networkd[337]: Enumeration completed
Jan 29 08:13:47 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 29 08:13:47 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 29 08:13:47 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 29 08:13:47 yurius kernel: audit: type=1130 audit(1580278427.493:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 29 08:13:47 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Jan 29 08:13:47 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 29 08:13:47 yurius systemd-networkd[337]: enp2s0: Link UP
Jan 29 08:13:47 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 29 08:13:49 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 29 08:13:49 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 29 08:13:49 yurius systemd-networkd[337]: enp2s0: Gained carrier
Jan 29 08:13:50 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Jan 29 08:14:02 yurius systemd[542]: Listening on GnuPG network certificate management daemon.
Jan 29 08:14:08 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 29 08:14:08 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 29 08:14:08 yurius kernel: audit: type=1130 audit(1580278448.543:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 29 11:29:57 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 29 11:29:57 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 29 11:30:00 yurius systemd[542]: Closed GnuPG network certificate management daemon.
Jan 29 11:30:00 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Jan 29 11:30:00 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 29 11:30:00 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 29 11:30:00 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 29 11:30:00 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 29 11:30:00 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 29 13:01:20 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 29 13:01:21 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 29 13:01:21 yurius kernel: libphy: r8169: probed
Jan 29 13:01:21 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 29 13:01:21 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 29 13:01:21 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 29 13:01:21 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 29 13:01:21 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 29 13:01:21 yurius systemd-networkd[336]: Enumeration completed
Jan 29 13:01:21 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 29 13:01:21 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 29 13:01:21 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 29 13:01:21 yurius kernel: audit: type=1130 audit(1580295681.447:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 29 13:01:21 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Jan 29 13:01:21 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 29 13:01:21 yurius systemd-networkd[336]: enp2s0: Link UP
Jan 29 13:01:21 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 29 13:01:23 yurius systemd-networkd[336]: enp2s0: Gained carrier
Jan 29 13:01:23 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 29 13:01:23 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 29 13:01:25 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Jan 29 13:01:27 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Jan 29 13:01:37 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 29 13:01:37 yurius kernel: audit: type=1130 audit(1580295697.207:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 29 13:03:08 yurius systemd[560]: Listening on GnuPG network certificate management daemon.
Jan 29 23:14:27 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 29 23:14:27 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 29 23:14:30 yurius systemd[560]: Closed GnuPG network certificate management daemon.
Jan 29 23:14:30 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Jan 29 23:14:30 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 29 23:14:30 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 29 23:14:30 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 29 23:14:30 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 29 23:14:30 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 30 08:27:50 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 30 08:27:51 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 30 08:27:51 yurius kernel: libphy: r8169: probed
Jan 30 08:27:51 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 30 08:27:51 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 30 08:27:51 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 30 08:27:51 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 30 08:27:51 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 30 08:27:51 yurius systemd-networkd[337]: Enumeration completed
Jan 30 08:27:51 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 30 08:27:51 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 30 08:27:51 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Jan 30 08:27:51 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 30 08:27:51 yurius kernel: audit: type=1130 audit(1580365671.522:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 30 08:27:51 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 30 08:27:51 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 30 08:27:51 yurius systemd-networkd[337]: enp2s0: Link UP
Jan 30 08:27:53 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 30 08:27:53 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 30 08:27:53 yurius systemd-networkd[337]: enp2s0: Gained carrier
Jan 30 08:27:55 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Jan 30 08:28:07 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 30 08:28:07 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 30 08:28:07 yurius kernel: audit: type=1130 audit(1580365687.615:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 30 08:28:09 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Jan 30 09:36:32 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 30 09:36:32 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 30 09:36:32 yurius kernel: audit: type=1131 audit(1580369792.022:66): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 30 09:36:32 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Jan 30 09:36:32 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Jan 30 09:36:32 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 30 09:36:32 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 30 09:36:32 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 30 09:36:32 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 30 09:36:32 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 30 11:45:28 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 30 11:45:29 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 30 11:45:29 yurius kernel: libphy: r8169: probed
Jan 30 11:45:29 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 30 11:45:29 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 30 11:45:29 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 30 11:45:29 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 30 11:45:29 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 30 11:45:29 yurius systemd-networkd[336]: Enumeration completed
Jan 30 11:45:29 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 30 11:45:29 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 30 11:45:29 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Jan 30 11:45:29 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 30 11:45:29 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 30 11:45:29 yurius kernel: audit: type=1130 audit(1580377529.431:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 30 11:45:29 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 30 11:45:29 yurius systemd-networkd[336]: enp2s0: Link UP
Jan 30 11:45:31 yurius systemd-networkd[336]: enp2s0: Gained carrier
Jan 30 11:45:31 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 30 11:45:31 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 30 11:45:32 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Jan 30 11:45:35 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Jan 30 11:45:44 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 30 11:45:44 yurius kernel: audit: type=1130 audit(1580377544.358:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 30 11:49:23 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Jan 30 22:01:21 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 30 22:01:21 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 30 22:01:24 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Jan 30 22:01:24 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Jan 30 22:01:24 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 30 22:01:24 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 30 22:01:24 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 30 22:01:24 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 30 22:01:24 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 31 07:26:29 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 31 07:26:30 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 31 07:26:30 yurius kernel: libphy: r8169: probed
Jan 31 07:26:30 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 31 07:26:30 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 31 07:26:30 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 31 07:26:30 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 31 07:26:30 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 31 07:26:30 yurius systemd-networkd[338]: Enumeration completed
Jan 31 07:26:30 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 31 07:26:30 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 07:26:30 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 31 07:26:30 yurius kernel: audit: type=1130 audit(1580448390.497:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 07:26:30 yurius systemd-networkd[338]: enp2s0: IPv6 successfully enabled
Jan 31 07:26:30 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 31 07:26:30 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 31 07:26:30 yurius systemd-networkd[338]: enp2s0: Link UP
Jan 31 07:26:32 yurius systemd-networkd[338]: enp2s0: Gained carrier
Jan 31 07:26:32 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 31 07:26:32 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 31 07:26:34 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Jan 31 07:26:39 yurius systemd[543]: Listening on GnuPG network certificate management daemon.
Jan 31 07:26:40 yurius systemd-networkd[338]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 31 07:26:46 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 07:26:46 yurius kernel: audit: type=1130 audit(1580448406.553:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 09:30:17 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 31 09:30:17 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 09:30:20 yurius systemd[543]: Closed GnuPG network certificate management daemon.
Jan 31 09:30:20 yurius systemd-networkd[338]: enp2s0: DHCP lease lost
Jan 31 09:30:20 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 31 09:30:20 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 09:30:20 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 31 09:30:20 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Jan 31 09:30:20 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 31 11:05:09 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 31 11:05:10 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 31 11:05:10 yurius kernel: libphy: r8169: probed
Jan 31 11:05:10 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 31 11:05:10 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 31 11:05:10 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 31 11:05:10 yurius systemd-networkd[341]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 31 11:05:10 yurius systemd-networkd[341]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 31 11:05:10 yurius systemd-networkd[341]: Enumeration completed
Jan 31 11:05:10 yurius systemd-networkd[341]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 31 11:05:10 yurius systemd-networkd[341]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 31 11:05:10 yurius systemd-networkd[341]: enp2s0: IPv6 successfully enabled
Jan 31 11:05:10 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 31 11:05:10 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 11:05:10 yurius kernel: audit: type=1130 audit(1580461510.374:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 11:05:10 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 31 11:05:10 yurius systemd-networkd[341]: enp2s0: Link UP
Jan 31 11:05:12 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 31 11:05:12 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 31 11:05:12 yurius systemd-networkd[341]: enp2s0: Gained carrier
Jan 31 11:05:14 yurius systemd-networkd[341]: enp2s0: Gained IPv6LL
Jan 31 11:05:16 yurius systemd-networkd[341]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 31 11:05:26 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 11:05:26 yurius kernel: audit: type=1130 audit(1580461526.234:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 11:07:08 yurius systemd[562]: Listening on GnuPG network certificate management daemon.
Jan 31 12:18:31 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 31 12:18:31 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 12:18:34 yurius systemd[562]: Closed GnuPG network certificate management daemon.
Jan 31 12:18:34 yurius systemd-networkd[341]: enp2s0: DHCP lease lost
Jan 31 12:18:34 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 31 12:18:34 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 12:18:34 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 31 12:18:34 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 31 12:18:34 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 31 14:30:44 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 31 14:30:45 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 31 14:30:45 yurius kernel: libphy: r8169: probed
Jan 31 14:30:45 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 31 14:30:45 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 31 14:30:45 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 31 14:30:45 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 31 14:30:45 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 31 14:30:45 yurius systemd-networkd[339]: Enumeration completed
Jan 31 14:30:45 yurius systemd-networkd[339]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 31 14:30:45 yurius systemd-networkd[339]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 31 14:30:45 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 14:30:45 yurius kernel: audit: type=1130 audit(1580473845.469:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 14:30:45 yurius systemd-networkd[339]: enp2s0: IPv6 successfully enabled
Jan 31 14:30:45 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 31 14:30:45 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 31 14:30:45 yurius systemd-networkd[339]: enp2s0: Link UP
Jan 31 14:30:47 yurius systemd-networkd[339]: enp2s0: Gained carrier
Jan 31 14:30:47 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 31 14:30:47 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 31 14:30:48 yurius systemd-networkd[339]: enp2s0: Gained IPv6LL
Jan 31 14:30:56 yurius systemd-networkd[339]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 31 14:31:01 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 14:31:01 yurius kernel: audit: type=1130 audit(1580473861.003:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 14:31:58 yurius systemd[556]: Listening on GnuPG network certificate management daemon.
Jan 31 21:41:40 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 31 21:41:40 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 21:41:40 yurius systemd[556]: Closed GnuPG network certificate management daemon.
Jan 31 21:41:40 yurius systemd-networkd[339]: enp2s0: DHCP lease lost
Jan 31 21:41:40 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 31 21:41:40 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 21:41:40 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 31 21:41:40 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Jan 31 21:41:40 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Jan 31 21:44:35 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 31 21:44:36 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 31 21:44:36 yurius kernel: libphy: r8169: probed
Jan 31 21:44:36 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 31 21:44:36 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 31 21:44:36 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 31 21:44:36 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 31 21:44:36 yurius systemd-networkd[336]: Enumeration completed
Jan 31 21:44:36 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 21:44:36 yurius kernel: audit: type=1130 audit(1580499876.397:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 21:44:36 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 31 21:44:36 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 31 21:44:36 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Jan 31 21:44:36 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 31 21:44:36 yurius systemd-networkd[336]: enp2s0: Link UP
Jan 31 21:44:36 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 31 21:44:38 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 31 21:44:38 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 31 21:44:38 yurius systemd-networkd[336]: enp2s0: Gained carrier
Jan 31 21:44:40 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Jan 31 21:44:40 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 31 21:44:52 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 21:44:52 yurius kernel: audit: type=1130 audit(1580499892.313:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 21:47:34 yurius systemd[562]: Listening on GnuPG network certificate management daemon.
Jan 31 21:50:31 yurius kernel: drop_monitor: Initializing network drop monitor service
Jan 31 21:50:32 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 31 21:50:32 yurius kernel: libphy: r8169: probed
Jan 31 21:50:32 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Jan 31 21:50:32 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 31 21:50:32 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 31 21:50:32 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Jan 31 21:50:32 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Jan 31 21:50:32 yurius systemd-networkd[335]: Enumeration completed
Jan 31 21:50:32 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Jan 31 21:50:32 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Jan 31 21:50:32 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Jan 31 21:50:32 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 21:50:32 yurius kernel: audit: type=1130 audit(1580500232.322:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 21:50:32 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 31 21:50:32 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 31 21:50:32 yurius systemd-networkd[335]: enp2s0: Link UP
Jan 31 21:50:34 yurius systemd-networkd[335]: enp2s0: Gained carrier
Jan 31 21:50:34 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Jan 31 21:50:34 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Jan 31 21:50:35 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Jan 31 21:50:36 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Jan 31 21:50:47 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 21:50:47 yurius kernel: audit: type=1130 audit(1580500247.332:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 21:51:22 yurius systemd[559]: Listening on GnuPG network certificate management daemon.
Jan 31 23:31:11 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Jan 31 23:31:11 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 23:31:11 yurius kernel: audit: type=1131 audit(1580506271.612:50): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 23:31:11 yurius systemd[559]: Closed GnuPG network certificate management daemon.
Jan 31 23:31:11 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Jan 31 23:31:11 yurius systemd[1]: systemd-networkd.service: Succeeded.
Jan 31 23:31:11 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 31 23:31:11 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 31 23:31:11 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jan 31 23:31:11 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 01 07:53:00 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 01 07:53:01 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 01 07:53:01 yurius kernel: libphy: r8169: probed
Feb 01 07:53:01 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 01 07:53:01 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 01 07:53:01 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 01 07:53:01 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 01 07:53:01 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 01 07:53:01 yurius systemd-networkd[335]: Enumeration completed
Feb 01 07:53:01 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 01 07:53:01 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 01 07:53:01 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 01 07:53:01 yurius kernel: audit: type=1130 audit(1580536381.501:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 01 07:53:01 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Feb 01 07:53:01 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 01 07:53:01 yurius systemd-networkd[335]: enp2s0: Link UP
Feb 01 07:53:01 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 01 07:53:03 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 01 07:53:03 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 01 07:53:03 yurius systemd-networkd[335]: enp2s0: Gained carrier
Feb 01 07:53:05 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Feb 01 07:53:11 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 01 07:53:17 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 01 07:53:17 yurius kernel: audit: type=1130 audit(1580536397.401:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 01 07:53:20 yurius systemd[557]: Listening on GnuPG network certificate management daemon.
Feb 01 22:41:15 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 01 22:41:15 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 01 22:41:15 yurius kernel: audit: type=1131 audit(1580589675.940:151): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 01 22:41:18 yurius systemd[557]: Closed GnuPG network certificate management daemon.
Feb 01 22:41:18 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Feb 01 22:41:18 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 01 22:41:18 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 01 22:41:18 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 01 22:41:18 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 01 22:41:18 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 02 08:27:56 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 02 08:27:57 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 02 08:27:57 yurius kernel: libphy: r8169: probed
Feb 02 08:27:57 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 02 08:27:57 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 02 08:27:57 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 02 08:27:57 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 02 08:27:57 yurius systemd-networkd[335]: Enumeration completed
Feb 02 08:27:57 yurius kernel: audit: type=1130 audit(1580624877.529:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 08:27:57 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 08:27:57 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 02 08:27:57 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 02 08:27:57 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Feb 02 08:27:57 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 02 08:27:57 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 02 08:27:57 yurius systemd-networkd[335]: enp2s0: Link UP
Feb 02 08:27:59 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 02 08:27:59 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 02 08:27:59 yurius systemd-networkd[335]: enp2s0: Gained carrier
Feb 02 08:28:00 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Feb 02 08:28:13 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 02 08:28:13 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 08:28:13 yurius kernel: audit: type=1130 audit(1580624893.456:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 08:29:03 yurius systemd[558]: Listening on GnuPG network certificate management daemon.
Feb 02 12:38:56 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 12:38:56 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 02 12:38:59 yurius systemd[558]: Closed GnuPG network certificate management daemon.
Feb 02 12:38:59 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Feb 02 12:38:59 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 02 12:38:59 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 12:38:59 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 02 12:38:59 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 02 12:38:59 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 02 13:55:48 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 02 13:55:49 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 02 13:55:49 yurius kernel: libphy: r8169: probed
Feb 02 13:55:49 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 02 13:55:49 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 02 13:55:49 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 02 13:55:49 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 02 13:55:49 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 02 13:55:49 yurius systemd-networkd[337]: Enumeration completed
Feb 02 13:55:49 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 02 13:55:49 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 02 13:55:49 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 02 13:55:49 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 02 13:55:49 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 13:55:49 yurius kernel: audit: type=1130 audit(1580644549.511:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 13:55:49 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 02 13:55:49 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 02 13:55:51 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 02 13:55:51 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 02 13:55:51 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 02 13:55:52 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 02 13:56:04 yurius systemd[538]: Listening on GnuPG network certificate management daemon.
Feb 02 13:56:08 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 02 13:56:08 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 14:53:19 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 02 14:53:20 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 02 14:53:20 yurius kernel: libphy: r8169: probed
Feb 02 14:53:20 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 02 14:53:20 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 02 14:53:20 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 02 14:53:20 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 02 14:53:20 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 02 14:53:20 yurius systemd-networkd[339]: Enumeration completed
Feb 02 14:53:20 yurius kernel: audit: type=1130 audit(1580648000.399:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 14:53:20 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 14:53:20 yurius systemd-networkd[339]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 02 14:53:20 yurius systemd-networkd[339]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 02 14:53:20 yurius systemd-networkd[339]: enp2s0: IPv6 successfully enabled
Feb 02 14:53:20 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 02 14:53:20 yurius systemd-networkd[339]: enp2s0: Link UP
Feb 02 14:53:20 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 02 14:53:22 yurius systemd-networkd[339]: enp2s0: Gained carrier
Feb 02 14:53:22 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 02 14:53:22 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 02 14:53:23 yurius systemd-networkd[339]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 02 14:53:24 yurius systemd-networkd[339]: enp2s0: Gained IPv6LL
Feb 02 14:53:36 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 14:53:36 yurius kernel: audit: type=1130 audit(1580648016.423:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 14:54:27 yurius systemd[559]: Listening on GnuPG network certificate management daemon.
Feb 02 22:11:47 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 02 22:11:47 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 22:11:47 yurius kernel: audit: type=1131 audit(1580674307.446:63): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 22:11:50 yurius systemd[559]: Closed GnuPG network certificate management daemon.
Feb 02 22:11:50 yurius systemd-networkd[339]: enp2s0: DHCP lease lost
Feb 02 22:11:50 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 02 22:11:50 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 02 22:11:50 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 02 22:11:50 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 02 22:11:50 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 03 08:25:49 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 03 08:25:50 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 03 08:25:50 yurius kernel: libphy: r8169: probed
Feb 03 08:25:50 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 03 08:25:50 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 03 08:25:50 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 03 08:25:50 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 03 08:25:50 yurius systemd-networkd[340]: Enumeration completed
Feb 03 08:25:50 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 08:25:50 yurius kernel: audit: type=1130 audit(1580711150.515:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 08:25:50 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 03 08:25:50 yurius systemd-networkd[340]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 03 08:25:50 yurius systemd-networkd[340]: enp2s0: IPv6 successfully enabled
Feb 03 08:25:50 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 03 08:25:50 yurius systemd-networkd[340]: enp2s0: Link UP
Feb 03 08:25:50 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 03 08:25:52 yurius systemd-networkd[340]: enp2s0: Gained carrier
Feb 03 08:25:52 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 03 08:25:52 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 03 08:25:53 yurius systemd-networkd[340]: enp2s0: Gained IPv6LL
Feb 03 08:25:55 yurius systemd-networkd[340]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 03 08:26:05 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 08:26:05 yurius kernel: audit: type=1130 audit(1580711165.491:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 08:26:49 yurius systemd[560]: Listening on GnuPG network certificate management daemon.
Feb 03 10:21:02 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 03 10:21:02 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 10:21:05 yurius systemd[560]: Closed GnuPG network certificate management daemon.
Feb 03 10:21:05 yurius systemd-networkd[340]: enp2s0: DHCP lease lost
Feb 03 10:21:05 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 03 10:21:05 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 10:21:05 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 03 10:21:05 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 03 10:21:05 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 03 12:14:03 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 03 12:14:04 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 03 12:14:04 yurius kernel: libphy: r8169: probed
Feb 03 12:14:04 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 03 12:14:04 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 03 12:14:04 yurius systemd-networkd[341]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 03 12:14:04 yurius systemd-networkd[341]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 03 12:14:04 yurius systemd-networkd[341]: Enumeration completed
Feb 03 12:14:04 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 12:14:04 yurius kernel: audit: type=1130 audit(1580724844.432:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 12:14:04 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 03 12:14:04 yurius systemd-networkd[341]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 03 12:14:04 yurius systemd-networkd[341]: enp2s0: IPv6 successfully enabled
Feb 03 12:14:04 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 03 12:14:04 yurius systemd-networkd[341]: enp2s0: Link UP
Feb 03 12:14:04 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 03 12:14:06 yurius systemd-networkd[341]: enp2s0: Gained carrier
Feb 03 12:14:06 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 03 12:14:06 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 03 12:14:08 yurius systemd-networkd[341]: enp2s0: Gained IPv6LL
Feb 03 12:14:10 yurius systemd-networkd[341]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Feb 03 12:14:12 yurius systemd[544]: Listening on GnuPG network certificate management daemon.
Feb 03 12:14:20 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 12:14:20 yurius kernel: audit: type=1130 audit(1580724860.086:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 14:40:47 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 03 14:40:47 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 14:40:50 yurius systemd[544]: Closed GnuPG network certificate management daemon.
Feb 03 14:40:50 yurius systemd-networkd[341]: enp2s0: DHCP lease lost
Feb 03 14:40:50 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 03 14:40:50 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 14:40:50 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 03 14:40:50 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 03 14:40:50 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 03 14:41:08 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 03 14:41:09 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 03 14:41:09 yurius kernel: libphy: r8169: probed
Feb 03 14:41:09 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 03 14:41:09 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 03 14:41:09 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 03 14:41:09 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 03 14:41:09 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 03 14:41:09 yurius systemd-networkd[337]: Enumeration completed
Feb 03 14:41:09 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 03 14:41:09 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 03 14:41:09 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 03 14:41:09 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 14:41:09 yurius kernel: audit: type=1130 audit(1580733669.536:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 14:41:09 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 03 14:41:09 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 03 14:41:09 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 03 14:41:11 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 03 14:41:11 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 03 14:41:11 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 03 14:41:13 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Feb 03 14:41:13 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 03 14:41:25 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 14:41:25 yurius kernel: audit: type=1130 audit(1580733685.159:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 14:41:35 yurius systemd[564]: Listening on GnuPG network certificate management daemon.
Feb 03 14:50:37 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 03 14:50:37 yurius systemd-networkd[337]: enp2s0: Lost carrier
Feb 03 14:50:37 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 03 14:50:52 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 03 14:50:52 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 03 14:51:02 yurius systemd-networkd[337]: enp2s0: Lost carrier
Feb 03 14:51:02 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 03 14:51:04 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 03 14:51:04 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 03 14:51:21 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Feb 03 21:41:31 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 21:41:31 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 03 21:41:34 yurius systemd[564]: Closed GnuPG network certificate management daemon.
Feb 03 21:41:34 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 03 21:41:34 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 03 21:41:34 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 21:41:34 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 03 21:41:34 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 03 21:41:34 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 03 21:42:57 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 03 21:42:58 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 03 21:42:58 yurius kernel: libphy: r8169: probed
Feb 03 21:42:58 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 03 21:42:58 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 03 21:42:58 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 03 21:42:58 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 03 21:42:58 yurius systemd-networkd[338]: Enumeration completed
Feb 03 21:42:58 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 03 21:42:58 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 21:42:58 yurius kernel: audit: type=1130 audit(1580758978.423:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 21:42:58 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 03 21:42:58 yurius systemd-networkd[338]: enp2s0: IPv6 successfully enabled
Feb 03 21:42:58 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 03 21:42:58 yurius systemd-networkd[338]: enp2s0: Link UP
Feb 03 21:42:58 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 03 21:43:00 yurius systemd-networkd[338]: enp2s0: Gained carrier
Feb 03 21:43:00 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 03 21:43:00 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 03 21:43:02 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Feb 03 21:43:02 yurius systemd-networkd[338]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Feb 03 21:43:14 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 21:43:14 yurius kernel: audit: type=1130 audit(1580758994.066:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 21:45:34 yurius systemd[560]: Listening on GnuPG network certificate management daemon.
Feb 03 22:48:57 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 03 22:48:57 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 22:48:57 yurius kernel: audit: type=1131 audit(1580762937.079:54): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 22:49:00 yurius systemd[560]: Closed GnuPG network certificate management daemon.
Feb 03 22:49:00 yurius systemd-networkd[338]: enp2s0: DHCP lease lost
Feb 03 22:49:00 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 03 22:49:00 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 03 22:49:00 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 03 22:49:00 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 03 22:49:00 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 04 08:30:16 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 04 08:30:17 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 04 08:30:17 yurius kernel: libphy: r8169: probed
Feb 04 08:30:17 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 04 08:30:17 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 04 08:30:17 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 04 08:30:17 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 04 08:30:17 yurius systemd-networkd[336]: Enumeration completed
Feb 04 08:30:17 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 08:30:17 yurius kernel: audit: type=1130 audit(1580797817.576:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 08:30:17 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 04 08:30:17 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 04 08:30:17 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Feb 04 08:30:17 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 04 08:30:17 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 04 08:30:17 yurius systemd-networkd[336]: enp2s0: Link UP
Feb 04 08:30:19 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 04 08:30:19 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 04 08:30:19 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 04 08:30:21 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Feb 04 08:30:26 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 04 08:30:33 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 08:30:33 yurius kernel: audit: type=1130 audit(1580797833.576:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 08:32:03 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Feb 04 10:47:13 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 04 10:47:13 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 10:47:16 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Feb 04 10:47:16 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Feb 04 10:47:16 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 04 10:47:16 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 10:47:16 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 04 10:47:16 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 04 10:47:16 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 04 13:05:46 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 04 13:05:47 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 04 13:05:47 yurius kernel: libphy: r8169: probed
Feb 04 13:05:47 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 04 13:05:47 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 04 13:05:47 yurius kernel: audit: type=1130 audit(1580814347.462:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 13:05:47 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 13:05:47 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 04 13:05:47 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 04 13:05:47 yurius systemd-networkd[335]: Enumeration completed
Feb 04 13:05:47 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 04 13:05:47 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 04 13:05:47 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Feb 04 13:05:47 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 04 13:05:47 yurius systemd-networkd[335]: enp2s0: Link UP
Feb 04 13:05:47 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 04 13:05:49 yurius systemd-networkd[335]: enp2s0: Gained carrier
Feb 04 13:05:49 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 04 13:05:49 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 04 13:05:51 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Feb 04 13:05:54 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 04 13:05:57 yurius systemd[547]: Listening on GnuPG network certificate management daemon.
Feb 04 13:06:03 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 13:06:03 yurius kernel: audit: type=1130 audit(1580814363.089:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 13:51:46 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 04 13:51:47 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 04 13:51:47 yurius kernel: libphy: r8169: probed
Feb 04 13:51:47 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 04 13:51:47 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 04 13:51:47 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 04 13:51:47 yurius kernel: audit: type=1130 audit(1580817107.383:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 13:51:47 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 13:51:47 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 04 13:51:47 yurius systemd-networkd[336]: Enumeration completed
Feb 04 13:51:47 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 04 13:51:47 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 04 13:51:47 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Feb 04 13:51:47 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 04 13:51:47 yurius systemd-networkd[336]: enp2s0: Link UP
Feb 04 13:51:47 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 04 13:51:49 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 04 13:51:49 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 04 13:51:49 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 04 13:51:50 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Feb 04 13:51:51 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 04 13:52:02 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 13:52:02 yurius kernel: audit: type=1130 audit(1580817122.560:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 14:52:02 yurius systemd[567]: Listening on GnuPG network certificate management daemon.
Feb 04 22:28:41 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 04 22:28:41 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 22:28:41 yurius systemd[567]: Closed GnuPG network certificate management daemon.
Feb 04 22:28:41 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Feb 04 22:28:41 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 04 22:28:41 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 04 22:28:41 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 04 22:28:41 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 04 22:28:41 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 05 08:30:07 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 05 08:30:08 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 05 08:30:08 yurius kernel: libphy: r8169: probed
Feb 05 08:30:08 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 05 08:30:08 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 05 08:30:08 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 05 08:30:08 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 05 08:30:08 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 08:30:08 yurius systemd-networkd[336]: Enumeration completed
Feb 05 08:30:08 yurius kernel: audit: type=1130 audit(1580884208.537:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 08:30:08 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 05 08:30:08 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 05 08:30:08 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Feb 05 08:30:08 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 05 08:30:08 yurius systemd-networkd[336]: enp2s0: Link UP
Feb 05 08:30:08 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 05 08:30:10 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 05 08:30:10 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 05 08:30:10 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 05 08:30:12 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Feb 05 08:30:16 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.5/24 via 192.168.1.1
Feb 05 08:30:24 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 08:30:24 yurius kernel: audit: type=1130 audit(1580884224.290:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 08:30:32 yurius systemd[563]: Listening on GnuPG network certificate management daemon.
Feb 05 08:32:11 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 08:32:11 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 05 08:32:11 yurius systemd[563]: Closed GnuPG network certificate management daemon.
Feb 05 08:32:12 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Feb 05 08:32:12 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 05 08:32:12 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 08:32:12 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Feb 05 08:32:12 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Feb 05 08:32:12 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 05 08:32:28 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 05 08:32:29 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 05 08:32:29 yurius kernel: libphy: r8169: probed
Feb 05 08:32:29 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 05 08:32:29 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 05 08:32:29 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 05 08:32:29 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 05 08:32:29 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 05 08:32:29 yurius systemd-networkd[336]: Enumeration completed
Feb 05 08:32:29 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 05 08:32:29 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 05 08:32:29 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Feb 05 08:32:29 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 05 08:32:29 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 08:32:29 yurius kernel: audit: type=1130 audit(1580884349.373:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 08:32:29 yurius systemd-networkd[336]: enp2s0: Link UP
Feb 05 08:32:29 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 05 08:32:31 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 05 08:32:31 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 05 08:32:31 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 05 08:32:32 yurius systemd[543]: Listening on GnuPG network certificate management daemon.
Feb 05 08:32:33 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Feb 05 08:32:34 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.5/24 via 192.168.1.1
Feb 05 08:32:45 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 08:32:45 yurius kernel: audit: type=1130 audit(1580884365.126:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 15:29:28 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 05 15:29:28 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 15:29:28 yurius kernel: audit: type=1131 audit(1580909368.219:97): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 15:29:28 yurius systemd[543]: Closed GnuPG network certificate management daemon.
Feb 05 15:29:28 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Feb 05 15:29:28 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 05 15:29:28 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 15:29:28 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Feb 05 15:29:28 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Feb 05 15:29:28 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 05 15:29:48 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 05 15:29:49 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 05 15:29:49 yurius kernel: libphy: r8169: probed
Feb 05 15:29:49 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 05 15:29:49 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 05 15:29:49 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 05 15:29:49 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 05 15:29:49 yurius systemd-networkd[334]: Enumeration completed
Feb 05 15:29:49 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 15:29:49 yurius kernel: audit: type=1130 audit(1580909389.377:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 15:29:49 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 05 15:29:49 yurius systemd-networkd[334]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 05 15:29:49 yurius systemd-networkd[334]: enp2s0: IPv6 successfully enabled
Feb 05 15:29:49 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 05 15:29:49 yurius systemd-networkd[334]: enp2s0: Link UP
Feb 05 15:29:49 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 05 15:29:51 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 05 15:29:51 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 05 15:29:51 yurius systemd-networkd[334]: enp2s0: Gained carrier
Feb 05 15:29:53 yurius systemd-networkd[334]: enp2s0: Gained IPv6LL
Feb 05 15:29:53 yurius systemd-networkd[334]: enp2s0: DHCPv4 address 192.168.1.5/24 via 192.168.1.1
Feb 05 15:30:05 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 15:30:05 yurius kernel: audit: type=1130 audit(1580909405.167:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 15:33:38 yurius systemd[562]: Listening on GnuPG network certificate management daemon.
Feb 05 15:54:49 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 15:54:49 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 05 15:54:52 yurius systemd[562]: Closed GnuPG network certificate management daemon.
Feb 05 15:54:52 yurius systemd-networkd[334]: enp2s0: DHCP lease lost
Feb 05 15:54:52 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 05 15:54:52 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 15:54:52 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 05 15:54:52 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 05 15:54:52 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 05 15:55:11 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 05 15:55:12 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 05 15:55:12 yurius kernel: libphy: r8169: probed
Feb 05 15:55:12 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 05 15:55:12 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 05 15:55:12 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 05 15:55:12 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 05 15:55:12 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 05 15:55:12 yurius systemd-networkd[340]: Enumeration completed
Feb 05 15:55:12 yurius systemd-networkd[340]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 05 15:55:12 yurius systemd-networkd[340]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 05 15:55:12 yurius systemd-networkd[340]: enp2s0: IPv6 successfully enabled
Feb 05 15:55:12 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 05 15:55:12 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 15:55:12 yurius kernel: audit: type=1130 audit(1580910912.451:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 15:55:12 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 05 15:55:12 yurius systemd-networkd[340]: enp2s0: Link UP
Feb 05 15:55:14 yurius systemd-networkd[340]: enp2s0: Gained carrier
Feb 05 15:55:14 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 05 15:55:14 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 05 15:55:15 yurius systemd-networkd[340]: enp2s0: Gained IPv6LL
Feb 05 15:55:16 yurius systemd[538]: Listening on GnuPG network certificate management daemon.
Feb 05 15:55:17 yurius systemd-networkd[340]: enp2s0: DHCPv4 address 192.168.1.5/24 via 192.168.1.1
Feb 05 15:55:27 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 15:55:27 yurius kernel: audit: type=1130 audit(1580910927.834:38): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 16:00:03 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 05 16:00:03 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 16:00:06 yurius systemd[538]: Closed GnuPG network certificate management daemon.
Feb 05 16:00:06 yurius systemd-networkd[340]: enp2s0: DHCP lease lost
Feb 05 16:00:06 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 05 16:00:06 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 16:00:06 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 05 16:00:06 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 05 16:00:06 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 05 16:00:26 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 05 16:00:27 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 05 16:00:27 yurius kernel: libphy: r8169: probed
Feb 05 16:00:27 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 05 16:00:27 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 05 16:00:27 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 05 16:00:27 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 05 16:00:27 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 05 16:00:27 yurius systemd-networkd[335]: Enumeration completed
Feb 05 16:00:27 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 05 16:00:27 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 16:00:27 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 05 16:00:27 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Feb 05 16:00:27 yurius kernel: audit: type=1130 audit(1580911227.411:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 16:00:27 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 05 16:00:27 yurius systemd-networkd[335]: enp2s0: Link UP
Feb 05 16:00:27 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 05 16:00:29 yurius systemd-networkd[335]: enp2s0: Gained carrier
Feb 05 16:00:29 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 05 16:00:29 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 05 16:00:31 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Feb 05 16:00:32 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.5/24 via 192.168.1.1
Feb 05 16:00:43 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 16:00:43 yurius kernel: audit: type=1130 audit(1580911243.071:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 16:00:59 yurius systemd[562]: Listening on GnuPG network certificate management daemon.
Feb 05 16:11:05 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 05 16:11:05 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 16:11:08 yurius systemd[562]: Closed GnuPG network certificate management daemon.
Feb 05 16:11:08 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Feb 05 16:11:08 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 05 16:11:08 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 16:11:08 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 05 16:11:08 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 05 16:11:08 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 05 16:58:10 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 05 16:58:11 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 05 16:58:11 yurius kernel: libphy: r8169: probed
Feb 05 16:58:11 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 05 16:58:11 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 05 16:58:11 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 05 16:58:11 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 05 16:58:11 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 05 16:58:11 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 16:58:11 yurius systemd-networkd[335]: Enumeration completed
Feb 05 16:58:11 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 05 16:58:11 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 05 16:58:11 yurius kernel: audit: type=1130 audit(1580914691.393:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 16:58:11 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Feb 05 16:58:11 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 05 16:58:11 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 05 16:58:11 yurius systemd-networkd[335]: enp2s0: Link UP
Feb 05 16:58:13 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 05 16:58:13 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 05 16:58:13 yurius systemd-networkd[335]: enp2s0: Gained carrier
Feb 05 16:58:15 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Feb 05 16:58:16 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Feb 05 16:58:27 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 16:58:27 yurius kernel: audit: type=1130 audit(1580914707.289:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 16:59:05 yurius systemd[562]: Listening on GnuPG network certificate management daemon.
Feb 05 22:31:31 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 22:31:31 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 05 22:31:31 yurius kernel: audit: type=1131 audit(1580934691.119:138): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 22:31:34 yurius systemd[562]: Closed GnuPG network certificate management daemon.
Feb 05 22:31:34 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Feb 05 22:31:34 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 05 22:31:34 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 05 22:31:34 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 05 22:31:34 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 05 22:31:34 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 06 07:30:10 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 06 07:30:11 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 06 07:30:11 yurius kernel: libphy: r8169: probed
Feb 06 07:30:11 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 06 07:30:11 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 06 07:30:11 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 06 07:30:11 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 06 07:30:11 yurius systemd-networkd[340]: Enumeration completed
Feb 06 07:30:11 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 06 07:30:11 yurius kernel: audit: type=1130 audit(1580967011.509:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 06 07:30:11 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 06 07:30:11 yurius systemd-networkd[340]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 06 07:30:11 yurius systemd-networkd[340]: enp2s0: IPv6 successfully enabled
Feb 06 07:30:11 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 06 07:30:11 yurius systemd-networkd[340]: enp2s0: Link UP
Feb 06 07:30:11 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 06 07:30:13 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 06 07:30:13 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 06 07:30:13 yurius systemd-networkd[340]: enp2s0: Gained carrier
Feb 06 07:30:14 yurius systemd-networkd[340]: enp2s0: Gained IPv6LL
Feb 06 07:30:15 yurius systemd[541]: Listening on GnuPG network certificate management daemon.
Feb 06 07:30:17 yurius systemd-networkd[340]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Feb 06 07:30:26 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 06 07:30:26 yurius kernel: audit: type=1130 audit(1580967026.936:45): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 06 12:45:09 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 06 12:45:09 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 06 12:45:12 yurius systemd[541]: Closed GnuPG network certificate management daemon.
Feb 06 12:45:12 yurius systemd-networkd[340]: enp2s0: DHCP lease lost
Feb 06 12:45:12 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 06 12:45:12 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 06 12:45:12 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 06 12:45:12 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 06 12:45:12 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 06 13:38:40 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 06 13:38:41 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 06 13:38:41 yurius kernel: libphy: r8169: probed
Feb 06 13:38:41 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 06 13:38:41 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 06 13:38:41 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 06 13:38:41 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 06 13:38:41 yurius systemd-networkd[334]: Enumeration completed
Feb 06 13:38:41 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 06 13:38:41 yurius kernel: audit: type=1130 audit(1580989121.477:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 06 13:38:41 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 06 13:38:41 yurius systemd-networkd[334]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 06 13:38:41 yurius systemd-networkd[334]: enp2s0: IPv6 successfully enabled
Feb 06 13:38:41 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 06 13:38:41 yurius systemd-networkd[334]: enp2s0: Link UP
Feb 06 13:38:41 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 06 13:38:43 yurius systemd-networkd[334]: enp2s0: Gained carrier
Feb 06 13:38:43 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 06 13:38:43 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 06 13:38:45 yurius systemd-networkd[334]: enp2s0: Gained IPv6LL
Feb 06 13:39:01 yurius systemd-networkd[334]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 06 13:39:01 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 06 13:39:01 yurius kernel: audit: type=1130 audit(1580989141.084:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 06 13:39:14 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Feb 06 22:13:23 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 06 22:13:23 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 06 22:13:23 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Feb 06 22:13:23 yurius systemd-networkd[334]: enp2s0: DHCP lease lost
Feb 06 22:13:23 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 06 22:13:23 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 06 22:13:23 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 06 22:13:23 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 06 22:13:23 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 07 07:33:47 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 07 07:33:48 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 07 07:33:48 yurius kernel: libphy: r8169: probed
Feb 07 07:33:48 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 07 07:33:48 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 07 07:33:48 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 07 07:33:48 yurius kernel: audit: type=1130 audit(1581053628.762:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 07 07:33:48 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 07 07:33:48 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 07 07:33:48 yurius systemd-networkd[337]: Enumeration completed
Feb 07 07:33:48 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 07 07:33:48 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 07 07:33:48 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 07 07:33:48 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 07 07:33:48 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 07 07:33:48 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 07 07:33:51 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 07 07:33:51 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 07 07:33:51 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 07 07:33:52 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 07 07:33:53 yurius systemd[542]: Listening on GnuPG network certificate management daemon.
Feb 07 07:33:58 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 07 07:34:04 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 07 07:34:04 yurius kernel: audit: type=1130 audit(1581053644.425:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 07 11:38:54 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 07 11:38:54 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 07 11:38:54 yurius systemd[542]: Closed GnuPG network certificate management daemon.
Feb 07 11:38:54 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 07 11:38:54 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 07 11:38:54 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 07 11:38:54 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 07 11:38:54 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 07 11:38:54 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 07 13:29:35 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 07 13:29:36 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 07 13:29:36 yurius kernel: libphy: r8169: probed
Feb 07 13:29:36 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 07 13:29:36 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 07 13:29:36 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 07 13:29:36 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 07 13:29:36 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 07 13:29:36 yurius systemd-networkd[337]: Enumeration completed
Feb 07 13:29:36 yurius kernel: audit: type=1130 audit(1581074976.756:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 07 13:29:36 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 07 13:29:36 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 07 13:29:36 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 07 13:29:36 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 07 13:29:37 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 07 13:29:37 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 07 13:29:38 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 07 13:29:38 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 07 13:29:38 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 07 13:29:40 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 07 13:29:43 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Feb 07 13:29:52 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 07 13:29:52 yurius kernel: audit: type=1130 audit(1581074992.492:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 07 13:37:24 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Feb 07 22:43:44 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 07 22:43:44 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 07 22:43:44 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Feb 07 22:43:44 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 07 22:43:44 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 07 22:43:44 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 07 22:43:44 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 07 22:43:44 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 07 22:43:44 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 08 07:10:56 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 08 07:10:57 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 08 07:10:57 yurius kernel: libphy: r8169: probed
Feb 08 07:10:57 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 08 07:10:57 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 08 07:10:57 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 08 07:10:57 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 08 07:10:57 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 08 07:10:57 yurius systemd-networkd[336]: Enumeration completed
Feb 08 07:10:57 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 08 07:10:57 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 08 07:10:57 yurius kernel: audit: type=1130 audit(1581138657.845:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 08 07:10:57 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 08 07:10:57 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Feb 08 07:10:57 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 08 07:10:58 yurius systemd-networkd[336]: enp2s0: Link UP
Feb 08 07:10:58 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 08 07:11:00 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 08 07:11:00 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 08 07:11:00 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 08 07:11:01 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Feb 08 07:11:03 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 08 07:11:13 yurius kernel: audit: type=1130 audit(1581138673.979:27): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 08 07:11:13 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 08 07:11:13 yurius systemd[538]: Listening on GnuPG network certificate management daemon.
Feb 08 17:14:14 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 08 17:14:14 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 08 17:14:14 yurius systemd[538]: Closed GnuPG network certificate management daemon.
Feb 08 17:14:14 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Feb 08 17:14:14 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 08 17:14:14 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 08 17:14:14 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Feb 08 17:14:14 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Feb 08 17:14:14 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 08 17:14:30 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 08 17:14:31 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 08 17:14:31 yurius kernel: libphy: r8169: probed
Feb 08 17:14:31 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 08 17:14:31 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 08 17:14:31 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 08 17:14:31 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 08 17:14:31 yurius systemd-networkd[334]: Enumeration completed
Feb 08 17:14:31 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 08 17:14:31 yurius kernel: audit: type=1130 audit(1581174871.733:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 08 17:14:31 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 08 17:14:31 yurius systemd-networkd[334]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 08 17:14:31 yurius systemd-networkd[334]: enp2s0: IPv6 successfully enabled
Feb 08 17:14:31 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 08 17:14:31 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 08 17:14:31 yurius systemd-networkd[334]: enp2s0: Link UP
Feb 08 17:14:33 yurius systemd-networkd[334]: enp2s0: Gained carrier
Feb 08 17:14:33 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 08 17:14:33 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 08 17:14:34 yurius systemd-networkd[334]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 08 17:14:34 yurius systemd-networkd[334]: enp2s0: Gained IPv6LL
Feb 08 17:14:37 yurius systemd[544]: Listening on GnuPG network certificate management daemon.
Feb 08 17:14:46 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 08 17:14:46 yurius kernel: audit: type=1130 audit(1581174886.837:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 08 22:37:37 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 08 22:37:37 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 08 22:37:37 yurius systemd[544]: Closed GnuPG network certificate management daemon.
Feb 08 22:37:37 yurius systemd-networkd[334]: enp2s0: DHCP lease lost
Feb 08 22:37:37 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 08 22:37:37 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 08 22:37:37 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 08 22:37:37 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 08 22:37:37 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 09 08:07:42 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 09 08:07:43 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 09 08:07:43 yurius kernel: libphy: r8169: probed
Feb 09 08:07:43 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 09 08:07:43 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 09 08:07:43 yurius systemd-networkd[333]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 09 08:07:43 yurius systemd-networkd[333]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 09 08:07:43 yurius systemd-networkd[333]: Enumeration completed
Feb 09 08:07:43 yurius kernel: audit: type=1130 audit(1581228463.833:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:07:43 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:07:43 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 09 08:07:43 yurius systemd-networkd[333]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 09 08:07:43 yurius systemd-networkd[333]: enp2s0: IPv6 successfully enabled
Feb 09 08:07:43 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 09 08:07:44 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 09 08:07:44 yurius systemd-networkd[333]: enp2s0: Link UP
Feb 09 08:07:45 yurius systemd-networkd[333]: enp2s0: Gained carrier
Feb 09 08:07:45 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 09 08:07:45 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 09 08:07:46 yurius systemd-networkd[333]: enp2s0: Gained IPv6LL
Feb 09 08:07:47 yurius systemd-networkd[333]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 09 08:07:58 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:07:58 yurius kernel: audit: type=1130 audit(1581228478.756:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:12:23 yurius systemd[555]: Listening on GnuPG network certificate management daemon.
Feb 09 08:22:00 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 09 08:22:00 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:22:00 yurius systemd[555]: Closed GnuPG network certificate management daemon.
Feb 09 08:22:00 yurius systemd-networkd[333]: enp2s0: DHCP lease lost
Feb 09 08:22:00 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 09 08:22:00 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:22:00 yurius kernel: audit: type=1131 audit(1581229320.806:77): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:22:00 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Feb 09 08:22:00 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Feb 09 08:22:00 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 09 08:22:17 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 09 08:22:18 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 09 08:22:18 yurius kernel: libphy: r8169: probed
Feb 09 08:22:18 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 09 08:22:18 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 09 08:22:18 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 09 08:22:18 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 09 08:22:18 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 09 08:22:18 yurius systemd-networkd[337]: Enumeration completed
Feb 09 08:22:18 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 09 08:22:18 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 09 08:22:18 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:22:18 yurius kernel: audit: type=1130 audit(1581229338.740:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:22:18 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 09 08:22:18 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 09 08:22:18 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 09 08:22:18 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 09 08:22:20 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 09 08:22:20 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 09 08:22:20 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 09 08:22:22 yurius systemd[544]: Listening on GnuPG network certificate management daemon.
Feb 09 08:22:22 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 09 08:22:22 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 09 08:22:34 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:22:34 yurius kernel: audit: type=1130 audit(1581229354.676:43): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:52:43 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:52:43 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 09 08:52:44 yurius systemd[544]: Closed GnuPG network certificate management daemon.
Feb 09 08:52:44 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 09 08:52:44 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 09 08:52:44 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:52:44 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Feb 09 08:52:44 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Feb 09 08:52:44 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 09 08:53:01 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 09 08:53:07 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 09 08:53:07 yurius kernel: libphy: r8169: probed
Feb 09 08:53:07 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 09 08:53:07 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 09 08:53:07 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 09 08:53:07 yurius kernel: audit: type=1130 audit(1581231182.806:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:53:07 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 09 08:53:07 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 09 08:53:07 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 09 08:53:07 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 09 08:53:02 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 08:53:02 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 09 08:53:02 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 09 08:53:02 yurius systemd-networkd[334]: Enumeration completed
Feb 09 08:53:02 yurius systemd-networkd[334]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 09 08:53:02 yurius systemd-networkd[334]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 09 08:53:02 yurius systemd-networkd[334]: enp2s0: IPv6 successfully enabled
Feb 09 08:53:03 yurius systemd-networkd[334]: enp2s0: Link UP
Feb 09 08:53:04 yurius systemd-networkd[334]: enp2s0: Gained carrier
Feb 09 08:53:06 yurius systemd-networkd[334]: enp2s0: Gained IPv6LL
Feb 09 08:53:06 yurius systemd-networkd[334]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 09 08:53:14 yurius systemd[538]: Listening on GnuPG network certificate management daemon.
Feb 09 08:53:18 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 14:03:33 yurius gvfsd-network[65637]: unable to create file '/run/user/1000/dconf/user': Permission denied.  dconf will not work properly.
Feb 09 14:03:33 yurius gvfsd-network[65637]: unable to create file '/run/user/1000/dconf/user': Permission denied.  dconf will not work properly.
Feb 09 14:03:33 yurius gvfsd-network[65637]: unable to create file '/run/user/1000/dconf/user': Permission denied.  dconf will not work properly.
Feb 09 14:03:33 yurius gvfsd-network[65637]: unable to create file '/run/user/1000/dconf/user': Permission denied.  dconf will not work properly.
Feb 09 14:03:33 yurius gvfsd-network[65637]: unable to create file '/run/user/1000/dconf/user': Permission denied.  dconf will not work properly.
Feb 09 14:03:33 yurius gvfsd-network[65637]: unable to create file '/run/user/1000/dconf/user': Permission denied.  dconf will not work properly.
Feb 09 16:26:34 yurius Thunar[69618]: [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f5d5dfa47c0]Protocol name not provided, cannot determine if input is local or a network protocol, buffers and access patterns cannot be configured optimally without knowing the protocol
Feb 09 16:27:04 yurius Thunar[69638]: [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f005f3c47c0]Protocol name not provided, cannot determine if input is local or a network protocol, buffers and access patterns cannot be configured optimally without knowing the protocol
Feb 09 16:29:56 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 09 16:29:56 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 16:29:59 yurius systemd[538]: Closed GnuPG network certificate management daemon.
Feb 09 16:29:59 yurius systemd-networkd[334]: enp2s0: DHCP lease lost
Feb 09 16:29:59 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 09 16:29:59 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 16:29:59 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 09 16:29:59 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 09 16:29:59 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 09 16:30:14 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 09 16:30:15 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 09 16:30:15 yurius kernel: libphy: r8169: probed
Feb 09 16:30:15 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 09 16:30:15 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 09 16:30:15 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 09 16:30:15 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 09 16:30:15 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 09 16:30:15 yurius systemd-networkd[335]: Enumeration completed
Feb 09 16:30:15 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 09 16:30:15 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 09 16:30:15 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 16:30:15 yurius kernel: audit: type=1130 audit(1581258615.747:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 16:30:15 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Feb 09 16:30:15 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 09 16:30:15 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 09 16:30:15 yurius systemd-networkd[335]: enp2s0: Link UP
Feb 09 16:30:17 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 09 16:30:17 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 09 16:30:17 yurius systemd-networkd[335]: enp2s0: Gained carrier
Feb 09 16:30:18 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Feb 09 16:30:19 yurius systemd[542]: Listening on GnuPG network certificate management daemon.
Feb 09 16:30:19 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 09 16:30:30 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 16:30:30 yurius kernel: audit: type=1130 audit(1581258630.907:43): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 16:32:16 yurius Thunar[1392]: [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f35bba2c7c0]Protocol name not provided, cannot determine if input is local or a network protocol, buffers and access patterns cannot be configured optimally without knowing the protocol
Feb 09 23:52:28 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 23:52:28 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 09 23:52:28 yurius systemd[542]: Closed GnuPG network certificate management daemon.
Feb 09 23:52:28 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Feb 09 23:52:28 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 09 23:52:28 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 09 23:52:28 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 09 23:52:28 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 09 23:52:28 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 10 07:33:52 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 10 07:33:53 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 10 07:33:53 yurius kernel: libphy: r8169: probed
Feb 10 07:33:53 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 10 07:33:53 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 10 07:33:53 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 10 07:33:53 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 10 07:33:53 yurius systemd-networkd[337]: Enumeration completed
Feb 10 07:33:53 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 07:33:53 yurius kernel: audit: type=1130 audit(1581312833.955:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 07:33:53 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 10 07:33:53 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 10 07:33:54 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 10 07:33:54 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 10 07:33:54 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 10 07:33:54 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 10 07:33:55 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 10 07:33:55 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 10 07:33:55 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 10 07:33:57 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 10 07:34:10 yurius systemd[543]: Listening on GnuPG network certificate management daemon.
Feb 10 07:34:10 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 10 07:34:10 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 07:34:10 yurius kernel: audit: type=1130 audit(1581312850.722:32): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 08:12:47 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 08:12:47 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 10 08:12:47 yurius systemd[543]: Closed GnuPG network certificate management daemon.
Feb 10 08:12:48 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 10 08:12:48 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 10 08:12:48 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 08:12:48 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Feb 10 08:12:48 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Feb 10 08:12:48 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 10 08:13:08 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 10 08:13:09 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 10 08:13:09 yurius kernel: libphy: r8169: probed
Feb 10 08:13:09 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 10 08:13:09 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 10 08:13:09 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 10 08:13:09 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 10 08:13:09 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 08:13:09 yurius kernel: audit: type=1130 audit(1581315189.790:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 08:13:09 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 10 08:13:09 yurius systemd-networkd[334]: Enumeration completed
Feb 10 08:13:09 yurius systemd-networkd[334]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 10 08:13:09 yurius systemd-networkd[334]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 10 08:13:09 yurius systemd-networkd[334]: enp2s0: IPv6 successfully enabled
Feb 10 08:13:09 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 10 08:13:10 yurius systemd-networkd[334]: enp2s0: Link UP
Feb 10 08:13:10 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 10 08:13:11 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 10 08:13:11 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 10 08:13:11 yurius systemd-networkd[334]: enp2s0: Gained carrier
Feb 10 08:13:13 yurius systemd-networkd[334]: enp2s0: Gained IPv6LL
Feb 10 08:13:14 yurius systemd-networkd[334]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 10 08:13:25 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 08:13:25 yurius kernel: audit: type=1130 audit(1581315205.313:23): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 08:15:01 yurius systemd[562]: Listening on GnuPG network certificate management daemon.
Feb 10 08:25:55 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 10 08:25:56 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 10 08:25:56 yurius kernel: libphy: r8169: probed
Feb 10 08:25:56 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 10 08:25:56 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 10 08:25:56 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 10 08:25:56 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 10 08:25:56 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 10 08:25:56 yurius systemd-networkd[337]: Enumeration completed
Feb 10 08:25:56 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 10 08:25:56 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 10 08:25:56 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 10 08:25:56 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 10 08:25:56 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 08:25:56 yurius kernel: audit: type=1130 audit(1581315956.797:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 08:25:56 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 10 08:25:56 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 10 08:25:58 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 10 08:25:58 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 10 08:25:58 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 10 08:25:59 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 10 08:26:00 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 10 08:26:02 yurius systemd[541]: Listening on GnuPG network certificate management daemon.
Feb 10 08:26:11 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 08:26:11 yurius kernel: audit: type=1130 audit(1581315971.577:40): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 09:59:21 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 09:59:21 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 10 09:59:22 yurius systemd[541]: Closed GnuPG network certificate management daemon.
Feb 10 09:59:22 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 10 09:59:22 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 10 09:59:22 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 09:59:22 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 10 09:59:22 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 10 09:59:22 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 10 11:45:16 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 10 11:45:17 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 10 11:45:17 yurius kernel: libphy: r8169: probed
Feb 10 11:45:17 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 10 11:45:17 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 10 11:45:17 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 10 11:45:17 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 10 11:45:17 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 10 11:45:17 yurius systemd-networkd[334]: Enumeration completed
Feb 10 11:45:17 yurius systemd-networkd[334]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 10 11:45:17 yurius systemd-networkd[334]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 10 11:45:17 yurius systemd-networkd[334]: enp2s0: IPv6 successfully enabled
Feb 10 11:45:17 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 10 11:45:17 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 11:45:17 yurius kernel: audit: type=1130 audit(1581327917.807:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 11:45:17 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 10 11:45:17 yurius systemd-networkd[334]: enp2s0: Link UP
Feb 10 11:45:20 yurius systemd-networkd[334]: enp2s0: Gained carrier
Feb 10 11:45:20 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 10 11:45:20 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 10 11:45:21 yurius systemd-networkd[334]: enp2s0: Gained IPv6LL
Feb 10 11:45:28 yurius systemd[537]: Listening on GnuPG network certificate management daemon.
Feb 10 11:45:35 yurius systemd-networkd[334]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 10 11:45:35 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 11:45:35 yurius kernel: audit: type=1130 audit(1581327935.357:40): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 17:12:03 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 10 17:12:03 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 17:12:03 yurius systemd[537]: Closed GnuPG network certificate management daemon.
Feb 10 17:12:03 yurius systemd-networkd[334]: enp2s0: DHCP lease lost
Feb 10 17:12:03 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 10 17:12:03 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 17:12:03 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Feb 10 17:12:03 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Feb 10 17:12:03 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 10 17:12:22 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 10 17:12:23 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 10 17:12:23 yurius kernel: libphy: r8169: probed
Feb 10 17:12:23 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 10 17:12:23 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 10 17:12:23 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 10 17:12:23 yurius kernel: audit: type=1130 audit(1581347543.730:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 17:12:23 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 17:12:23 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 10 17:12:23 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 10 17:12:23 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 10 17:12:23 yurius systemd-networkd[335]: Enumeration completed
Feb 10 17:12:23 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 10 17:12:23 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 10 17:12:23 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Feb 10 17:12:23 yurius systemd-networkd[335]: enp2s0: Link UP
Feb 10 17:12:23 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 10 17:12:25 yurius systemd-networkd[335]: enp2s0: Gained carrier
Feb 10 17:12:25 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 10 17:12:25 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 10 17:12:27 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 10 17:12:27 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Feb 10 17:12:39 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 17:12:39 yurius kernel: audit: type=1130 audit(1581347559.236:20): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 17:16:29 yurius systemd[558]: Listening on GnuPG network certificate management daemon.
Feb 10 23:12:26 yurius kernel: audit: type=1131 audit(1581369146.862:82): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 23:12:26 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 23:12:26 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 10 23:12:29 yurius systemd[558]: Closed GnuPG network certificate management daemon.
Feb 10 23:12:29 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Feb 10 23:12:29 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 10 23:12:29 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 10 23:12:29 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 10 23:12:29 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 10 23:12:29 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 11 07:34:37 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 11 07:34:38 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 11 07:34:38 yurius kernel: libphy: r8169: probed
Feb 11 07:34:38 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 11 07:34:38 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 11 07:34:38 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 11 07:34:38 yurius kernel: audit: type=1130 audit(1581399278.826:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 07:34:38 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 11 07:34:38 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 07:34:38 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 11 07:34:38 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 11 07:34:38 yurius systemd-networkd[334]: Enumeration completed
Feb 11 07:34:38 yurius systemd-networkd[334]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 11 07:34:38 yurius systemd-networkd[334]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 11 07:34:38 yurius systemd-networkd[334]: enp2s0: IPv6 successfully enabled
Feb 11 07:34:38 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 11 07:34:38 yurius systemd-networkd[334]: enp2s0: Link UP
Feb 11 07:34:40 yurius systemd-networkd[334]: enp2s0: Gained carrier
Feb 11 07:34:40 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 11 07:34:40 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 11 07:34:42 yurius systemd-networkd[334]: enp2s0: Gained IPv6LL
Feb 11 07:34:46 yurius systemd-networkd[334]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 11 07:34:54 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 07:34:54 yurius kernel: audit: type=1130 audit(1581399294.310:23): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 07:37:48 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Feb 11 12:20:41 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 11 12:20:41 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 11 12:20:41 yurius kernel: libphy: r8169: probed
Feb 11 12:20:41 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 11 12:20:41 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 11 12:20:41 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 11 12:20:41 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 11 12:20:41 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 11 12:20:41 yurius systemd-networkd[337]: Enumeration completed
Feb 11 12:20:41 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 11 12:20:41 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 11 12:20:41 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 12:20:41 yurius kernel: audit: type=1130 audit(1581416441.900:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 12:20:41 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 11 12:20:42 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 11 12:20:42 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 11 12:20:42 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 11 12:20:43 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 11 12:20:43 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 11 12:20:43 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 11 12:20:45 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 11 12:20:49 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 11 12:20:57 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 12:20:57 yurius kernel: audit: type=1130 audit(1581416457.313:23): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 12:22:04 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Feb 11 15:09:52 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 11 15:09:52 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 15:09:55 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Feb 11 15:09:55 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 11 15:09:55 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 11 15:09:55 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 15:09:55 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 11 15:09:55 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 11 15:09:55 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 11 15:44:25 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 11 15:44:25 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 11 15:44:25 yurius kernel: libphy: r8169: probed
Feb 11 15:44:25 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 11 15:44:25 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 11 15:44:25 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 11 15:44:26 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 11 15:44:26 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 11 15:44:26 yurius systemd-networkd[338]: Enumeration completed
Feb 11 15:44:26 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 11 15:44:26 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 11 15:44:26 yurius kernel: audit: type=1130 audit(1581428666.047:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 15:44:26 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 15:44:26 yurius systemd-networkd[338]: enp2s0: IPv6 successfully enabled
Feb 11 15:44:26 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 11 15:44:26 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 11 15:44:26 yurius systemd-networkd[338]: enp2s0: Link UP
Feb 11 15:44:27 yurius systemd-networkd[338]: enp2s0: Gained carrier
Feb 11 15:44:27 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 11 15:44:27 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 11 15:44:29 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Feb 11 15:44:30 yurius systemd-networkd[338]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 11 15:44:37 yurius systemd[544]: Listening on GnuPG network certificate management daemon.
Feb 11 15:44:41 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 20:37:23 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 20:37:23 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 11 20:37:23 yurius systemd[544]: Closed GnuPG network certificate management daemon.
Feb 11 20:37:23 yurius systemd-networkd[338]: enp2s0: DHCP lease lost
Feb 11 20:37:23 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 11 20:37:23 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 20:37:23 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Feb 11 20:37:23 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Feb 11 20:37:23 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 11 20:37:43 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 11 20:37:43 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 11 20:37:43 yurius kernel: libphy: r8169: probed
Feb 11 20:37:43 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 11 20:37:43 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 11 20:37:44 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 11 20:37:44 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 11 20:37:44 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 11 20:37:44 yurius systemd-networkd[337]: Enumeration completed
Feb 11 20:37:44 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 11 20:37:44 yurius kernel: audit: type=1130 audit(1581446264.095:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 20:37:44 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 20:37:44 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 11 20:37:44 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 11 20:37:44 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 11 20:37:44 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 11 20:37:44 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 11 20:37:45 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 11 20:37:45 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 11 20:37:45 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 11 20:37:47 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 11 20:37:47 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 11 20:37:59 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 20:37:59 yurius kernel: audit: type=1130 audit(1581446279.632:20): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 20:38:14 yurius systemd[558]: Listening on GnuPG network certificate management daemon.
Feb 11 23:09:57 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 11 23:09:57 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 23:09:57 yurius systemd[558]: Closed GnuPG network certificate management daemon.
Feb 11 23:09:57 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 11 23:09:57 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 11 23:09:57 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 11 23:09:57 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 11 23:09:57 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 11 23:09:57 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 12 08:24:09 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 12 08:24:11 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 12 08:24:11 yurius kernel: libphy: r8169: probed
Feb 12 08:24:11 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 12 08:24:11 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 12 08:24:12 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 12 08:24:12 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 12 08:24:12 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 12 08:24:12 yurius systemd-networkd[337]: Enumeration completed
Feb 12 08:24:12 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 12 08:24:12 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 12 08:24:12 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 12 08:24:12 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 12 08:24:12 yurius kernel: audit: type=1130 audit(1581488652.168:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 08:24:12 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 08:24:12 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 12 08:24:12 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 12 08:24:13 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 12 08:24:13 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 12 08:24:13 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 12 08:24:15 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 12 08:24:16 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 12 08:24:27 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 08:24:27 yurius kernel: audit: type=1130 audit(1581488667.098:20): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 08:28:07 yurius systemd[559]: Listening on GnuPG network certificate management daemon.
Feb 12 08:30:50 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 08:30:50 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 12 08:30:50 yurius kernel: audit: type=1131 audit(1581489050.888:65): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 08:30:53 yurius systemd[559]: Closed GnuPG network certificate management daemon.
Feb 12 08:30:53 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 12 08:30:53 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 12 08:30:53 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 08:30:53 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Feb 12 08:30:53 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Feb 12 08:30:53 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 12 08:31:12 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 12 08:31:12 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 12 08:31:12 yurius kernel: libphy: r8169: probed
Feb 12 08:31:12 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 12 08:31:12 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 12 08:31:13 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 12 08:31:13 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 12 08:31:13 yurius systemd-networkd[340]: Enumeration completed
Feb 12 08:31:13 yurius kernel: audit: type=1130 audit(1581489073.015:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 08:31:13 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 08:31:13 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 12 08:31:13 yurius systemd-networkd[340]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 12 08:31:13 yurius systemd-networkd[340]: enp2s0: IPv6 successfully enabled
Feb 12 08:31:13 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 12 08:31:13 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 12 08:31:13 yurius systemd-networkd[340]: enp2s0: Link UP
Feb 12 08:31:14 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 12 08:31:14 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 12 08:31:14 yurius systemd-networkd[340]: enp2s0: Gained carrier
Feb 12 08:31:16 yurius systemd-networkd[340]: enp2s0: Gained IPv6LL
Feb 12 08:31:16 yurius systemd-networkd[340]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 12 08:31:17 yurius systemd[544]: Listening on GnuPG network certificate management daemon.
Feb 12 08:31:28 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 08:31:28 yurius kernel: audit: type=1130 audit(1581489088.275:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 09:34:38 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 12 09:34:38 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 09:34:38 yurius kernel: audit: type=1131 audit(1581492878.505:71): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 09:34:38 yurius systemd[544]: Closed GnuPG network certificate management daemon.
Feb 12 09:34:38 yurius systemd-networkd[340]: enp2s0: DHCP lease lost
Feb 12 09:34:38 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 12 09:34:38 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 09:34:38 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 12 09:34:38 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 12 09:34:38 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 12 09:34:57 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 12 09:34:57 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 12 09:34:57 yurius kernel: libphy: r8169: probed
Feb 12 09:34:57 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 12 09:34:57 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 12 09:34:58 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 12 09:34:58 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 12 09:34:58 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 12 09:34:58 yurius systemd-networkd[337]: Enumeration completed
Feb 12 09:34:58 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 12 09:34:58 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 12 09:34:58 yurius kernel: audit: type=1130 audit(1581492898.081:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 09:34:58 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 09:34:58 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 12 09:34:58 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 12 09:34:58 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 12 09:34:58 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 12 09:34:59 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 12 09:34:59 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 12 09:34:59 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 12 09:35:01 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 12 09:35:02 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 12 09:35:13 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 09:35:13 yurius kernel: audit: type=1130 audit(1581492913.594:19): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 09:36:26 yurius systemd[559]: Listening on GnuPG network certificate management daemon.
Feb 12 14:47:04 yurius kernel: audit: type=1131 audit(1581511624.158:100): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 14:47:04 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 14:47:04 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 12 14:47:04 yurius systemd[559]: Closed GnuPG network certificate management daemon.
Feb 12 14:47:04 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 12 14:47:04 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 12 14:47:04 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 14:47:04 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 12 14:47:04 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 12 14:47:04 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 12 15:51:26 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 12 15:51:26 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 12 15:51:26 yurius kernel: libphy: r8169: probed
Feb 12 15:51:26 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 12 15:51:26 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 12 15:51:27 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 12 15:51:27 yurius systemd-networkd[341]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 12 15:51:27 yurius systemd-networkd[341]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 12 15:51:27 yurius systemd-networkd[341]: Enumeration completed
Feb 12 15:51:27 yurius systemd-networkd[341]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 12 15:51:27 yurius systemd-networkd[341]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 12 15:51:27 yurius systemd-networkd[341]: enp2s0: IPv6 successfully enabled
Feb 12 15:51:27 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 15:51:27 yurius kernel: audit: type=1130 audit(1581515487.256:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 15:51:27 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 12 15:51:27 yurius systemd-networkd[341]: enp2s0: Link UP
Feb 12 15:51:27 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 12 15:51:29 yurius systemd-networkd[341]: enp2s0: Gained carrier
Feb 12 15:51:29 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 12 15:51:29 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 12 15:51:30 yurius systemd-networkd[341]: enp2s0: Gained IPv6LL
Feb 12 15:51:34 yurius systemd-networkd[341]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Feb 12 15:51:42 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 15:51:42 yurius kernel: audit: type=1130 audit(1581515502.309:19): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 12 15:53:08 yurius systemd[557]: Listening on GnuPG network certificate management daemon.
Feb 13 00:12:20 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 13 00:12:20 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 00:12:20 yurius systemd[557]: Closed GnuPG network certificate management daemon.
Feb 13 00:12:20 yurius systemd-networkd[341]: enp2s0: DHCP lease lost
Feb 13 00:12:20 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 13 00:12:20 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 00:12:20 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 13 00:12:20 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 13 00:12:20 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 13 08:17:42 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 13 08:17:43 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 13 08:17:43 yurius kernel: libphy: r8169: probed
Feb 13 08:17:43 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 13 08:17:43 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 13 08:17:43 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 13 08:17:43 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 13 08:17:43 yurius systemd-networkd[338]: Enumeration completed
Feb 13 08:17:43 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 08:17:43 yurius kernel: audit: type=1130 audit(1581574663.271:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 08:17:43 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 13 08:17:43 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 13 08:17:43 yurius systemd-networkd[338]: enp2s0: IPv6 successfully enabled
Feb 13 08:17:43 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 13 08:17:43 yurius systemd-networkd[338]: enp2s0: Link UP
Feb 13 08:17:43 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 13 08:17:45 yurius systemd-networkd[338]: enp2s0: Gained carrier
Feb 13 08:17:45 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 13 08:17:45 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 13 08:17:46 yurius systemd-networkd[338]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Feb 13 08:17:46 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Feb 13 08:17:58 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 08:17:58 yurius kernel: audit: type=1130 audit(1581574678.817:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 08:18:05 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Feb 13 08:40:42 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 13 08:40:42 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 08:40:45 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Feb 13 08:40:45 yurius systemd-networkd[338]: enp2s0: DHCP lease lost
Feb 13 08:40:45 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 13 08:40:45 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 08:40:45 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Feb 13 08:40:45 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Feb 13 08:40:45 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 13 08:41:01 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 13 08:41:01 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 13 08:41:01 yurius kernel: libphy: r8169: probed
Feb 13 08:41:01 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 13 08:41:01 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 13 08:41:02 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 13 08:41:02 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 13 08:41:02 yurius systemd-networkd[340]: Enumeration completed
Feb 13 08:41:02 yurius kernel: audit: type=1130 audit(1581576062.072:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 08:41:02 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 08:41:02 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 13 08:41:02 yurius systemd-networkd[340]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 13 08:41:02 yurius systemd-networkd[340]: enp2s0: IPv6 successfully enabled
Feb 13 08:41:02 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 13 08:41:02 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 13 08:41:02 yurius systemd-networkd[340]: enp2s0: Link UP
Feb 13 08:41:03 yurius systemd-networkd[340]: enp2s0: Gained carrier
Feb 13 08:41:03 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 13 08:41:03 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 13 08:41:04 yurius systemd-networkd[340]: enp2s0: Gained IPv6LL
Feb 13 08:41:05 yurius systemd-networkd[340]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Feb 13 08:41:05 yurius systemd[542]: Listening on GnuPG network certificate management daemon.
Feb 13 08:41:16 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 08:41:16 yurius kernel: audit: type=1130 audit(1581576076.942:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 10:33:44 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 10:33:44 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 13 10:33:44 yurius systemd[542]: Closed GnuPG network certificate management daemon.
Feb 13 10:33:44 yurius systemd-networkd[340]: enp2s0: DHCP lease lost
Feb 13 10:33:44 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 13 10:33:44 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 10:33:44 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 13 10:33:44 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 13 10:33:44 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 13 12:31:40 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 13 12:31:41 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 13 12:31:41 yurius kernel: libphy: r8169: probed
Feb 13 12:31:41 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 13 12:31:41 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 13 12:31:41 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 13 12:31:41 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 13 12:31:41 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 13 12:31:41 yurius systemd-networkd[336]: Enumeration completed
Feb 13 12:31:41 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 13 12:31:41 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 13 12:31:41 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Feb 13 12:31:41 yurius kernel: audit: type=1130 audit(1581589901.217:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 12:31:41 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 12:31:41 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 13 12:31:41 yurius systemd-networkd[336]: enp2s0: Link UP
Feb 13 12:31:41 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 13 12:31:43 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 13 12:31:43 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 13 12:31:43 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 13 12:31:44 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Feb 13 12:31:46 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 13 12:31:56 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 12:31:56 yurius kernel: audit: type=1130 audit(1581589916.154:19): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 12:49:10 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Feb 13 23:22:59 yurius kernel: audit: type=1131 audit(1581628979.261:87): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 23:22:59 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 23:22:59 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 13 23:23:02 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Feb 13 23:23:02 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Feb 13 23:23:02 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 13 23:23:02 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 13 23:23:02 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 13 23:23:02 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 13 23:23:02 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 14 08:04:45 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 14 08:04:49 yurius kernel: audit: type=1130 audit(1581660287.287:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 14 08:04:49 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 14 08:04:49 yurius kernel: libphy: r8169: probed
Feb 14 08:04:49 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 14 08:04:49 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 14 08:04:49 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 14 08:04:49 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 14 08:04:49 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 14 08:04:49 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 14 08:04:49 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 14 08:04:47 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 14 08:04:47 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 14 08:04:47 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 14 08:04:47 yurius systemd-networkd[338]: Enumeration completed
Feb 14 08:04:47 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 14 08:04:47 yurius systemd-networkd[338]: enp2s0: IPv6 successfully enabled
Feb 14 08:04:48 yurius systemd-networkd[338]: enp2s0: Link UP
Feb 14 08:04:49 yurius systemd-networkd[338]: enp2s0: Gained carrier
Feb 14 08:04:51 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Feb 14 08:05:04 yurius systemd-networkd[338]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 14 08:05:04 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 14 08:05:04 yurius kernel: audit: type=1130 audit(1581660304.080:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 14 08:06:21 yurius systemd[561]: Listening on GnuPG network certificate management daemon.
Feb 14 09:52:05 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 14 09:52:05 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 14 09:52:05 yurius systemd[561]: Closed GnuPG network certificate management daemon.
Feb 14 09:52:05 yurius systemd-networkd[338]: enp2s0: DHCP lease lost
Feb 14 09:52:05 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 14 09:52:05 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 14 09:52:05 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 14 09:52:05 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 14 09:52:05 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 14 11:49:04 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 14 11:49:04 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 14 11:49:04 yurius kernel: libphy: r8169: probed
Feb 14 11:49:04 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 14 11:49:04 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 14 11:49:05 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 14 11:49:05 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 14 11:49:05 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 14 11:49:05 yurius systemd-networkd[337]: Enumeration completed
Feb 14 11:49:05 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 14 11:49:05 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 14 11:49:05 yurius kernel: audit: type=1130 audit(1581673745.220:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 14 11:49:05 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 14 11:49:05 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 14 11:49:05 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 14 11:49:05 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 14 11:49:05 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 14 11:49:07 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 14 11:49:07 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 14 11:49:07 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 14 11:49:08 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 14 11:49:11 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 14 11:49:20 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 14 11:49:20 yurius kernel: audit: type=1130 audit(1581673760.350:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 14 11:51:13 yurius systemd[560]: Listening on GnuPG network certificate management daemon.
Feb 14 21:53:23 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 14 21:53:23 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 14 21:53:23 yurius systemd[560]: Closed GnuPG network certificate management daemon.
Feb 14 21:53:23 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 14 21:53:23 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 14 21:53:23 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 14 21:53:23 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 14 21:53:23 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 14 21:53:23 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 15 08:54:24 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 15 08:54:24 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 15 08:54:24 yurius kernel: libphy: r8169: probed
Feb 15 08:54:24 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 15 08:54:24 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 15 08:54:25 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 15 08:54:25 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 15 08:54:25 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 15 08:54:25 yurius systemd-networkd[335]: Enumeration completed
Feb 15 08:54:25 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 15 08:54:25 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 15 08:54:25 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 15 08:54:25 yurius kernel: audit: type=1130 audit(1581749665.148:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 15 08:54:25 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Feb 15 08:54:25 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 15 08:54:25 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 15 08:54:25 yurius systemd-networkd[335]: enp2s0: Link UP
Feb 15 08:54:27 yurius systemd-networkd[335]: enp2s0: Gained carrier
Feb 15 08:54:27 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 15 08:54:27 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 15 08:54:28 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Feb 15 08:54:35 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 15 08:54:40 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 15 08:54:40 yurius kernel: audit: type=1130 audit(1581749680.248:19): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 15 08:55:07 yurius systemd[555]: Listening on GnuPG network certificate management daemon.
Feb 15 22:55:52 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 15 22:55:52 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 15 22:55:52 yurius kernel: audit: type=1131 audit(1581800152.837:140): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 15 22:55:53 yurius systemd[555]: Closed GnuPG network certificate management daemon.
Feb 15 22:55:53 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Feb 15 22:55:53 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 15 22:55:53 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 15 22:55:53 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 15 22:55:53 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 15 22:55:53 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 16 08:33:25 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 16 08:33:26 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 16 08:33:26 yurius kernel: libphy: r8169: probed
Feb 16 08:33:26 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 16 08:33:26 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 16 08:33:26 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 16 08:33:26 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 16 08:33:26 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 16 08:33:26 yurius systemd-networkd[336]: Enumeration completed
Feb 16 08:33:26 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 16 08:33:26 yurius kernel: audit: type=1130 audit(1581834806.388:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 16 08:33:26 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 16 08:33:26 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 16 08:33:26 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Feb 16 08:33:26 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 16 08:33:26 yurius systemd-networkd[336]: enp2s0: Link UP
Feb 16 08:33:26 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 16 08:33:28 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 16 08:33:28 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 16 08:33:28 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 16 08:33:29 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Feb 16 08:33:41 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 16 08:33:41 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 16 08:33:41 yurius kernel: audit: type=1130 audit(1581834821.671:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 16 08:34:25 yurius systemd[543]: Listening on GnuPG network certificate management daemon.
Feb 16 22:24:07 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 16 22:24:07 yurius kernel: audit: type=1131 audit(1581884647.257:120): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 16 22:24:07 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 16 22:24:07 yurius systemd[543]: Closed GnuPG network certificate management daemon.
Feb 16 22:24:07 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Feb 16 22:24:07 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 16 22:24:07 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 16 22:24:07 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 16 22:24:07 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 16 22:24:07 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 17 07:50:39 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 17 07:50:39 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 17 07:50:40 yurius kernel: libphy: r8169: probed
Feb 17 07:50:40 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 17 07:50:40 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 17 07:50:40 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 17 07:50:40 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 17 07:50:40 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 17 07:50:40 yurius systemd-networkd[335]: Enumeration completed
Feb 17 07:50:40 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 17 07:50:40 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 17 07:50:40 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 07:50:40 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Feb 17 07:50:40 yurius kernel: audit: type=1130 audit(1581918640.283:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 07:50:40 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 17 07:50:40 yurius systemd-networkd[335]: enp2s0: Link UP
Feb 17 07:50:40 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 17 07:50:42 yurius systemd-networkd[335]: enp2s0: Gained carrier
Feb 17 07:50:42 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 17 07:50:42 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 17 07:50:43 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Feb 17 07:50:46 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 17 07:50:55 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 07:50:55 yurius kernel: audit: type=1130 audit(1581918655.123:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 07:55:20 yurius systemd[543]: Listening on GnuPG network certificate management daemon.
Feb 17 18:30:26 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 17 18:30:26 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 18:30:29 yurius systemd[543]: Closed GnuPG network certificate management daemon.
Feb 17 18:30:29 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Feb 17 18:30:29 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 17 18:30:29 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 18:30:29 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 17 18:30:29 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 17 18:30:29 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 17 19:00:47 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 17 19:00:47 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 17 19:00:47 yurius kernel: libphy: r8169: probed
Feb 17 19:00:47 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 17 19:00:47 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 17 19:00:48 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 17 19:00:48 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 17 19:00:48 yurius systemd-networkd[336]: Enumeration completed
Feb 17 19:00:48 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 17 19:00:48 yurius kernel: audit: type=1130 audit(1581958848.224:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 19:00:48 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 19:00:48 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 17 19:00:48 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Feb 17 19:00:48 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 17 19:00:48 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 17 19:00:48 yurius systemd-networkd[336]: enp2s0: Link UP
Feb 17 19:00:50 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 17 19:00:50 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 17 19:00:50 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 17 19:00:51 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 17 19:00:51 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Feb 17 19:01:03 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 19:01:03 yurius kernel: audit: type=1130 audit(1581958863.517:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 19:01:43 yurius systemd[541]: Listening on GnuPG network certificate management daemon.
Feb 17 21:09:19 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 17 21:09:19 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 21:09:19 yurius kernel: audit: type=1131 audit(1581966559.077:70): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 21:09:22 yurius systemd[541]: Closed GnuPG network certificate management daemon.
Feb 17 21:09:22 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Feb 17 21:09:22 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 17 21:09:22 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 21:09:22 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 17 21:09:22 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 17 21:09:22 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 18 07:58:14 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 18 07:58:15 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 18 07:58:15 yurius kernel: libphy: r8169: probed
Feb 18 07:58:15 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 18 07:58:15 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 18 07:58:15 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 18 07:58:15 yurius systemd-networkd[340]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 18 07:58:15 yurius systemd-networkd[340]: Enumeration completed
Feb 18 07:58:15 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 07:58:15 yurius kernel: audit: type=1130 audit(1582005495.279:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 07:58:15 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 18 07:58:15 yurius systemd-networkd[340]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 18 07:58:15 yurius systemd-networkd[340]: enp2s0: IPv6 successfully enabled
Feb 18 07:58:15 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 18 07:58:15 yurius systemd-networkd[340]: enp2s0: Link UP
Feb 18 07:58:15 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 18 07:58:17 yurius systemd-networkd[340]: enp2s0: Gained carrier
Feb 18 07:58:17 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 18 07:58:17 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 18 07:58:18 yurius systemd-networkd[340]: enp2s0: Gained IPv6LL
Feb 18 07:58:30 yurius systemd-networkd[340]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 18 07:58:30 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 07:58:30 yurius kernel: audit: type=1130 audit(1582005510.655:19): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 07:59:31 yurius systemd[539]: Listening on GnuPG network certificate management daemon.
Feb 18 10:18:01 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 18 10:18:01 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 10:18:01 yurius kernel: audit: type=1131 audit(1582013881.822:79): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 10:18:04 yurius systemd[539]: Closed GnuPG network certificate management daemon.
Feb 18 10:18:04 yurius systemd-networkd[340]: enp2s0: DHCP lease lost
Feb 18 10:18:04 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 18 10:18:04 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 10:18:04 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 18 10:18:04 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 18 10:18:04 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 18 11:39:00 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 18 11:39:00 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 18 11:39:00 yurius kernel: libphy: r8169: probed
Feb 18 11:39:00 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 18 11:39:00 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 18 11:39:00 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 18 11:39:00 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 18 11:39:00 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 18 11:39:00 yurius systemd-networkd[337]: Enumeration completed
Feb 18 11:39:00 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 18 11:39:00 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 18 11:39:00 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 11:39:00 yurius kernel: audit: type=1130 audit(1582018740.983:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 11:39:01 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 18 11:39:01 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 18 11:39:01 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 18 11:39:01 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 18 11:39:02 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 18 11:39:02 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 18 11:39:02 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 18 11:39:04 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 18 11:39:05 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 18 11:39:06 yurius systemd[525]: Listening on GnuPG network certificate management daemon.
Feb 18 11:39:16 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 11:39:16 yurius kernel: audit: type=1130 audit(1582018756.307:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 16:31:26 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 18 16:31:26 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 16:31:29 yurius systemd[525]: Closed GnuPG network certificate management daemon.
Feb 18 16:31:29 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 18 16:31:29 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 18 16:31:29 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 16:31:29 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 18 16:31:29 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 18 16:31:29 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 18 17:33:37 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 18 17:33:38 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 18 17:33:38 yurius kernel: libphy: r8169: probed
Feb 18 17:33:38 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 18 17:33:38 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 18 17:33:38 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 18 17:33:38 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 18 17:33:38 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 18 17:33:38 yurius systemd-networkd[336]: Enumeration completed
Feb 18 17:33:38 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 18 17:33:38 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 18 17:33:38 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Feb 18 17:33:38 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 18 17:33:38 yurius kernel: audit: type=1130 audit(1582040018.312:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 17:33:38 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 17:33:38 yurius systemd-networkd[336]: enp2s0: Link UP
Feb 18 17:33:38 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 18 17:33:40 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 18 17:33:40 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 18 17:33:40 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 18 17:33:41 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Feb 18 17:33:45 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 18 17:33:53 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 17:33:53 yurius kernel: audit: type=1130 audit(1582040033.825:19): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 17:34:54 yurius systemd[537]: Listening on GnuPG network certificate management daemon.
Feb 18 21:45:14 yurius kernel: audit: type=1131 audit(1582055114.622:51): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 21:45:14 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 21:45:14 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 18 21:45:17 yurius systemd[537]: Closed GnuPG network certificate management daemon.
Feb 18 21:45:17 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Feb 18 21:45:17 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 18 21:45:17 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 18 21:45:17 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 18 21:45:17 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 18 21:45:17 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 19 07:30:21 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 19 07:30:21 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 19 07:30:21 yurius kernel: libphy: r8169: probed
Feb 19 07:30:21 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 19 07:30:21 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 19 07:30:21 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 19 07:30:21 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 19 07:30:21 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 19 07:30:22 yurius systemd-networkd[336]: Enumeration completed
Feb 19 07:30:22 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 19 07:30:22 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 19 07:30:22 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Feb 19 07:30:22 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 19 07:30:22 yurius kernel: audit: type=1130 audit(1582090222.013:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 19 07:30:22 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 19 07:30:22 yurius systemd-networkd[336]: enp2s0: Link UP
Feb 19 07:30:22 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 19 07:30:23 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 19 07:30:23 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 19 07:30:23 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 19 07:30:25 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Feb 19 07:30:29 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 19 07:30:32 yurius systemd[516]: Listening on GnuPG network certificate management daemon.
Feb 19 07:30:37 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 19 07:30:37 yurius kernel: audit: type=1130 audit(1582090237.516:38): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 19 21:39:40 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 19 21:39:40 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 19 21:39:43 yurius systemd[516]: Closed GnuPG network certificate management daemon.
Feb 19 21:39:43 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Feb 19 21:39:43 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 19 21:39:43 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 19 21:39:43 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 19 21:39:43 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 19 21:39:43 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 20 06:37:40 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 20 06:37:40 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 20 06:37:40 yurius kernel: libphy: r8169: probed
Feb 20 06:37:40 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 20 06:37:40 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 20 06:37:40 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 20 06:37:41 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 20 06:37:41 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 20 06:37:41 yurius systemd-networkd[335]: Enumeration completed
Feb 20 06:37:41 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 20 06:37:41 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 20 06:37:41 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Feb 20 06:37:41 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 20 06:37:41 yurius kernel: audit: type=1130 audit(1582173461.226:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 20 06:37:41 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 20 06:37:41 yurius systemd-networkd[335]: enp2s0: Link UP
Feb 20 06:37:41 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 20 06:37:43 yurius systemd-networkd[335]: enp2s0: Gained carrier
Feb 20 06:37:43 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 20 06:37:43 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 20 06:37:44 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Feb 20 06:37:45 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 20 06:37:54 yurius systemd[522]: Listening on GnuPG network certificate management daemon.
Feb 20 06:37:56 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 20 09:35:13 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 20 09:35:13 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 20 09:35:15 yurius systemd[522]: Closed GnuPG network certificate management daemon.
Feb 20 09:35:16 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Feb 20 09:35:16 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 20 09:35:16 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 20 09:35:16 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 20 09:35:16 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 20 09:35:16 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 20 11:04:50 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 20 11:04:50 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 20 11:04:50 yurius kernel: libphy: r8169: probed
Feb 20 11:04:50 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 20 11:04:50 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 20 11:04:50 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 20 11:04:50 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 20 11:04:50 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 20 11:04:50 yurius systemd-networkd[336]: Enumeration completed
Feb 20 11:04:50 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 20 11:04:50 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 20 11:04:50 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Feb 20 11:04:50 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 20 11:04:51 yurius kernel: audit: type=1130 audit(1582189491.017:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 20 11:04:51 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 20 11:04:51 yurius systemd-networkd[336]: enp2s0: Link UP
Feb 20 11:04:51 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 20 11:04:53 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 20 11:04:53 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 20 11:04:53 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 20 11:04:55 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Feb 20 11:04:56 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 20 11:05:07 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 20 11:05:07 yurius kernel: audit: type=1130 audit(1582189507.117:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 20 11:07:22 yurius systemd[543]: Listening on GnuPG network certificate management daemon.
Feb 20 21:23:18 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 20 21:23:18 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 20 21:23:21 yurius systemd[543]: Closed GnuPG network certificate management daemon.
Feb 20 21:23:21 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Feb 20 21:23:21 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 20 21:23:21 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 20 21:23:21 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 20 21:23:21 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 20 21:23:21 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 21 06:54:23 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 21 06:54:23 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 21 06:54:23 yurius kernel: libphy: r8169: probed
Feb 21 06:54:23 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 21 06:54:23 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 21 06:54:24 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 21 06:54:24 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 21 06:54:24 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 21 06:54:24 yurius systemd-networkd[337]: Enumeration completed
Feb 21 06:54:24 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 21 06:54:24 yurius kernel: audit: type=1130 audit(1582260864.178:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 21 06:54:24 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 21 06:54:24 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 21 06:54:24 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 21 06:54:24 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 21 06:54:24 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 21 06:54:24 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 21 06:54:25 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 21 06:54:25 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 21 06:54:25 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 21 06:54:27 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 21 06:54:37 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 21 06:54:39 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 21 06:54:39 yurius kernel: audit: type=1130 audit(1582260879.601:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 21 06:54:44 yurius systemd[542]: Listening on GnuPG network certificate management daemon.
Feb 21 07:02:07 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 21 07:02:07 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 21 07:02:07 yurius kernel: audit: type=1131 audit(1582261327.961:77): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 21 07:02:08 yurius systemd[542]: Closed GnuPG network certificate management daemon.
Feb 21 07:02:08 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 21 07:02:08 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 21 07:02:08 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 21 07:02:08 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Feb 21 07:02:08 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Feb 21 07:02:08 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 21 07:02:23 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 21 07:02:24 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 21 07:02:24 yurius kernel: libphy: r8169: probed
Feb 21 07:02:24 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 21 07:02:24 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 21 07:02:24 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 21 07:02:24 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 21 07:02:24 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 21 07:02:24 yurius systemd-networkd[335]: Enumeration completed
Feb 21 07:02:24 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 21 07:02:24 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 21 07:02:24 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Feb 21 07:02:24 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 21 07:02:24 yurius kernel: audit: type=1130 audit(1582261344.879:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 21 07:02:24 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 21 07:02:25 yurius systemd-networkd[335]: enp2s0: Link UP
Feb 21 07:02:25 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 21 07:02:26 yurius systemd-networkd[335]: enp2s0: Gained carrier
Feb 21 07:02:26 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 21 07:02:26 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 21 07:02:28 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Feb 21 07:02:28 yurius systemd[520]: Listening on GnuPG network certificate management daemon.
Feb 21 07:02:29 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 21 07:02:40 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 21 07:02:40 yurius kernel: audit: type=1130 audit(1582261360.039:38): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 21 22:28:09 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 21 22:28:09 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 21 22:28:12 yurius systemd[520]: Closed GnuPG network certificate management daemon.
Feb 21 22:28:12 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Feb 21 22:28:12 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 21 22:28:12 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 21 22:28:12 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 21 22:28:12 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 21 22:28:12 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 22 08:30:55 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 22 08:30:55 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 22 08:30:55 yurius kernel: libphy: r8169: probed
Feb 22 08:30:55 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 22 08:30:55 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 22 08:30:56 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 22 08:30:56 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 22 08:30:56 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 22 08:30:56 yurius systemd-networkd[337]: Enumeration completed
Feb 22 08:30:56 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 22 08:30:56 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 22 08:30:56 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 22 08:30:56 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 22 08:30:56 yurius kernel: audit: type=1130 audit(1582353056.174:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 08:30:56 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 08:30:56 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 22 08:30:56 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 22 08:30:57 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 22 08:30:57 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 22 08:30:57 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 22 08:30:59 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 22 08:31:02 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Feb 22 08:31:11 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 08:31:11 yurius kernel: audit: type=1130 audit(1582353071.837:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 08:31:17 yurius systemd[542]: Listening on GnuPG network certificate management daemon.
Feb 22 18:28:00 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 22 18:28:00 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 18:28:03 yurius systemd[542]: Closed GnuPG network certificate management daemon.
Feb 22 18:28:03 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 22 18:28:03 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 22 18:28:03 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 18:28:03 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 22 18:28:03 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 22 18:28:03 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 22 18:28:19 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 22 18:28:19 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 22 18:28:19 yurius kernel: libphy: r8169: probed
Feb 22 18:28:19 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 22 18:28:19 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 22 18:28:19 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 22 18:28:19 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 22 18:28:19 yurius systemd-networkd[335]: Enumeration completed
Feb 22 18:28:19 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 18:28:19 yurius kernel: audit: type=1130 audit(1582388899.875:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 18:28:19 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 22 18:28:20 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 22 18:28:20 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Feb 22 18:28:20 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 22 18:28:20 yurius systemd-networkd[335]: enp2s0: Link UP
Feb 22 18:28:20 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 22 18:28:21 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 22 18:28:21 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 22 18:28:21 yurius systemd-networkd[335]: enp2s0: Gained carrier
Feb 22 18:28:23 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Feb 22 18:28:23 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Feb 22 18:28:25 yurius systemd[523]: Listening on GnuPG network certificate management daemon.
Feb 22 18:28:35 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 18:28:35 yurius kernel: audit: type=1130 audit(1582388915.549:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 18:29:25 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 22 18:29:25 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 18:29:25 yurius systemd[523]: Closed GnuPG network certificate management daemon.
Feb 22 18:29:25 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Feb 22 18:29:25 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 22 18:29:25 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 18:29:25 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 22 18:29:25 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 22 18:29:25 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 22 18:29:41 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 22 18:29:42 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 22 18:29:42 yurius kernel: libphy: r8169: probed
Feb 22 18:29:42 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 22 18:29:42 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 22 18:29:42 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 22 18:29:42 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 22 18:29:42 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 22 18:29:42 yurius systemd-networkd[334]: Enumeration completed
Feb 22 18:29:42 yurius systemd-networkd[334]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 22 18:29:42 yurius systemd-networkd[334]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 22 18:29:42 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 18:29:42 yurius kernel: audit: type=1130 audit(1582388982.903:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 18:29:42 yurius systemd-networkd[334]: enp2s0: IPv6 successfully enabled
Feb 22 18:29:42 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 22 18:29:43 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 22 18:29:43 yurius systemd-networkd[334]: enp2s0: Link UP
Feb 22 18:29:45 yurius systemd-networkd[334]: enp2s0: Gained carrier
Feb 22 18:29:45 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 22 18:29:45 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 22 18:29:46 yurius systemd[520]: Listening on GnuPG network certificate management daemon.
Feb 22 18:29:46 yurius systemd-networkd[334]: enp2s0: Gained IPv6LL
Feb 22 18:29:47 yurius systemd-networkd[334]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Feb 22 18:29:58 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 18:29:58 yurius kernel: audit: type=1130 audit(1582388998.710:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 20:44:18 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 22 20:44:18 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 20:44:18 yurius kernel: audit: type=1131 audit(1582397058.833:132): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 20:44:18 yurius systemd[520]: Closed GnuPG network certificate management daemon.
Feb 22 20:44:19 yurius systemd-networkd[334]: enp2s0: DHCP lease lost
Feb 22 20:44:19 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 22 20:44:19 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 22 20:44:19 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 22 20:44:19 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 22 20:44:19 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 23 08:47:21 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 23 08:47:21 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 23 08:47:21 yurius kernel: libphy: r8169: probed
Feb 23 08:47:21 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 23 08:47:21 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 23 08:47:22 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 23 08:47:22 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 23 08:47:22 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 23 08:47:22 yurius systemd-networkd[334]: Enumeration completed
Feb 23 08:47:22 yurius systemd-networkd[334]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 23 08:47:22 yurius kernel: audit: type=1130 audit(1582440442.175:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 23 08:47:22 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 23 08:47:22 yurius systemd-networkd[334]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 23 08:47:22 yurius systemd-networkd[334]: enp2s0: IPv6 successfully enabled
Feb 23 08:47:22 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 23 08:47:22 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 23 08:47:22 yurius systemd-networkd[334]: enp2s0: Link UP
Feb 23 08:47:24 yurius systemd-networkd[334]: enp2s0: Gained carrier
Feb 23 08:47:24 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 23 08:47:24 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 23 08:47:25 yurius systemd-networkd[334]: enp2s0: Gained IPv6LL
Feb 23 08:47:27 yurius systemd-networkd[334]: enp2s0: DHCPv4 address 192.168.1.4/24 via 192.168.1.1
Feb 23 08:47:31 yurius systemd[525]: Listening on GnuPG network certificate management daemon.
Feb 23 08:47:37 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 23 08:47:37 yurius kernel: audit: type=1130 audit(1582440457.301:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 23 20:29:54 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 23 20:29:54 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 23 20:29:54 yurius systemd[525]: Closed GnuPG network certificate management daemon.
Feb 23 20:29:54 yurius systemd-networkd[334]: enp2s0: DHCP lease lost
Feb 23 20:29:54 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 23 20:29:54 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 23 20:29:54 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 23 20:29:54 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 23 20:29:54 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 26 09:50:22 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 26 09:50:22 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 26 09:50:22 yurius kernel: libphy: r8169: probed
Feb 26 09:50:22 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 26 09:50:22 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 26 09:50:22 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 26 09:50:23 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 26 09:50:23 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 26 09:50:23 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 09:50:23 yurius kernel: audit: type=1130 audit(1582703423.091:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 09:50:23 yurius systemd-networkd[337]: Enumeration completed
Feb 26 09:50:23 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 26 09:50:23 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 26 09:50:23 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 26 09:50:23 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 26 09:50:23 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 26 09:50:23 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 26 09:50:24 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 26 09:50:24 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 26 09:50:24 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 26 09:50:26 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 26 09:50:29 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.7/24 via 192.168.1.1
Feb 26 09:50:38 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 09:50:38 yurius kernel: audit: type=1130 audit(1582703438.181:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 09:53:18 yurius systemd[550]: Listening on GnuPG network certificate management daemon.
Feb 26 12:09:17 yurius kernel: audit: type=1131 audit(1582711757.604:84): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 12:09:17 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 12:09:17 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 26 12:09:17 yurius systemd[550]: Closed GnuPG network certificate management daemon.
Feb 26 12:09:17 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 26 12:09:17 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 26 12:09:17 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 12:09:17 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 26 12:09:17 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 26 12:09:17 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 26 13:54:31 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 26 13:54:31 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 26 13:54:31 yurius kernel: libphy: r8169: probed
Feb 26 13:54:31 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 26 13:54:31 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 26 13:54:31 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 26 13:54:32 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 26 13:54:32 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 26 13:54:32 yurius systemd-networkd[337]: Enumeration completed
Feb 26 13:54:32 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 26 13:54:32 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 13:54:32 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 26 13:54:32 yurius kernel: audit: type=1130 audit(1582718072.006:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 13:54:32 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 26 13:54:32 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 26 13:54:32 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 26 13:54:32 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 26 13:54:33 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 26 13:54:33 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 26 13:54:33 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 26 13:54:35 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 26 13:54:35 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.7/24 via 192.168.1.1
Feb 26 13:54:47 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 13:54:47 yurius kernel: audit: type=1130 audit(1582718087.599:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 13:55:21 yurius systemd[542]: Listening on GnuPG network certificate management daemon.
Feb 26 15:54:28 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 26 15:54:28 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 15:54:28 yurius systemd[542]: Closed GnuPG network certificate management daemon.
Feb 26 15:54:28 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 26 15:54:28 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 26 15:54:28 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 15:54:28 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 26 15:54:28 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 26 15:54:28 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 26 18:39:53 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 26 18:39:54 yurius kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Feb 26 18:39:54 yurius kernel: libphy: r8169: probed
Feb 26 18:39:54 yurius kernel: r8169 0000:02:00.0 eth0: RTL8168g/8111g, 30:9c:23:b6:e6:64, XID 4c0, IRQ 43
Feb 26 18:39:54 yurius kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 26 18:39:54 yurius kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Feb 26 18:39:54 yurius kernel: audit: type=1130 audit(1582735194.751:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 18:39:54 yurius kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Feb 26 18:39:54 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 18:39:54 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Feb 26 18:39:54 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 26 18:39:54 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 26 18:39:54 yurius systemd-networkd[336]: Enumeration completed
Feb 26 18:39:54 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 26 18:39:54 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 26 18:39:54 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Feb 26 18:39:54 yurius systemd-networkd[336]: enp2s0: Link UP
Feb 26 18:39:56 yurius kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 100Mbps/Full - flow control rx/tx
Feb 26 18:39:56 yurius kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Feb 26 18:39:56 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 26 18:39:58 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Feb 26 18:39:58 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.7/24 via 192.168.1.1
Feb 26 18:40:10 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 18:40:10 yurius kernel: audit: type=1130 audit(1582735210.268:19): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 18:40:41 yurius systemd[539]: Listening on GnuPG network certificate management daemon.
Feb 26 18:45:35 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 18:45:35 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 26 18:45:35 yurius systemd[539]: Closed GnuPG network certificate management daemon.
Feb 26 18:45:36 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Feb 26 18:45:36 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 26 18:45:36 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 18:45:36 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 26 18:45:36 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Feb 26 18:45:36 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 26 18:45:52 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 26 18:45:53 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 26 18:45:53 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 26 18:45:53 yurius systemd-networkd[334]: Enumeration completed
Feb 26 18:45:53 yurius systemd-networkd[334]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 26 18:45:53 yurius systemd-networkd[334]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 26 18:45:53 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 18:45:54 yurius systemd-networkd[334]: enp2s0: IPv6 successfully enabled
Feb 26 18:45:54 yurius systemd-networkd[334]: enp2s0: Link UP
Feb 26 18:45:55 yurius systemd-networkd[334]: enp2s0: Gained carrier
Feb 26 18:45:57 yurius systemd-networkd[334]: enp2s0: DHCPv4 address 192.168.1.7/24 via 192.168.1.1
Feb 26 18:45:57 yurius systemd-networkd[334]: enp2s0: Gained IPv6LL
Feb 26 18:45:59 yurius systemd[524]: Listening on GnuPG network certificate management daemon.
Feb 26 18:46:09 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 20:37:24 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 20:37:24 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 26 20:37:24 yurius systemd[524]: Closed GnuPG network certificate management daemon.
Feb 26 20:37:24 yurius systemd-networkd[334]: enp2s0: DHCP lease lost
Feb 26 20:37:24 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 26 20:37:24 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 26 20:37:24 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 26 20:37:24 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 26 20:37:24 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 28 09:57:45 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 28 09:57:46 yurius systemd-networkd[333]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 28 09:57:46 yurius systemd-networkd[333]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 28 09:57:46 yurius systemd-networkd[333]: Enumeration completed
Feb 28 09:57:46 yurius systemd-networkd[333]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 28 09:57:46 yurius systemd-networkd[333]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 28 09:57:46 yurius systemd-networkd[333]: enp2s0: IPv6 successfully enabled
Feb 28 09:57:46 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 28 09:57:46 yurius systemd-networkd[333]: enp2s0: Link UP
Feb 28 09:57:48 yurius systemd-networkd[333]: enp2s0: Gained carrier
Feb 28 09:57:49 yurius systemd-networkd[333]: enp2s0: Gained IPv6LL
Feb 28 09:57:52 yurius systemd-networkd[333]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 28 09:58:01 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 28 09:58:12 yurius systemd[536]: Listening on GnuPG network certificate management daemon.
Feb 28 11:28:16 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 28 11:28:16 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 28 11:28:16 yurius systemd[536]: Closed GnuPG network certificate management daemon.
Feb 28 11:28:16 yurius systemd-networkd[333]: enp2s0: DHCP lease lost
Feb 28 11:28:16 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 28 11:28:16 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 28 11:28:16 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 28 11:28:16 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 28 11:28:16 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 28 14:41:44 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 28 14:41:45 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 28 14:41:45 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 28 14:41:45 yurius systemd-networkd[336]: Enumeration completed
Feb 28 14:41:45 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 28 14:41:45 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 28 14:41:45 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Feb 28 14:41:45 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 28 14:41:45 yurius systemd-networkd[336]: enp2s0: Link UP
Feb 28 14:41:46 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 28 14:41:48 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Feb 28 14:42:06 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 28 14:42:06 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 28 14:43:28 yurius systemd[543]: Listening on GnuPG network certificate management daemon.
Feb 28 20:48:24 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 28 20:48:24 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 28 20:48:24 yurius systemd[543]: Closed GnuPG network certificate management daemon.
Feb 28 20:48:24 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Feb 28 20:48:24 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 28 20:48:24 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 28 20:48:24 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 28 20:48:24 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Feb 28 20:48:24 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Feb 29 07:49:26 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 29 07:49:27 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 29 07:49:27 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 29 07:49:27 yurius systemd-networkd[336]: Enumeration completed
Feb 29 07:49:27 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 29 07:49:27 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 29 07:49:27 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 29 07:49:27 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Feb 29 07:49:27 yurius systemd-networkd[336]: enp2s0: Link UP
Feb 29 07:49:29 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 29 07:49:30 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Feb 29 07:49:40 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 29 07:49:42 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 29 07:50:06 yurius systemd[541]: Listening on GnuPG network certificate management daemon.
Feb 29 07:51:10 yurius systemd-networkd[336]: enp2s0: Lost carrier
Feb 29 07:51:10 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Feb 29 07:51:17 yurius systemd-networkd[336]: enp2s0: Gained carrier
Feb 29 07:51:20 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 29 07:51:20 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 29 07:51:20 yurius systemd[541]: Closed GnuPG network certificate management daemon.
Feb 29 07:51:20 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 29 07:51:20 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 29 07:51:41 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 29 07:51:42 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 29 07:51:42 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 29 07:51:42 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 29 07:51:42 yurius systemd-networkd[337]: Enumeration completed
Feb 29 07:51:42 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 29 07:51:42 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 29 07:51:42 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Feb 29 07:51:42 yurius systemd-networkd[337]: enp2s0: Link UP
Feb 29 07:51:44 yurius systemd-networkd[337]: enp2s0: Gained carrier
Feb 29 07:51:46 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Feb 29 07:51:48 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 29 07:51:54 yurius systemd[522]: Listening on GnuPG network certificate management daemon.
Feb 29 07:51:58 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 29 07:54:18 yurius systemd-networkd[337]: usb0: Interface name change detected, usb0 has been renamed to enp0s19f2u3u3.
Feb 29 07:54:18 yurius systemd-networkd[337]: enp0s19f2u3u3: IPv6 successfully enabled
Feb 29 07:54:18 yurius systemd-networkd[337]: enp0s19f2u3u3: Link UP
Feb 29 07:54:18 yurius systemd-networkd[337]: enp0s19f2u3u3: Gained carrier
Feb 29 07:54:20 yurius systemd-networkd[337]: enp0s19f2u3u3: Gained IPv6LL
Feb 29 07:54:22 yurius systemd-networkd[337]: enp0s19f2u3u3: DHCPv4 address 192.168.42.153/24 via 192.168.42.129
Feb 29 07:54:22 yurius dbus-daemon[497]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.1' (uid=981 pid=337 comm="/usr/lib/systemd/systemd-networkd ")
Feb 29 07:55:19 yurius sudo[1346]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/ip link set enp2s0 down
Feb 29 07:55:19 yurius systemd-networkd[337]: enp2s0: Link DOWN
Feb 29 07:55:19 yurius systemd-networkd[337]: enp2s0: Lost carrier
Feb 29 07:55:19 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Feb 29 07:55:29 yurius sudo[1367]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/ip link set enp0s19f2u3u3 up
Feb 29 07:55:40 yurius sudo[1370]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/dhcpcd enp0s19f2u3u3
Feb 29 07:55:40 yurius dhcpcd[1371]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Feb 29 07:55:40 yurius dhcpcd[1371]: enp0s19f2u3u3: IAID 29:10:e1:57
Feb 29 07:55:41 yurius dhcpcd[1371]: enp0s19f2u3u3: soliciting an IPv6 router
Feb 29 07:55:41 yurius dhcpcd[1371]: enp0s19f2u3u3: soliciting a DHCP lease
Feb 29 07:55:43 yurius dhcpcd[1371]: enp0s19f2u3u3: offered 192.168.42.154 from 192.168.42.129
Feb 29 07:55:43 yurius dhcpcd[1371]: enp0s19f2u3u3: probing address 192.168.42.154/24
Feb 29 07:55:49 yurius dhcpcd[1371]: enp0s19f2u3u3: leased 192.168.42.154 for 3600 seconds
Feb 29 07:55:49 yurius dhcpcd[1371]: enp0s19f2u3u3: adding route to 192.168.42.0/24
Feb 29 07:55:49 yurius dhcpcd[1371]: enp0s19f2u3u3: adding default route via 192.168.42.129
Feb 29 07:55:49 yurius dhcpcd[1371]: forked to background, child pid 1433
Feb 29 07:55:49 yurius dhcpcd[1433]: enp0s19f2u3u3: pid -1176300389 deleted route to 192.168.42.0/24
Feb 29 07:55:49 yurius dhcpcd[1433]: enp0s19f2u3u3: pid -4843327 deleted default route via 192.168.42.129
Feb 29 07:55:53 yurius dhcpcd[1433]: enp0s19f2u3u3: no IPv6 Routers available
Feb 29 08:25:49 yurius dhcpcd[1433]: enp0s19f2u3u3: adding route to 192.168.42.0/24
Feb 29 08:25:49 yurius dhcpcd[1433]: enp0s19f2u3u3: adding default route via 192.168.42.129
Feb 29 08:59:19 yurius dhcpcd[1433]: enp0s19f2u3u3: carrier lost
Feb 29 08:59:19 yurius dbus-daemon[497]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.1' (uid=981 pid=337 comm="/usr/lib/systemd/systemd-networkd ")
Feb 29 08:59:19 yurius systemd-networkd[337]: enp0s19f2u3u3: Link DOWN
Feb 29 08:59:19 yurius systemd-networkd[337]: enp0s19f2u3u3: Lost carrier
Feb 29 08:59:19 yurius systemd-networkd[337]: enp0s19f2u3u3: DHCP lease lost
Feb 29 08:59:19 yurius dhcpcd[1433]: enp0s19f2u3u3: deleting route to 192.168.42.0/24
Feb 29 08:59:19 yurius dhcpcd[1433]: enp0s19f2u3u3: deleting default route via 192.168.42.129
Feb 29 08:59:19 yurius dhcpcd[1433]: enp0s19f2u3u3: removing interface
Feb 29 08:59:19 yurius dhcpcd[1433]: dhcpcd exited
Feb 29 09:51:29 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 29 09:51:29 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 29 09:51:29 yurius systemd[522]: Closed GnuPG network certificate management daemon.
Feb 29 09:51:29 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 29 09:51:29 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 29 09:51:48 yurius kernel: drop_monitor: Initializing network drop monitor service
Feb 29 09:51:48 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Feb 29 09:51:48 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Feb 29 09:51:48 yurius systemd-networkd[334]: Enumeration completed
Feb 29 09:51:48 yurius systemd-networkd[334]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Feb 29 09:51:48 yurius systemd-networkd[334]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Feb 29 09:51:48 yurius systemd-networkd[334]: enp2s0: IPv6 successfully enabled
Feb 29 09:51:49 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 29 09:51:49 yurius systemd-networkd[334]: enp2s0: Link UP
Feb 29 09:51:51 yurius systemd-networkd[334]: enp2s0: Gained carrier
Feb 29 09:51:52 yurius systemd-networkd[334]: enp2s0: Gained IPv6LL
Feb 29 09:51:53 yurius systemd-networkd[334]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Feb 29 09:51:54 yurius systemd[522]: Listening on GnuPG network certificate management daemon.
Feb 29 09:52:04 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 29 11:25:54 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Feb 29 11:25:54 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 29 11:25:54 yurius systemd[522]: Closed GnuPG network certificate management daemon.
Feb 29 11:25:54 yurius systemd-networkd[334]: enp2s0: DHCP lease lost
Feb 29 11:25:54 yurius systemd[1]: systemd-networkd.service: Succeeded.
Feb 29 11:25:54 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 29 11:25:54 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 29 11:25:54 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Feb 29 11:25:54 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 06 18:49:45 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 06 18:49:46 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 06 18:49:46 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 06 18:49:46 yurius systemd-networkd[335]: Enumeration completed
Mar 06 18:49:46 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 06 18:49:46 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 18:49:46 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 06 18:49:46 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Mar 06 18:49:46 yurius systemd-networkd[335]: enp2s0: Link UP
Mar 06 18:49:47 yurius systemd-networkd[335]: enp2s0: Gained carrier
Mar 06 18:49:49 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Mar 06 18:49:50 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Mar 06 18:50:01 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 18:51:12 yurius systemd[537]: Listening on GnuPG network certificate management daemon.
Mar 06 18:57:08 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 06 18:57:08 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 18:57:08 yurius systemd[537]: Closed GnuPG network certificate management daemon.
Mar 06 18:57:08 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Mar 06 18:57:08 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 06 18:57:08 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 18:57:08 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Mar 06 18:57:08 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Mar 06 18:57:08 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 06 18:57:23 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 06 18:57:24 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 06 18:57:24 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 06 18:57:24 yurius systemd-networkd[336]: Enumeration completed
Mar 06 18:57:24 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 06 18:57:24 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 06 18:57:24 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Mar 06 18:57:24 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 18:57:25 yurius systemd-networkd[336]: enp2s0: Link UP
Mar 06 18:57:27 yurius systemd-networkd[336]: enp2s0: Gained carrier
Mar 06 18:57:28 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Mar 06 18:57:28 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Mar 06 18:57:40 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 18:58:01 yurius systemd[544]: Listening on GnuPG network certificate management daemon.
Mar 06 20:48:03 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 06 20:48:03 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 20:48:04 yurius systemd[544]: Closed GnuPG network certificate management daemon.
Mar 06 20:48:04 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Mar 06 20:48:04 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 06 20:48:04 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 20:48:04 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 06 20:48:04 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 06 20:48:04 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 07 06:45:28 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 07 06:45:29 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 07 06:45:29 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 07 06:45:29 yurius systemd-networkd[336]: Enumeration completed
Mar 07 06:45:29 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 07 06:45:29 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 07 06:45:29 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 07 06:45:29 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Mar 07 06:45:29 yurius systemd-networkd[336]: enp2s0: Link UP
Mar 07 06:45:30 yurius systemd-networkd[336]: enp2s0: Gained carrier
Mar 07 06:45:31 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Mar 07 06:45:32 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Mar 07 06:45:44 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 07 06:45:52 yurius systemd[539]: Listening on GnuPG network certificate management daemon.
Mar 07 20:47:14 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 07 20:47:14 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 07 20:47:15 yurius systemd[539]: Closed GnuPG network certificate management daemon.
Mar 07 20:47:15 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Mar 07 20:47:15 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 07 20:47:15 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 07 20:47:15 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Mar 07 20:47:15 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Mar 07 20:47:15 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 08 06:44:43 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 08 06:44:44 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 08 06:44:44 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 08 06:44:44 yurius systemd-networkd[339]: Enumeration completed
Mar 08 06:44:44 yurius systemd-networkd[339]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 08 06:44:44 yurius systemd-networkd[339]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 08 06:44:44 yurius systemd-networkd[339]: enp2s0: IPv6 successfully enabled
Mar 08 06:44:44 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 08 06:44:44 yurius systemd-networkd[339]: enp2s0: Link UP
Mar 08 06:44:46 yurius systemd-networkd[339]: enp2s0: Gained carrier
Mar 08 06:44:47 yurius systemd-networkd[339]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Mar 08 06:44:48 yurius systemd-networkd[339]: enp2s0: Gained IPv6LL
Mar 08 06:45:00 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 08 06:45:21 yurius systemd[539]: Listening on GnuPG network certificate management daemon.
Mar 08 12:34:35 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 08 12:34:35 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 08 12:34:35 yurius systemd[539]: Closed GnuPG network certificate management daemon.
Mar 08 12:34:35 yurius systemd-networkd[339]: enp2s0: DHCP lease lost
Mar 08 12:34:35 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 08 12:34:35 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 08 12:34:35 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 08 12:34:35 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 08 12:34:35 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 08 14:58:41 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 08 14:58:42 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 08 14:58:42 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 08 14:58:42 yurius systemd-networkd[336]: Enumeration completed
Mar 08 14:58:42 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 08 14:58:42 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 08 14:58:42 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Mar 08 14:58:42 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 08 14:58:42 yurius systemd-networkd[336]: enp2s0: Link UP
Mar 08 14:58:43 yurius systemd-networkd[336]: enp2s0: Gained carrier
Mar 08 14:58:44 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Mar 08 14:58:45 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Mar 08 14:58:56 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 08 14:59:47 yurius systemd[542]: Listening on GnuPG network certificate management daemon.
Mar 08 17:19:56 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 08 17:19:56 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 08 17:19:56 yurius systemd[542]: Closed GnuPG network certificate management daemon.
Mar 08 17:19:56 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Mar 08 17:19:56 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 08 17:19:56 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 08 17:19:56 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Mar 08 17:19:56 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Mar 08 17:19:56 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 09 07:51:02 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 09 07:51:03 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 09 07:51:03 yurius systemd-networkd[334]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 09 07:51:03 yurius systemd-networkd[334]: Enumeration completed
Mar 09 07:51:03 yurius systemd-networkd[334]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 09 07:51:03 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 07:51:03 yurius systemd-networkd[334]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 09 07:51:03 yurius systemd-networkd[334]: enp2s0: IPv6 successfully enabled
Mar 09 07:51:03 yurius systemd-networkd[334]: enp2s0: Link UP
Mar 09 07:51:05 yurius systemd-networkd[334]: enp2s0: Gained carrier
Mar 09 07:51:06 yurius systemd-networkd[334]: enp2s0: Gained IPv6LL
Mar 09 07:51:07 yurius systemd-networkd[334]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Mar 09 07:51:18 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 07:51:35 yurius systemd[549]: Listening on GnuPG network certificate management daemon.
Mar 09 07:51:45 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 09 07:51:45 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 07:51:45 yurius systemd[549]: Closed GnuPG network certificate management daemon.
Mar 09 07:51:45 yurius systemd-networkd[334]: enp2s0: DHCP lease lost
Mar 09 07:51:45 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 09 07:51:45 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 07:51:45 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Mar 09 07:51:45 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Mar 09 07:51:45 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 09 07:52:01 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 09 07:52:02 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 09 07:52:02 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 09 07:52:02 yurius systemd-networkd[335]: Enumeration completed
Mar 09 07:52:02 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 09 07:52:02 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 09 07:52:02 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Mar 09 07:52:02 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 07:52:02 yurius systemd-networkd[335]: enp2s0: Link UP
Mar 09 07:52:04 yurius systemd-networkd[335]: enp2s0: Gained carrier
Mar 09 07:52:05 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Mar 09 07:52:06 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Mar 09 07:52:08 yurius systemd[521]: Listening on GnuPG network certificate management daemon.
Mar 09 07:52:17 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 10:33:49 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 09 10:33:49 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 10:33:50 yurius systemd[521]: Closed GnuPG network certificate management daemon.
Mar 09 10:33:50 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Mar 09 10:33:50 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 09 10:33:50 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 10:33:50 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 09 10:33:50 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 09 10:33:50 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 09 13:25:30 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 09 13:25:31 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 09 13:25:31 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 09 13:25:31 yurius systemd-networkd[335]: Enumeration completed
Mar 09 13:25:31 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 09 13:25:31 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 13:25:31 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 09 13:25:31 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Mar 09 13:25:31 yurius systemd-networkd[335]: enp2s0: Link UP
Mar 09 13:25:33 yurius systemd-networkd[335]: enp2s0: Gained carrier
Mar 09 13:25:34 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Mar 09 13:25:35 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Mar 09 13:25:46 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 13:30:42 yurius systemd[543]: Listening on GnuPG network certificate management daemon.
Mar 09 15:31:28 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 09 15:31:28 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 15:31:28 yurius systemd[543]: Closed GnuPG network certificate management daemon.
Mar 09 15:31:28 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Mar 09 15:31:28 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 09 15:31:28 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 15:31:28 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Mar 09 15:31:28 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Mar 09 15:31:28 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 09 17:10:13 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 09 17:10:14 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 09 17:10:14 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 09 17:10:14 yurius systemd-networkd[337]: Enumeration completed
Mar 09 17:10:14 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 09 17:10:14 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 17:10:14 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 09 17:10:14 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Mar 09 17:10:14 yurius systemd-networkd[337]: enp2s0: Link UP
Mar 09 17:10:15 yurius systemd-networkd[337]: enp2s0: Gained carrier
Mar 09 17:10:17 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Mar 09 17:10:19 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Mar 09 17:10:29 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 17:20:25 yurius systemd[544]: Listening on GnuPG network certificate management daemon.
Mar 09 18:48:53 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 18:48:53 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 09 18:48:53 yurius systemd[544]: Closed GnuPG network certificate management daemon.
Mar 09 18:48:53 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Mar 09 18:48:53 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 09 18:48:53 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 09 18:48:53 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Mar 09 18:48:53 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-poweroff.service has 'start' job queued, but 'stop' is included in transaction).
Mar 09 18:48:53 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 10 06:19:47 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 10 06:19:48 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 06:19:48 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 10 06:19:48 yurius systemd-networkd[335]: Enumeration completed
Mar 10 06:19:48 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 06:19:48 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 06:19:48 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 06:19:48 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Mar 10 06:19:48 yurius systemd-networkd[335]: enp2s0: Link UP
Mar 10 06:19:50 yurius systemd-networkd[335]: enp2s0: Gained carrier
Mar 10 06:19:51 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Mar 10 06:19:53 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.3/24 via 192.168.1.1
Mar 10 06:20:03 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 06:20:18 yurius systemd[542]: Listening on GnuPG network certificate management daemon.
Mar 10 08:13:06 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 08:13:06 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 10 08:13:06 yurius systemd[542]: Closed GnuPG network certificate management daemon.
Mar 10 08:13:06 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Mar 10 08:13:06 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 10 08:13:06 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 08:13:06 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Mar 10 08:13:06 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Mar 10 08:13:06 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 10 09:37:15 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 10 09:37:16 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 09:37:16 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 10 09:37:16 yurius systemd-networkd[338]: Enumeration completed
Mar 10 09:37:16 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 09:37:16 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 09:37:16 yurius systemd-networkd[338]: enp2s0: IPv6 successfully enabled
Mar 10 09:37:16 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 09:37:16 yurius systemd-networkd[338]: enp2s0: Link UP
Mar 10 09:37:18 yurius systemd-networkd[338]: enp2s0: Gained carrier
Mar 10 09:37:19 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Mar 10 09:37:32 yurius systemd-networkd[338]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 10 09:37:32 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 09:38:22 yurius systemd[541]: Listening on GnuPG network certificate management daemon.
Mar 10 09:46:30 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 10 09:46:30 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 09:46:30 yurius systemd[541]: Closed GnuPG network certificate management daemon.
Mar 10 09:46:30 yurius systemd-networkd[338]: enp2s0: DHCP lease lost
Mar 10 09:46:30 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 10 09:46:30 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 09:46:30 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Mar 10 09:46:30 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Mar 10 09:46:30 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 10 14:23:21 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 10 14:23:21 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 14:23:21 yurius systemd-networkd[333]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 14:23:21 yurius systemd-networkd[333]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 10 14:23:21 yurius systemd-networkd[333]: Enumeration completed
Mar 10 14:23:21 yurius systemd-networkd[333]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 14:23:21 yurius systemd-networkd[333]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 14:23:22 yurius systemd-networkd[333]: enp2s0: IPv6 successfully enabled
Mar 10 14:23:22 yurius systemd-networkd[333]: enp2s0: Link UP
Mar 10 14:23:23 yurius systemd-networkd[333]: enp2s0: Gained carrier
Mar 10 14:23:25 yurius systemd-networkd[333]: enp2s0: Gained IPv6LL
Mar 10 14:23:38 yurius systemd-networkd[333]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 10 14:23:38 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 14:28:10 yurius systemd[534]: Listening on GnuPG network certificate management daemon.
Mar 10 14:29:25 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 14:29:24 yurius systemd-udevd[324]: /usr/lib/systemd/network/99-default.link:7: Unknown key name 'AlternativeNamesPolicy' in section 'Link', ignoring.
Mar 10 14:29:25 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 10 14:29:25 yurius systemd[534]: Closed GnuPG network certificate management daemon.
Mar 10 14:29:25 yurius systemd-networkd[333]: enp2s0: DHCP lease lost
Mar 10 14:29:25 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 10 14:29:25 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 14:29:25 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Mar 10 14:29:25 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Mar 10 14:29:25 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 10 14:29:46 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 10 14:29:47 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 14:29:47 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 14:29:47 yurius systemd-networkd[338]: Enumeration completed
Mar 10 14:29:47 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 14:29:47 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 14:29:47 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 14:29:52 yurius systemd[531]: Listening on GnuPG network certificate management daemon.
Mar 10 14:31:47 yurius systemd-networkd-wait-online[497]: Event loop failed: Connection timed out
Mar 10 14:31:47 yurius systemd[1]: systemd-networkd-wait-online.service: Main process exited, code=exited, status=1/FAILURE
Mar 10 14:31:47 yurius systemd[1]: systemd-networkd-wait-online.service: Failed with result 'exit-code'.
Mar 10 14:31:47 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Mar 10 14:47:07 yurius sudo[1298]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/ip link set enp2s0 up
Mar 10 14:47:07 yurius systemd-networkd[338]: enp2s0: Link UP
Mar 10 14:47:08 yurius systemd-networkd[338]: enp2s0: Gained carrier
Mar 10 14:47:10 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Mar 10 14:47:19 yurius sudo[1352]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/dhcpcd enp2s0
Mar 10 14:47:19 yurius dhcpcd[1353]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 10 14:47:19 yurius dhcpcd[1353]: enp2s0: IAID 23:b6:e6:64
Mar 10 14:47:19 yurius dhcpcd[1353]: enp2s0: soliciting a DHCP lease
Mar 10 14:47:19 yurius dhcpcd[1353]: enp2s0: offered 192.168.1.2 from 192.168.1.1
Mar 10 14:47:19 yurius dhcpcd[1353]: enp2s0: probing address 192.168.1.2/24
Mar 10 14:47:19 yurius dhcpcd[1353]: enp2s0: soliciting an IPv6 router
Mar 10 14:47:24 yurius dhcpcd[1353]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 10 14:47:24 yurius dhcpcd[1353]: enp2s0: adding route to 192.168.1.0/24
Mar 10 14:47:24 yurius dhcpcd[1353]: enp2s0: adding default route via 192.168.1.1
Mar 10 14:47:24 yurius dhcpcd[1353]: forked to background, child pid 1426
Mar 10 14:47:31 yurius dhcpcd[1426]: enp2s0: no IPv6 Routers available
Mar 10 17:40:21 yurius dhcpcd[1426]: received SIGTERM, stopping
Mar 10 17:40:21 yurius dhcpcd[1426]: enp2s0: removing interface
Mar 10 17:40:21 yurius dhcpcd[1426]: dhcpcd exited
Mar 10 17:40:21 yurius systemd[531]: Closed GnuPG network certificate management daemon.
Mar 10 17:40:21 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 10 17:40:21 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 17:40:41 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 10 17:40:41 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 17:40:41 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 17:40:41 yurius systemd-networkd[338]: Enumeration completed
Mar 10 17:40:41 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 17:40:41 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 17:40:42 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 17:40:46 yurius systemd[530]: Listening on GnuPG network certificate management daemon.
Mar 10 17:42:42 yurius systemd-networkd-wait-online[491]: Event loop failed: Connection timed out
Mar 10 17:42:42 yurius systemd[1]: systemd-networkd-wait-online.service: Main process exited, code=exited, status=1/FAILURE
Mar 10 17:42:42 yurius systemd[1]: systemd-networkd-wait-online.service: Failed with result 'exit-code'.
Mar 10 17:42:42 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Mar 10 17:42:53 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 17:42:53 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 10 17:42:53 yurius systemd-networkd[1199]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 17:42:53 yurius systemd-networkd[1199]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 17:42:53 yurius systemd-networkd[1199]: Enumeration completed
Mar 10 17:42:53 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 17:43:22 yurius systemd[530]: Closed GnuPG network certificate management daemon.
Mar 10 17:43:23 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 10 17:43:23 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 17:43:38 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 10 17:43:38 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 17:43:38 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 17:43:38 yurius systemd-networkd[338]: Enumeration completed
Mar 10 17:43:38 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 17:43:38 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 17:43:38 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 17:43:44 yurius systemd[525]: Listening on GnuPG network certificate management daemon.
Mar 10 17:45:39 yurius systemd-networkd-wait-online[475]: Event loop failed: Connection timed out
Mar 10 17:45:39 yurius systemd[1]: systemd-networkd-wait-online.service: Main process exited, code=exited, status=1/FAILURE
Mar 10 17:45:39 yurius systemd[1]: systemd-networkd-wait-online.service: Failed with result 'exit-code'.
Mar 10 17:45:39 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Mar 10 17:48:52 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 17:48:52 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 10 17:48:53 yurius systemd-networkd[1283]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 17:48:53 yurius systemd-networkd[1283]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 17:48:53 yurius systemd-networkd[1283]: Enumeration completed
Mar 10 17:48:53 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 17:49:15 yurius systemd-networkd[1283]: enp2s0: Link UP
Mar 10 17:49:17 yurius systemd-networkd[1283]: enp2s0: Gained carrier
Mar 10 17:49:18 yurius systemd-networkd[1283]: enp2s0: Gained IPv6LL
Mar 10 17:49:25 yurius dhcpcd[1358]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 10 17:49:25 yurius dhcpcd[1358]: enp2s0: IAID 23:b6:e6:64
Mar 10 17:49:25 yurius dhcpcd[1358]: enp2s0: soliciting an IPv6 router
Mar 10 17:49:25 yurius dhcpcd[1358]: enp2s0: rebinding lease of 192.168.1.2
Mar 10 17:49:26 yurius dhcpcd[1358]: enp2s0: probing address 192.168.1.2/24
Mar 10 17:49:31 yurius dhcpcd[1358]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 10 17:49:31 yurius dhcpcd[1358]: enp2s0: adding route to 192.168.1.0/24
Mar 10 17:49:31 yurius dhcpcd[1358]: enp2s0: adding default route via 192.168.1.1
Mar 10 17:49:31 yurius dhcpcd[1358]: forked to background, child pid 1441
Mar 10 17:49:37 yurius dhcpcd[1441]: enp2s0: no IPv6 Routers available
Mar 10 17:51:05 yurius dhcpcd[1441]: received SIGTERM, stopping
Mar 10 17:51:05 yurius dhcpcd[1441]: enp2s0: removing interface
Mar 10 17:51:05 yurius dhcpcd[1441]: dhcpcd exited
Mar 10 17:51:05 yurius systemd[525]: Closed GnuPG network certificate management daemon.
Mar 10 17:51:05 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 10 17:51:05 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 17:51:19 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 10 17:51:19 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 17:51:19 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 17:51:19 yurius systemd-networkd[337]: Enumeration completed
Mar 10 17:51:19 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 17:51:19 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 17:51:19 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 17:51:24 yurius systemd[528]: Listening on GnuPG network certificate management daemon.
Mar 10 17:51:43 yurius systemd-networkd[337]: enp2s0: Link UP
Mar 10 17:51:44 yurius systemd-networkd[337]: enp2s0: Gained carrier
Mar 10 17:51:45 yurius dhcpcd[934]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 10 17:51:45 yurius dhcpcd[934]: enp2s0: IAID 23:b6:e6:64
Mar 10 17:51:45 yurius dhcpcd[934]: enp2s0: rebinding lease of 192.168.1.2
Mar 10 17:51:45 yurius dhcpcd[934]: enp2s0: probing address 192.168.1.2/24
Mar 10 17:51:45 yurius dhcpcd[934]: enp2s0: soliciting an IPv6 router
Mar 10 17:51:46 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Mar 10 17:51:46 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 17:51:50 yurius dhcpcd[934]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 10 17:51:50 yurius dhcpcd[934]: enp2s0: adding route to 192.168.1.0/24
Mar 10 17:51:50 yurius dhcpcd[934]: enp2s0: adding default route via 192.168.1.1
Mar 10 17:51:50 yurius dhcpcd[934]: forked to background, child pid 1012
Mar 10 17:51:58 yurius dhcpcd[1012]: enp2s0: no IPv6 Routers available
Mar 10 17:53:01 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 10 17:53:01 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 17:53:02 yurius systemd[528]: Closed GnuPG network certificate management daemon.
Mar 10 17:53:02 yurius systemd[1]: [email protected]: Killing process 1012 (dhcpcd) with signal SIGKILL.
Mar 10 17:53:02 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 10 17:53:02 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 17:53:16 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 10 17:53:16 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 17:53:16 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 10 17:53:16 yurius systemd-networkd[336]: Enumeration completed
Mar 10 17:53:16 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 17:53:16 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 17:53:16 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Mar 10 17:53:16 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 17:53:17 yurius systemd-networkd[336]: enp2s0: Link UP
Mar 10 17:53:18 yurius systemd-networkd[336]: enp2s0: Gained carrier
Mar 10 17:53:19 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Mar 10 17:53:20 yurius systemd[523]: Listening on GnuPG network certificate management daemon.
Mar 10 17:53:20 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 10 17:53:31 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 19:22:26 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 10 19:22:26 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 19:22:26 yurius systemd-udevd[328]: /usr/lib/systemd/network/99-default.link:7: Unknown key name 'AlternativeNamesPolicy' in section 'Link', ignoring.
Mar 10 19:22:26 yurius systemd[523]: Closed GnuPG network certificate management daemon.
Mar 10 19:22:26 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Mar 10 19:22:26 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 10 19:22:26 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 19:22:26 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Mar 10 19:22:26 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Mar 10 19:22:26 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 10 19:22:43 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 10 19:22:44 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 19:22:44 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 19:22:44 yurius systemd-networkd[337]: Enumeration completed
Mar 10 19:22:44 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 19:22:44 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 19:22:44 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 19:22:48 yurius systemd[528]: Listening on GnuPG network certificate management daemon.
Mar 10 19:24:44 yurius systemd-networkd-wait-online[473]: Event loop failed: Connection timed out
Mar 10 19:24:44 yurius systemd[1]: systemd-networkd-wait-online.service: Main process exited, code=exited, status=1/FAILURE
Mar 10 19:24:44 yurius systemd[1]: systemd-networkd-wait-online.service: Failed with result 'exit-code'.
Mar 10 19:24:44 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Mar 10 19:24:45 yurius sudo[1145]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/journalctl -u [email protected]
Mar 10 19:28:52 yurius sudo[1213]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/ip link set enp2s0 up
Mar 10 19:28:52 yurius systemd-networkd[337]: enp2s0: Link UP
Mar 10 19:28:54 yurius systemd-networkd[337]: enp2s0: Gained carrier
Mar 10 19:28:55 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Mar 10 19:29:02 yurius sudo[1272]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/dhcpcd enp2s0
Mar 10 19:29:02 yurius dhcpcd[1273]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 10 19:29:02 yurius dhcpcd[1273]: enp2s0: IAID 23:b6:e6:64
Mar 10 19:29:02 yurius dhcpcd[1273]: enp2s0: rebinding lease of 192.168.1.2
Mar 10 19:29:02 yurius dhcpcd[1273]: enp2s0: probing address 192.168.1.2/24
Mar 10 19:29:02 yurius dhcpcd[1273]: enp2s0: soliciting an IPv6 router
Mar 10 19:29:07 yurius dhcpcd[1273]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 10 19:29:07 yurius dhcpcd[1273]: enp2s0: adding route to 192.168.1.0/24
Mar 10 19:29:07 yurius dhcpcd[1273]: enp2s0: adding default route via 192.168.1.1
Mar 10 19:29:07 yurius dhcpcd[1273]: forked to background, child pid 1333
Mar 10 19:29:14 yurius dhcpcd[1333]: enp2s0: no IPv6 Routers available
Mar 10 19:38:22 yurius dhcpcd[1333]: received SIGTERM, stopping
Mar 10 19:38:22 yurius dhcpcd[1333]: enp2s0: removing interface
Mar 10 19:38:22 yurius dhcpcd[1333]: dhcpcd exited
Mar 10 19:38:22 yurius systemd[528]: Closed GnuPG network certificate management daemon.
Mar 10 19:38:22 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 10 19:38:22 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 19:38:37 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 10 19:38:37 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 19:38:37 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 10 19:38:37 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 19:38:37 yurius systemd-networkd[338]: Enumeration completed
Mar 10 19:38:37 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 19:38:38 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 19:38:41 yurius systemd[530]: Listening on GnuPG network certificate management daemon.
Mar 10 19:39:05 yurius sudo[923]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/ip link set enp2s0 up
Mar 10 19:39:06 yurius systemd-networkd[338]: enp2s0: Link UP
Mar 10 19:39:07 yurius systemd-networkd[338]: enp2s0: Gained carrier
Mar 10 19:39:08 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Mar 10 19:39:08 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 19:39:09 yurius sudo[943]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/dhcpcd enp2s0
Mar 10 19:39:09 yurius dhcpcd[944]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 10 19:39:09 yurius dhcpcd[944]: enp2s0: IAID 23:b6:e6:64
Mar 10 19:39:09 yurius dhcpcd[944]: enp2s0: rebinding lease of 192.168.1.2
Mar 10 19:39:09 yurius dhcpcd[944]: enp2s0: probing address 192.168.1.2/24
Mar 10 19:39:09 yurius dhcpcd[944]: enp2s0: soliciting an IPv6 router
Mar 10 19:39:15 yurius dhcpcd[944]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 10 19:39:15 yurius dhcpcd[944]: enp2s0: adding route to 192.168.1.0/24
Mar 10 19:39:15 yurius dhcpcd[944]: enp2s0: adding default route via 192.168.1.1
Mar 10 19:39:15 yurius dhcpcd[944]: forked to background, child pid 1007
Mar 10 19:39:21 yurius dhcpcd[1007]: enp2s0: no IPv6 Routers available
Mar 10 19:40:25 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 19:40:25 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 10 19:40:25 yurius systemd[530]: Closed GnuPG network certificate management daemon.
Mar 10 19:40:25 yurius systemd[1]: [email protected]: Killing process 1007 (dhcpcd) with signal SIGKILL.
Mar 10 19:40:25 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 10 19:40:25 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 19:40:45 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 10 19:40:46 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 10 19:40:46 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 10 19:40:47 yurius systemd-networkd[337]: Enumeration completed
Mar 10 19:40:47 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 10 19:40:47 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 19:40:47 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 10 19:40:47 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Mar 10 19:40:47 yurius systemd-networkd[337]: enp2s0: Link UP
Mar 10 19:40:48 yurius systemd-networkd[337]: enp2s0: Gained carrier
Mar 10 19:40:50 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Mar 10 19:40:51 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 10 19:41:02 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 19:41:11 yurius systemd[543]: Listening on GnuPG network certificate management daemon.
Mar 10 20:39:00 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 20:39:00 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 10 20:39:00 yurius systemd[543]: Closed GnuPG network certificate management daemon.
Mar 10 20:39:00 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Mar 10 20:39:00 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 10 20:39:00 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 10 20:39:00 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Mar 10 20:39:00 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (poweroff.target has 'start' job queued, but 'stop' is included in transaction).
Mar 10 20:39:00 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 11 06:23:09 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 11 06:23:09 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 11 06:23:09 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 06:23:09 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 11 06:23:09 yurius systemd-networkd[335]: Enumeration completed
Mar 11 06:23:09 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 11 06:23:09 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 11 06:23:09 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Mar 11 06:23:10 yurius systemd-networkd[335]: enp2s0: Link UP
Mar 11 06:23:11 yurius systemd-networkd[335]: enp2s0: Gained carrier
Mar 11 06:23:13 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Mar 11 06:23:14 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 11 06:23:25 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 06:24:56 yurius systemd[539]: Listening on GnuPG network certificate management daemon.
Mar 11 06:26:55 yurius systemd-udevd[326]: /usr/lib/systemd/network/99-default.link:7: Unknown key name 'AlternativeNamesPolicy' in section 'Link', ignoring.
Mar 11 06:26:55 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 06:26:55 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 11 06:26:55 yurius systemd[539]: Closed GnuPG network certificate management daemon.
Mar 11 06:26:55 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Mar 11 06:26:55 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 11 06:26:55 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 06:26:55 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 11 06:26:55 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 11 06:26:55 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 11 06:27:13 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 11 06:27:14 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 11 06:27:14 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 11 06:27:14 yurius systemd-networkd[337]: Enumeration completed
Mar 11 06:27:14 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 11 06:27:14 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 06:27:14 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 11 06:29:15 yurius systemd-networkd-wait-online[472]: Event loop failed: Connection timed out
Mar 11 06:29:15 yurius systemd[1]: systemd-networkd-wait-online.service: Main process exited, code=exited, status=1/FAILURE
Mar 11 06:29:15 yurius systemd[1]: systemd-networkd-wait-online.service: Failed with result 'exit-code'.
Mar 11 06:29:15 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Mar 11 06:29:18 yurius systemd[546]: Listening on GnuPG network certificate management daemon.
Mar 11 06:30:14 yurius sudo[1084]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/ip link set enp2s0 up
Mar 11 06:30:14 yurius systemd-networkd[337]: enp2s0: Link UP
Mar 11 06:30:15 yurius systemd-networkd[337]: enp2s0: Gained carrier
Mar 11 06:30:17 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Mar 11 06:30:24 yurius sudo[1158]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/dhcpcd enp2s0
Mar 11 06:30:25 yurius dhcpcd[1159]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 11 06:30:25 yurius dhcpcd[1159]: enp2s0: IAID 23:b6:e6:64
Mar 11 06:30:25 yurius dhcpcd[1159]: enp2s0: rebinding lease of 192.168.1.2
Mar 11 06:30:25 yurius dhcpcd[1159]: enp2s0: probing address 192.168.1.2/24
Mar 11 06:30:25 yurius dhcpcd[1159]: enp2s0: soliciting an IPv6 router
Mar 11 06:30:30 yurius dhcpcd[1159]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 11 06:30:30 yurius dhcpcd[1159]: enp2s0: adding route to 192.168.1.0/24
Mar 11 06:30:30 yurius dhcpcd[1159]: enp2s0: adding default route via 192.168.1.1
Mar 11 06:30:30 yurius dhcpcd[1159]: forked to background, child pid 1220
Mar 11 06:30:37 yurius dhcpcd[1220]: enp2s0: no IPv6 Routers available
Mar 11 06:31:37 yurius dhcpcd[1220]: received SIGTERM, stopping
Mar 11 06:31:37 yurius dhcpcd[1220]: enp2s0: removing interface
Mar 11 06:31:37 yurius dhcpcd[1220]: dhcpcd exited
Mar 11 06:31:38 yurius systemd[546]: Closed GnuPG network certificate management daemon.
Mar 11 06:31:38 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 11 06:31:38 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 06:31:55 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 11 06:31:55 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 11 06:31:55 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 11 06:31:55 yurius systemd-networkd[338]: Enumeration completed
Mar 11 06:31:55 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 11 06:31:55 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 06:31:55 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 11 06:32:00 yurius systemd[529]: Listening on GnuPG network certificate management daemon.
Mar 11 06:32:37 yurius sudo[1110]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/ip link set enp2s0 up
Mar 11 06:32:37 yurius systemd-networkd[338]: enp2s0: Link UP
Mar 11 06:32:39 yurius systemd-networkd[338]: enp2s0: Gained carrier
Mar 11 06:32:40 yurius sudo[1113]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/dhcpcd enp2s0
Mar 11 06:32:40 yurius dhcpcd[1114]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 11 06:32:40 yurius dhcpcd[1114]: enp2s0: IAID 23:b6:e6:64
Mar 11 06:32:40 yurius dhcpcd[1114]: enp2s0: rebinding lease of 192.168.1.2
Mar 11 06:32:40 yurius dhcpcd[1114]: enp2s0: soliciting an IPv6 router
Mar 11 06:32:40 yurius dhcpcd[1114]: enp2s0: probing address 192.168.1.2/24
Mar 11 06:32:40 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Mar 11 06:32:40 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 06:32:45 yurius dhcpcd[1114]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 11 06:32:45 yurius dhcpcd[1114]: enp2s0: adding route to 192.168.1.0/24
Mar 11 06:32:45 yurius dhcpcd[1114]: enp2s0: adding default route via 192.168.1.1
Mar 11 06:32:45 yurius dhcpcd[1114]: forked to background, child pid 1222
Mar 11 06:32:52 yurius dhcpcd[1222]: enp2s0: no IPv6 Routers available
Mar 11 06:38:26 yurius dhcpcd[1222]: received SIGTERM, stopping
Mar 11 06:38:26 yurius dhcpcd[1222]: enp2s0: removing interface
Mar 11 06:38:26 yurius dhcpcd[1222]: dhcpcd exited
Mar 11 06:38:26 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 06:38:26 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 11 06:38:26 yurius systemd[529]: Closed GnuPG network certificate management daemon.
Mar 11 06:38:26 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 11 06:38:26 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 06:38:41 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 11 06:38:41 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 11 06:38:41 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 11 06:38:41 yurius systemd-networkd[336]: Enumeration completed
Mar 11 06:38:41 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 11 06:38:41 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 11 06:38:41 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Mar 11 06:38:41 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 06:38:42 yurius systemd-networkd[336]: enp2s0: Link UP
Mar 11 06:38:43 yurius systemd-networkd[336]: enp2s0: Gained carrier
Mar 11 06:38:44 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Mar 11 06:38:44 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 11 06:38:46 yurius systemd[525]: Listening on GnuPG network certificate management daemon.
Mar 11 06:38:56 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 07:54:19 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 07:54:19 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 11 07:54:20 yurius systemd[525]: Closed GnuPG network certificate management daemon.
Mar 11 07:54:20 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Mar 11 07:54:20 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 11 07:54:20 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 07:54:20 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 11 07:54:20 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 11 07:54:20 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 11 09:29:26 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 11 09:29:27 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 09:29:27 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 11 09:29:27 yurius systemd-networkd[335]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 11 09:29:27 yurius systemd-networkd[335]: Enumeration completed
Mar 11 09:29:27 yurius systemd-networkd[335]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 11 09:29:27 yurius systemd-networkd[335]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 11 09:29:27 yurius systemd-networkd[335]: enp2s0: IPv6 successfully enabled
Mar 11 09:29:27 yurius systemd-networkd[335]: enp2s0: Link UP
Mar 11 09:29:28 yurius systemd-networkd[335]: enp2s0: Gained carrier
Mar 11 09:29:29 yurius systemd-networkd[335]: enp2s0: Gained IPv6LL
Mar 11 09:29:45 yurius systemd-networkd[335]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 11 09:29:45 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 09:36:14 yurius systemd[538]: Listening on GnuPG network certificate management daemon.
Mar 11 10:50:21 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 10:50:21 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 11 10:50:21 yurius systemd[538]: Closed GnuPG network certificate management daemon.
Mar 11 10:50:21 yurius systemd-networkd[335]: enp2s0: DHCP lease lost
Mar 11 10:50:21 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 11 10:50:21 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 10:50:21 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 11 10:50:21 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 11 10:50:21 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 11 14:30:34 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 11 14:30:35 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 14:30:35 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 11 14:30:35 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 11 14:30:35 yurius systemd-networkd[336]: Enumeration completed
Mar 11 14:30:35 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 11 14:30:35 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 11 14:30:35 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Mar 11 14:30:35 yurius systemd-networkd[336]: enp2s0: Link UP
Mar 11 14:30:36 yurius systemd-networkd[336]: enp2s0: Gained carrier
Mar 11 14:30:38 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Mar 11 14:30:39 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 11 14:30:50 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 14:31:04 yurius systemd[538]: Listening on GnuPG network certificate management daemon.
Mar 11 19:04:37 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 11 19:04:37 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 19:04:37 yurius systemd[538]: Closed GnuPG network certificate management daemon.
Mar 11 19:04:37 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Mar 11 19:04:37 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 11 19:04:37 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 11 19:04:37 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 11 19:04:37 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 11 19:04:37 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 12 06:33:36 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 12 06:33:37 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 12 06:33:37 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 12 06:33:37 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 12 06:33:37 yurius systemd-networkd[336]: Enumeration completed
Mar 12 06:33:37 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 12 06:33:37 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 12 06:33:37 yurius systemd-networkd[336]: enp2s0: IPv6 successfully enabled
Mar 12 06:33:37 yurius systemd-networkd[336]: enp2s0: Link UP
Mar 12 06:33:39 yurius systemd-networkd[336]: enp2s0: Gained carrier
Mar 12 06:33:40 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Mar 12 06:33:41 yurius systemd-networkd[336]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 12 06:33:44 yurius systemd[522]: Listening on GnuPG network certificate management daemon.
Mar 12 06:33:52 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 12 20:35:24 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 12 20:35:24 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 12 20:35:24 yurius systemd[522]: Closed GnuPG network certificate management daemon.
Mar 12 20:35:24 yurius systemd-networkd[336]: enp2s0: DHCP lease lost
Mar 12 20:35:24 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 12 20:35:24 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 12 20:35:24 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 12 20:35:24 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Mar 12 20:35:24 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 13 06:32:11 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 13 06:32:12 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 06:32:12 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 13 06:32:12 yurius systemd-networkd[337]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.
Mar 13 06:32:12 yurius systemd-networkd[337]: Enumeration completed
Mar 13 06:32:12 yurius systemd-networkd[337]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 13 06:32:12 yurius systemd-networkd[337]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 13 06:32:12 yurius systemd-networkd[337]: enp2s0: IPv6 successfully enabled
Mar 13 06:32:12 yurius systemd-networkd[337]: enp2s0: Link UP
Mar 13 06:32:13 yurius systemd-networkd[337]: enp2s0: Gained carrier
Mar 13 06:32:15 yurius systemd-networkd[337]: enp2s0: Gained IPv6LL
Mar 13 06:32:16 yurius systemd-networkd[337]: enp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
Mar 13 06:32:27 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 06:36:00 yurius systemd[546]: Listening on GnuPG network certificate management daemon.
Mar 13 06:40:46 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 13 06:40:46 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 06:40:46 yurius systemd-udevd[330]: /usr/lib/systemd/network/99-default.link:7: Unknown key name 'AlternativeNamesPolicy' in section 'Link', ignoring.
Mar 13 06:40:47 yurius systemd[546]: Closed GnuPG network certificate management daemon.
Mar 13 06:40:47 yurius systemd-networkd[337]: enp2s0: DHCP lease lost
Mar 13 06:40:47 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 13 06:40:47 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 06:40:47 yurius systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Mar 13 06:40:47 yurius systemd[1]: systemd-networkd.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-networkd.service/start is destructive (reboot.target has 'start' job queued, but 'stop' is included in transaction).
Mar 13 06:40:47 yurius systemd[1]: systemd-networkd.socket: Failed with result 'resources'.
Mar 13 06:41:02 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 13 06:41:03 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 13 06:41:03 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 13 06:41:03 yurius systemd-networkd[336]: Enumeration completed
Mar 13 06:41:03 yurius systemd-networkd[336]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 13 06:41:03 yurius systemd-networkd[336]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 13 06:41:03 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 06:41:07 yurius systemd[528]: Listening on GnuPG network certificate management daemon.
Mar 13 06:43:04 yurius systemd-networkd-wait-online[484]: Event loop failed: Connection timed out
Mar 13 06:43:04 yurius systemd[1]: systemd-networkd-wait-online.service: Main process exited, code=exited, status=1/FAILURE
Mar 13 06:43:04 yurius systemd[1]: systemd-networkd-wait-online.service: Failed with result 'exit-code'.
Mar 13 06:43:04 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Mar 13 06:48:24 yurius sudo[1125]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/systemctl status [email protected]
Mar 13 06:49:18 yurius sudo[1131]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/systemctl start [email protected]
Mar 13 06:49:18 yurius systemd[1]: Created slice system-dhcpcd.slice.
Mar 13 06:49:18 yurius systemd[1]: Starting dhcpcd on enp2s0...
Mar 13 06:49:18 yurius dhcpcd[1134]: enp2s0: waiting for carrier
Mar 13 06:49:18 yurius systemd-networkd[336]: enp2s0: Link UP
Mar 13 06:49:18 yurius dhcpcd[1134]: enp2s0: carrier acquired
Mar 13 06:49:18 yurius dhcpcd[1134]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 13 06:49:18 yurius dhcpcd[1134]: enp2s0: IAID 23:b6:e6:64
Mar 13 06:49:18 yurius dhcpcd[1134]: enp2s0: adding address fe80::c05b:9fcf:67e6:7428
Mar 13 06:49:18 yurius dhcpcd[1134]: enp2s0: carrier lost
Mar 13 06:49:18 yurius dhcpcd[1134]: enp2s0: deleting address fe80::c05b:9fcf:67e6:7428
Mar 13 06:49:20 yurius systemd-networkd[336]: enp2s0: Gained carrier
Mar 13 06:49:20 yurius dhcpcd[1134]: enp2s0: carrier acquired
Mar 13 06:49:20 yurius dhcpcd[1134]: enp2s0: IAID 23:b6:e6:64
Mar 13 06:49:20 yurius dhcpcd[1134]: enp2s0: adding address fe80::c05b:9fcf:67e6:7428
Mar 13 06:49:20 yurius dhcpcd[1134]: enp2s0: soliciting an IPv6 router
Mar 13 06:49:21 yurius dhcpcd[1134]: enp2s0: rebinding lease of 192.168.1.2
Mar 13 06:49:21 yurius dhcpcd[1134]: enp2s0: probing address 192.168.1.2/24
Mar 13 06:49:21 yurius systemd-networkd[336]: enp2s0: Gained IPv6LL
Mar 13 06:49:26 yurius dhcpcd[1134]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 13 06:49:26 yurius dhcpcd[1134]: enp2s0: adding route to 192.168.1.0/24
Mar 13 06:49:26 yurius dhcpcd[1134]: enp2s0: adding default route via 192.168.1.1
Mar 13 06:49:26 yurius dhcpcd[1134]: forked to background, child pid 1259
Mar 13 06:49:26 yurius systemd[1]: Started dhcpcd on enp2s0.
Mar 13 06:49:26 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dhcpcd@enp2s0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 06:49:33 yurius dhcpcd[1259]: enp2s0: no IPv6 Routers available
Mar 13 06:49:34 yurius sudo[1304]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/systemctl enable [email protected]
Mar 13 06:49:48 yurius systemd[528]: Closed GnuPG network certificate management daemon.
Mar 13 06:49:48 yurius systemd[1]: Stopping dhcpcd on enp2s0...
Mar 13 06:49:48 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 13 06:49:48 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 06:49:48 yurius dhcpcd[1442]: sending signal TERM to pid 1259
Mar 13 06:49:48 yurius dhcpcd[1442]: waiting for pid 1259 to exit
Mar 13 06:49:48 yurius dhcpcd[1442]: sending signal TERM to pid 1259
Mar 13 06:49:48 yurius dhcpcd[1442]: waiting for pid 1259 to exit
Mar 13 06:49:48 yurius dhcpcd[1259]: received SIGTERM, stopping
Mar 13 06:49:48 yurius dhcpcd[1259]: enp2s0: removing interface
Mar 13 06:49:48 yurius dhcpcd[1259]: dhcpcd exited
Mar 13 06:49:48 yurius systemd[1]: [email protected]: Succeeded.
Mar 13 06:49:48 yurius systemd[1]: Stopped dhcpcd on enp2s0.
Mar 13 06:49:48 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dhcpcd@enp2s0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 06:49:48 yurius systemd[1]: Removed slice system-dhcpcd.slice.
Mar 13 06:50:03 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 13 06:50:03 yurius systemd[1]: Created slice system-dhcpcd.slice.
Mar 13 06:50:03 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 13 06:50:03 yurius systemd-networkd[339]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 13 06:50:03 yurius systemd-networkd[339]: Enumeration completed
Mar 13 06:50:03 yurius systemd-networkd[339]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 13 06:50:03 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 06:50:03 yurius systemd-networkd[339]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 13 06:50:04 yurius systemd[1]: Starting dhcpcd on enp2s0...
Mar 13 06:50:04 yurius systemd-networkd[339]: enp2s0: Link UP
Mar 13 06:50:04 yurius dhcpcd[498]: enp2s0: waiting for carrier
Mar 13 06:50:04 yurius dhcpcd[498]: enp2s0: carrier acquired
Mar 13 06:50:04 yurius dhcpcd[498]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 13 06:50:04 yurius dhcpcd[498]: enp2s0: IAID 23:b6:e6:64
Mar 13 06:50:04 yurius dhcpcd[498]: enp2s0: adding address fe80::c05b:9fcf:67e6:7428
Mar 13 06:50:04 yurius dhcpcd[498]: enp2s0: carrier lost
Mar 13 06:50:04 yurius dhcpcd[498]: enp2s0: deleting address fe80::c05b:9fcf:67e6:7428
Mar 13 06:50:05 yurius dhcpcd[498]: enp2s0: carrier acquired
Mar 13 06:50:05 yurius systemd-networkd[339]: enp2s0: Gained carrier
Mar 13 06:50:05 yurius dhcpcd[498]: enp2s0: IAID 23:b6:e6:64
Mar 13 06:50:05 yurius dhcpcd[498]: enp2s0: adding address fe80::c05b:9fcf:67e6:7428
Mar 13 06:50:06 yurius dhcpcd[498]: enp2s0: rebinding lease of 192.168.1.2
Mar 13 06:50:06 yurius dhcpcd[498]: enp2s0: probing address 192.168.1.2/24
Mar 13 06:50:06 yurius dhcpcd[498]: enp2s0: soliciting an IPv6 router
Mar 13 06:50:07 yurius systemd-networkd[339]: enp2s0: Gained IPv6LL
Mar 13 06:50:07 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 06:50:10 yurius dhcpcd[498]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 13 06:50:10 yurius dhcpcd[498]: enp2s0: adding route to 192.168.1.0/24
Mar 13 06:50:10 yurius dhcpcd[498]: enp2s0: adding default route via 192.168.1.1
Mar 13 06:50:10 yurius dhcpcd[498]: forked to background, child pid 565
Mar 13 06:50:10 yurius systemd[1]: Started dhcpcd on enp2s0.
Mar 13 06:50:10 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dhcpcd@enp2s0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 06:50:13 yurius systemd[609]: Listening on GnuPG network certificate management daemon.
Mar 13 06:50:19 yurius dhcpcd[565]: enp2s0: no IPv6 Routers available
Mar 13 07:01:04 yurius sudo[1446]:   yurius : TTY=pts/0 ; PWD=/home/yurius ; USER=root ; COMMAND=/usr/bin/systemctl status [email protected]
Mar 13 07:22:47 yurius systemd[1]: systemd-networkd-wait-online.service: Succeeded.
Mar 13 07:22:47 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 07:22:47 yurius systemd[609]: Closed GnuPG network certificate management daemon.
Mar 13 07:22:47 yurius systemd[1]: Stopping dhcpcd on enp2s0...
Mar 13 07:22:47 yurius systemd[1]: systemd-networkd.service: Succeeded.
Mar 13 07:22:47 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 07:22:47 yurius dhcpcd[1724]: sending signal TERM to pid 565
Mar 13 07:22:47 yurius dhcpcd[1724]: waiting for pid 565 to exit
Mar 13 07:22:47 yurius dhcpcd[1724]: sending signal TERM to pid 565
Mar 13 07:22:47 yurius dhcpcd[1724]: waiting for pid 565 to exit
Mar 13 07:22:47 yurius dhcpcd[565]: received SIGTERM, stopping
Mar 13 07:22:47 yurius dhcpcd[565]: enp2s0: removing interface
Mar 13 07:22:47 yurius dhcpcd[565]: dhcpcd exited
Mar 13 07:22:47 yurius systemd[1]: [email protected]: Succeeded.
Mar 13 07:22:47 yurius systemd[1]: Stopped dhcpcd on enp2s0.
Mar 13 07:22:47 yurius audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dhcpcd@enp2s0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 07:22:47 yurius systemd[1]: Removed slice system-dhcpcd.slice.
Mar 13 07:23:03 yurius kernel: drop_monitor: Initializing network drop monitor service
Mar 13 07:23:03 yurius systemd[1]: Created slice system-dhcpcd.slice.
Mar 13 07:23:03 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network:2: Unknown key name 'name' in section 'Match', ignoring.
Mar 13 07:23:03 yurius systemd-networkd[338]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section, ignoring file. To match all interfaces, add Name=* in the [Match] section.
Mar 13 07:23:03 yurius systemd-networkd[338]: Enumeration completed
Mar 13 07:23:03 yurius systemd-networkd[338]: enp2s0: Interface name change detected, enp2s0 has been renamed to eth0.
Mar 13 07:23:03 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 07:23:03 yurius systemd-networkd[338]: eth0: Interface name change detected, eth0 has been renamed to enp2s0.
Mar 13 07:23:04 yurius systemd[1]: Starting dhcpcd on enp2s0...
Mar 13 07:23:04 yurius systemd-networkd[338]: enp2s0: Link UP
Mar 13 07:23:04 yurius dhcpcd[498]: enp2s0: waiting for carrier
Mar 13 07:23:04 yurius dhcpcd[498]: enp2s0: carrier acquired
Mar 13 07:23:04 yurius dhcpcd[498]: DUID 00:04:00:00:00:00:00:00:00:00:00:00:30:9c:23:b6:e6:64
Mar 13 07:23:04 yurius dhcpcd[498]: enp2s0: IAID 23:b6:e6:64
Mar 13 07:23:04 yurius dhcpcd[498]: enp2s0: adding address fe80::c05b:9fcf:67e6:7428
Mar 13 07:23:04 yurius dhcpcd[498]: enp2s0: carrier lost
Mar 13 07:23:04 yurius dhcpcd[498]: enp2s0: deleting address fe80::c05b:9fcf:67e6:7428
Mar 13 07:23:05 yurius dhcpcd[498]: enp2s0: carrier acquired
Mar 13 07:23:05 yurius systemd-networkd[338]: enp2s0: Gained carrier
Mar 13 07:23:05 yurius dhcpcd[498]: enp2s0: IAID 23:b6:e6:64
Mar 13 07:23:05 yurius dhcpcd[498]: enp2s0: adding address fe80::c05b:9fcf:67e6:7428
Mar 13 07:23:06 yurius dhcpcd[498]: enp2s0: soliciting an IPv6 router
Mar 13 07:23:06 yurius dhcpcd[498]: enp2s0: rebinding lease of 192.168.1.2
Mar 13 07:23:06 yurius dhcpcd[498]: enp2s0: probing address 192.168.1.2/24
Mar 13 07:23:07 yurius systemd-networkd[338]: enp2s0: Gained IPv6LL
Mar 13 07:23:07 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 07:23:12 yurius dhcpcd[498]: enp2s0: leased 192.168.1.2 for 604800 seconds
Mar 13 07:23:12 yurius dhcpcd[498]: enp2s0: adding route to 192.168.1.0/24
Mar 13 07:23:12 yurius dhcpcd[498]: enp2s0: adding default route via 192.168.1.1
Mar 13 07:23:12 yurius dhcpcd[498]: forked to background, child pid 565
Mar 13 07:23:12 yurius systemd[1]: Started dhcpcd on enp2s0.
Mar 13 07:23:12 yurius audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dhcpcd@enp2s0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 13 07:23:16 yurius systemd[609]: Listening on GnuPG network certificate management daemon.
Mar 13 07:23:19 yurius dhcpcd[565]: enp2s0: no IPv6 Routers available
Ну вот видно что раньше у вас сеть поднимал systemd-networkd.service
Смотрите его сообщения
 journalctl -u systemd-networkd.service
Интересно девки пляшут... Сейчас просмотрел последний лог, и нашёл там вот эту запись:

Jan 09 14:00:00 yurius systemd-networkd[336]: /etc/systemd/network/enp2s0.network: No valid settings found in the [Match] section. The file will match all interfaces. If that is intended, please add Name=* in the [Match] section.

Изначально (и всю жизнь) у меня в /etc/systemd/network/enp2s0.network было вот что:

[Match]
name=en*
[Network]
DHCP=yes

- и это всегда работало. Решил сделать, как в подсказке в логе - то есть переправил файл на:

[Match]
Name=*
[Network]
DHCP=yes

, отключил [email protected], перезагрузился - и вуаля, инет есть! Таким образом, это второе РЕШЕНИЕ проблемы.

С чего вдруг понадобилась такая странная правка - в слове "name" писать большую "N" вместо маленькой, и вместо "en*" - просто "*". Что за нововведение такое?
yurius
вместо "en*" - просто "*"
По идеи имя интерфейса( Name=enp2s0 ), потому что "*" будет на все распространяться

yurius
в слове "name" писать большую "N" вместо маленькой
надо смотреть ман и ченжлог на предмет конфига и его изменения
vs220
По идеи имя интерфейса( Name=enp2s0 ), потому что "*" будет на все распространяться

На что именно "на все"?
 
Зарегистрироваться или войдите чтобы оставить сообщение.