Last active
October 25, 2017 03:17
-
-
Save dmsimard/60153096fbda4e2aa953dc757f74dc94 to your computer and use it in GitHub Desktop.
journalctl -u NetworkManager-dispatcher
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bash-4.2# ifconfig | |
docker0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 | |
inet 172.17.0.1 netmask 255.255.0.0 broadcast 0.0.0.0 | |
ether 02:42:c0:f5:b0:7b txqueuelen 0 (Ethernet) | |
RX packets 0 bytes 0 (0.0 B) | |
RX errors 0 dropped 0 overruns 0 frame 0 | |
TX packets 0 bytes 0 (0.0 B) | |
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 | |
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1450 | |
inet 192.168.1.37 netmask 255.255.255.0 broadcast 192.168.1.255 | |
inet6 fe80::f816:3eff:feb5:8519 prefixlen 64 scopeid 0x20<link> | |
ether fa:16:3e:b5:85:19 txqueuelen 1000 (Ethernet) | |
RX packets 76819 bytes 335525037 (319.9 MiB) | |
RX errors 0 dropped 0 overruns 0 frame 0 | |
TX packets 72892 bytes 19676310 (18.7 MiB) | |
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 | |
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 | |
inet 127.0.0.1 netmask 255.0.0.0 | |
inet6 ::1 prefixlen 128 scopeid 0x10<host> | |
loop txqueuelen 1 (Local Loopback) | |
RX packets 278713 bytes 161690978 (154.2 MiB) | |
RX errors 0 dropped 0 overruns 0 frame 0 | |
TX packets 278713 bytes 161690978 (154.2 MiB) | |
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 | |
bash-4.2# netstat -rn | |
Kernel IP routing table | |
Destination Gateway Genmask Flags MSS Window irtt Iface | |
0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 eth0 | |
169.254.169.254 192.168.1.1 255.255.255.255 UGH 0 0 0 eth0 | |
172.17.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker0 | |
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0 | |
bash-4.2# ip addr show | |
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN qlen 1 | |
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 | |
inet 127.0.0.1/8 scope host lo | |
valid_lft forever preferred_lft forever | |
inet6 ::1/128 scope host | |
valid_lft forever preferred_lft forever | |
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1450 qdisc pfifo_fast state UP qlen 1000 | |
link/ether fa:16:3e:b5:85:19 brd ff:ff:ff:ff:ff:ff | |
inet 192.168.1.37/24 brd 192.168.1.255 scope global dynamic eth0 | |
valid_lft 82587sec preferred_lft 82587sec | |
inet6 fe80::f816:3eff:feb5:8519/64 scope link | |
valid_lft forever preferred_lft forever | |
3: docker0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN | |
link/ether 02:42:c0:f5:b0:7b brd ff:ff:ff:ff:ff:ff | |
inet 172.17.0.1/16 scope global docker0 | |
valid_lft forever preferred_lft forever | |
bash-4.2# ip route show | |
default via 192.168.1.1 dev eth0 | |
169.254.169.254 via 192.168.1.1 dev eth0 proto static | |
172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 | |
192.168.1.0/24 dev eth0 proto kernel scope link src 192.168.1.37 | |
bash-4.2# ip route list match 0.0.0.0/0 | |
default via 192.168.1.1 dev eth0 | |
bash-4.2# ip route get to 192.168.1.1 | |
192.168.1.1 dev eth0 src 192.168.1.37 | |
cache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: req:1 'hostname': new request (4 scripts) | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: req:1 'hostname': start running ordered scripts... | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: req:2 'up' [docker0]: new request (4 scripts) | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + cd /etc/sysconfig/network-scripts | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + . ./network-functions | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ PATH=/sbin:/usr/sbin:/bin:/usr/bin | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ export PATH | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ hostname | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ HOSTNAME=rdo-centos-7-rdo-cloud-24507 | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ '[' -z '' ']' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ . /etc/init.d/functions | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ TEXTDOMAIN=initscripts | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ umask 022 | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ PATH=/sbin:/usr/sbin:/bin:/usr/bin | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ export PATH | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' 19096 -ne 1 -a -z '' ']' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -d /run/systemd/system ']' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ case "$0" in | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -z '' ']' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ COLUMNS=80 | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -z '' ']' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -c /dev/stderr -a -r /dev/stderr ']' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ CONSOLETYPE=serial | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -z '' ']' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -z '' ']' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -f /etc/sysconfig/i18n -o -f /etc/locale.conf ']' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ . /etc/profile.d/lang.sh | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ unset LANGSH_SOURCED | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -z '' ']' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -f /etc/sysconfig/init ']' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ . /etc/sysconfig/init | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ BOOTUP=color | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ RES_COL=60 | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ MOVE_TO_COL='echo -en \033[60G' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ SETCOLOR_SUCCESS='echo -en \033[0;32m' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ SETCOLOR_FAILURE='echo -en \033[0;31m' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ SETCOLOR_WARNING='echo -en \033[0;33m' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ SETCOLOR_NORMAL='echo -en \033[0;39m' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' serial = serial ']' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ BOOTUP=serial | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ MOVE_TO_COL= | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ SETCOLOR_SUCCESS= | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ SETCOLOR_FAILURE= | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ SETCOLOR_WARNING= | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ SETCOLOR_NORMAL= | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ __sed_discard_ignored_files='/\(~\|\.bak\|\.orig\|\.rpmnew\|\.rpmorig\|\.rpmsave\)$/d' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' '' = 1 ']' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ cat /proc/cmdline | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ strstr 'BOOT_IMAGE=/boot/vmlinuz-3.10.0-693.5.2.el7.x86_64 root=LABEL=cloudimg-rootfs ro nofb nomodeset vga=normal console=tty0 console=ttyS0,115200 no_timer_check' rc.debug | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' 'BOOT_IMAGE=/boot/vmlinuz-3.10.0-693.5.2.el7.x86_64 root=LABEL=cloudimg-rootfs ro nofb nomodeset vga=normal console=tty0 console=ttyS0,115200 no_timer_check' = 'BOOT_IMAGE=/boot/vmlinuz-3.10.0-693.5.2.el7.x86_64 root=LABEL=cloudimg-rootfs ro nofb nomodeset vga=normal console=tty0 console=ttyS0,115200 no_timer_check' ']' | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ return 1 | |
Oct 25 02:30:51 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ return 0 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + '[' -f ../network ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + . ../network | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ NETWORKING=yes | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ NETWORKING_IPV6=yes | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ NOZEROCONF=yes | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + [[ hostname =~ ^(up|dhcp4-change|dhcp6-change)$ ]] | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: req:2 'up' [docker0]: start running ordered scripts... | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + cd /etc/sysconfig/network-scripts | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + . ./network-functions | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ PATH=/sbin:/usr/sbin:/bin:/usr/bin | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ export PATH | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ hostname | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ HOSTNAME=rdo-centos-7-rdo-cloud-24507 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ '[' -z '' ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ . /etc/init.d/functions | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ TEXTDOMAIN=initscripts | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ umask 022 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ PATH=/sbin:/usr/sbin:/bin:/usr/bin | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ export PATH | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' 19096 -ne 1 -a -z '' ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -d /run/systemd/system ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ case "$0" in | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -z '' ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ COLUMNS=80 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -z '' ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -c /dev/stderr -a -r /dev/stderr ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ CONSOLETYPE=serial | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -z '' ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -z '' ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -f /etc/sysconfig/i18n -o -f /etc/locale.conf ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ . /etc/profile.d/lang.sh | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ unset LANGSH_SOURCED | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -z '' ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' -f /etc/sysconfig/init ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ . /etc/sysconfig/init | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ BOOTUP=color | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ RES_COL=60 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ MOVE_TO_COL='echo -en \033[60G' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ SETCOLOR_SUCCESS='echo -en \033[0;32m' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ SETCOLOR_FAILURE='echo -en \033[0;31m' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ SETCOLOR_WARNING='echo -en \033[0;33m' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ SETCOLOR_NORMAL='echo -en \033[0;39m' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' serial = serial ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ BOOTUP=serial | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ MOVE_TO_COL= | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ SETCOLOR_SUCCESS= | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ SETCOLOR_FAILURE= | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ SETCOLOR_WARNING= | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ SETCOLOR_NORMAL= | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ __sed_discard_ignored_files='/\(~\|\.bak\|\.orig\|\.rpmnew\|\.rpmorig\|\.rpmsave\)$/d' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' '' = 1 ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++++ cat /proc/cmdline | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ strstr 'BOOT_IMAGE=/boot/vmlinuz-3.10.0-693.5.2.el7.x86_64 root=LABEL=cloudimg-rootfs ro nofb nomodeset vga=normal console=tty0 console=ttyS0,115200 no_timer_check' rc.debug | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ '[' 'BOOT_IMAGE=/boot/vmlinuz-3.10.0-693.5.2.el7.x86_64 root=LABEL=cloudimg-rootfs ro nofb nomodeset vga=normal console=tty0 console=ttyS0,115200 no_timer_check' = 'BOOT_IMAGE=/boot/vmlinuz-3.10.0-693.5.2.el7.x86_64 root=LABEL=cloudimg-rootfs ro nofb nomodeset vga=normal console=tty0 console=ttyS0,115200 no_timer_check' ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ return 1 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: +++ return 0 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + '[' -f ../network ']' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + . ../network | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ NETWORKING=yes | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ NETWORKING_IPV6=yes | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ NOZEROCONF=yes | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + [[ up =~ ^(up|dhcp4-change|dhcp6-change)$ ]] | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + NEEDS_RESTART=0 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + UPSTREAM_DNS=/etc/dnsmasq.d/origin-upstream-dns.conf | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ mktemp | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + UPSTREAM_DNS_TMP=/tmp/tmp.4DIyCto51h | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ mktemp | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + UPSTREAM_DNS_TMP_SORTED=/tmp/tmp.UJ3jaeYa2X | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ mktemp | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + CURRENT_UPSTREAM_DNS_SORTED=/tmp/tmp.UhUZewhV1n | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ mktemp | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + NEW_RESOLV_CONF=/tmp/tmp.LSoVelkQjF | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ mktemp | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + NEW_NODE_RESOLV_CONF=/tmp/tmp.wirstRCbh2 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ /sbin/ip route list match 0.0.0.0/0 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ awk '{print $3 }' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + def_route=192.168.1.1 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ /sbin/ip route get to 192.168.1.1 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ awk '{print $3}' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + def_route_int=eth0 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ /sbin/ip route get to 192.168.1.1 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: ++ awk '{print $5}' | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + def_route_ip=192.168.1.37 | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + [[ docker0 == eth0 ]] | |
Oct 25 02:30:52 rdo-centos-7-rdo-cloud-24507 nm-dispatcher[19096]: + rm -f /tmp/tmp.4DIyCto51h /tmp/tmp.UJ3jaeYa2X /tmp/tmp.UhUZewhV1n /tmp/tmp.LSoVelkQjF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment