Ubuntu Bionic Server edition + Netplan: Not getting static IP on a ethernet connection The Next CEO of Stack OverflowUbuntu 17.10 adding multiple static routes for NIC with NetplanNetPlan Static IP address not acceptiingnetplan bridge for one static interface not workingUbuntu Server Netplan for Wifi and EthernetStatic IP config for Ubuntu Server 18.04 LTS w/ netplanWhy is Netplan/Networkd not bringing up a static ethernet interface?netplan reports error on Ubuntu 18.04 serverHow to configure two static interfaces in virtuabox ubuntu server 18.04 guest using netplanIssues setting static IP using netplan Ubuntu Server 18.04 LTSNetplan - Ethernet when available, wifi when not. Reconnect if needed
How to invert MapIndexed on a ragged structure? How to construct a tree from rules?
How do I reset passwords on multiple websites easily?
Why am I allowed to create multiple unique pointers from a single object?
Complex fractions
Why don't programming languages automatically manage the synchronous/asynchronous problem?
Why does standard notation not preserve intervals (visually)
Would a completely good Muggle be able to use a wand?
How do I avoid eval and parse?
Unreliable Magic - Is it worth it?
I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin
Is it professional to write unrelated content in an almost-empty email?
Why do professional authors make "consistency" mistakes? And how to avoid them?
What is the result of assigning to std::vector<T>::begin()?
How powerful is the invisibility granted by the Gloom Stalker ranger's Umbral Sight feature?
Is 'diverse range' a pleonastic phrase?
Written every which way
Several mode to write the symbol of a vector
Why does the UK parliament need a vote on the political declaration?
Which tube will fit a -(700 x 25c) wheel?
How do scammers retract money, while you can’t?
Do I need to enable Dev Hub in my PROD Org?
Can you replace a racial trait cantrip when leveling up?
Can I equip Skullclamp on a creature I am sacrificing?
sp_blitzCache results Memory grants
Ubuntu Bionic Server edition + Netplan: Not getting static IP on a ethernet connection
The Next CEO of Stack OverflowUbuntu 17.10 adding multiple static routes for NIC with NetplanNetPlan Static IP address not acceptiingnetplan bridge for one static interface not workingUbuntu Server Netplan for Wifi and EthernetStatic IP config for Ubuntu Server 18.04 LTS w/ netplanWhy is Netplan/Networkd not bringing up a static ethernet interface?netplan reports error on Ubuntu 18.04 serverHow to configure two static interfaces in virtuabox ubuntu server 18.04 guest using netplanIssues setting static IP using netplan Ubuntu Server 18.04 LTSNetplan - Ethernet when available, wifi when not. Reconnect if needed
Problem: I cannot get a static IP on the ethernet port.
Aim: Trying to setup a static IP on the Realtek built-in ethernet (enp3s0) port so I can connect the server to my desktop via a crossover cable. At the moment, there is no cable connected between the 2.
Setup: Ubuntu Bionic server edition with Intel WiFi card and a Reaktek ethernet port. During installation, I had to connect the ethernet port to my modem/router as the Ubuntu installer cannot recognize my WiFi card.
Things I've tried:
I disabled my WiFi card and then I've tried using just "dchp4: true" and then connected a cable from the port to my modem/router. No issues getting an IP and pinging a site.
I've tried with and without "renderer: networkd", no difference.
I've tried with and without "dhcp4" false", no difference.
I've tried with and without gateway4, no difference.
I've tried with and without nameservers, no difference.
sudo netplan --debug apply doesn't show any errors
I looked at the generated config inside /run/systemd/network (included below) and looks ok.
Debugged systemd-networkd as suggested by this page (https://wiki.ubuntu.com/DebuggingSystemd) and I can see this line: "enp3s0: Link is not managed by us". That doesn't seemed right as I don't have anything else managing my interfaces and as I said in no.1, using DHCP worked.
Here's my current config:
>cat /etc/netplan/01-wireless.yaml
network:
version: 2
renderer: networkd
wifis:
wlp2s0:
dhcp4: true
access-points:
"insert-access-point-here":
password: "insert-password-here"
>cat /etc/netplan/02-ethernet.yaml
network:
version: 2
renderer: networkd
ethernets:
enp3s0:
dhcp4: no
dhcp6: yes
addresses: [192.168.100.40/24]
gateway4: 192.168.100.1
nameservers:
addresses: [8.8.8.8,8.8.4.4]
>cat /run/systemd/network/10-netplan-wlp2s0.network
[Match]
Name=wlp2s0
[Network]
DHCP=ipv4
LinkLocalAddressing=ipv6
[DHCP]
UseMTU=true
RouteMetric=600
>cat /run/systemd/network/10-netplan-enp3s0.network
[Match]
Name=enp3s0
[Network]
LinkLocalAddressing=ipv6
Address=192.168.2.1/24
Gateway=192.168.2.254
Results of netplan --debug apply
sudo netplan --debug apply
** (generate:13784): DEBUG: 03:16:37.754: Processing input file /etc/netplan/01-wireless.yaml..
** (generate:13784): DEBUG: 03:16:37.755: starting new processing pass
** (generate:13784): DEBUG: 03:16:37.755: wlp2s0: adding wifi AP 'myhotspot'
** (generate:13784): DEBUG: 03:16:37.755: Processing input file /etc/netplan/02-ethernet.yaml..
** (generate:13784): DEBUG: 03:16:37.755: starting new processing pass
** (generate:13784): DEBUG: 03:16:37.755: wlp2s0: setting default backend to 1
** (generate:13784): DEBUG: 03:16:37.755: enp3s0: setting default backend to 1
** (generate:13784): DEBUG: 03:16:37.755: Generating output files..
** (generate:13784): DEBUG: 03:16:37.755: wlp2s0: Creating wpa_supplicant configuration file run/netplan/wpa-wlp2s0.conf
** (generate:13784): DEBUG: 03:16:37.755: Creating wpa_supplicant service enablement link /run/systemd/system/multi-user.target.wants/netplan-wpa@wlp2s0.service
** (generate:13784): DEBUG: 03:16:37.755: NetworkManager: definition wlp2s0 is not for us (backend 1)
** (generate:13784): DEBUG: 03:16:37.755: NetworkManager: definition enp3s0 is not for us (backend 1)
DEBUG:netplan generated networkd configuration exists, restarting networkd
DEBUG:no netplan generated NM configuration exists
DEBUG:wlp2s0 not found in
DEBUG:enp3s0 not found in
DEBUG:Merged config:
network:
bonds:
bridges:
ethernets:
enp3s0:
addresses:
- 192.168.100.40/24
dhcp4: false
dhcp6: true
gateway4: 192.168.100.1
nameservers:
addresses:
- 8.8.8.8
- 8.8.4.4
vlans:
wifis:
wlp2s0:
access-points:
insert-access-point-here:
password: insert-password-here
dhcp4: true
DEBUG:Skipping non-physical interface: lo
DEBUG:device wlp2s0 operstate is up, not changing
DEBUG:
DEBUG:netplan triggering .link rules for lo
DEBUG:netplan triggering .link rules for enp3s0
DEBUG:netplan triggering .link rules for wlp2s0
Results of systemd networkd debugging:
>sudo SYSTEMD_LOG_LEVEL=debug /lib/systemd/systemd-networkd
Failed to read $container of PID 1, ignoring: Permission denied
Found container virtualization none.
Bus n/a: changing state UNSET → OPENING
Bus n/a: changing state OPENING → AUTHENTICATING
Failed to open configuration file '/etc/systemd/networkd.conf': No such file or directory
timestamp of '/etc/systemd/network' changed
timestamp of '/run/systemd/network' changed
Ignoring /run/systemd/network/10-netplan-enp3s0.network, because it's not a regular file with suffix .netdev.
Ignoring /run/systemd/network/10-netplan-wlp2s0.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/99-default.link, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/80-container-ve.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/80-container-vz.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/80-container-host0.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/99-default.link, because it's not a regular file with suffix .network.
wlp2s0: Flags change: +UP +LOWER_UP +RUNNING +MULTICAST +BROADCAST
wlp2s0: Link 3 added
wlp2s0: udev initialized link
wlp2s0: Saved original MTU: 1500
enp3s0: Flags change: +UP +MULTICAST +BROADCAST
enp3s0: Link 2 added
enp3s0: udev initialized link
enp3s0: Saved original MTU: 1500
lo: Flags change: +LOOPBACK +UP +LOWER_UP +RUNNING
lo: Link 1 added
lo: udev initialized link
lo: Saved original MTU: 0
wlp2s0: Adding address: fe80::3613:e8ff:fe41:a078/64 (valid forever)
wlp2s0: Gained IPv6LL
lo: Adding address: ::1/128 (valid forever)
wlp2s0: Adding address: 192.168.1.2/24 (valid forever)
lo: Adding address: 127.0.0.1/8 (valid forever)
rtnl: received address with invalid family 129, ignoring
Enumeration completed
Bus n/a: changing state AUTHENTICATING → HELLO
Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=Hello cookie=1 reply_cookie=0 signature=n/a error-name=n/a error-message=n/a
Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=RequestName cookie=2 reply_cookie=0 signature=su error-name=n/a error-message=n/a
Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=AddMatch cookie=3 reply_cookie=0 signature=s error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=4 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_32 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=5 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_31 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=6 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=7 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=8 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=9 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
wlp2s0: Link state is up-to-date
wlp2s0: found matching network '/run/systemd/network/10-netplan-wlp2s0.network'
enp3s0: Link is not managed by us
lo: Link is not managed by us
LLDP: Started LLDP client
wlp2s0: Started LLDP.
wlp2s0: Acquiring DHCPv4 lease
DHCP CLIENT (0x8f3ad0c0): STARTED on ifindex 3
wlp2s0: Discovering IPv6 routers
NDISC: Started IPv6 Router Solicitation client
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=10 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=11 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=12 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
NDISC: Sent Router Solicitation, next solicitation in 3s
Got message type=method_return sender=org.freedesktop.DBus destination=:1.12 path=n/a interface=n/a member=n/a cookie=1 reply_cookie=1 signature=s error-name=n/a error-message=n/a
Bus n/a: changing state HELLO → RUNNING
DHCP CLIENT (0x8f3ad0c0): DISCOVER
Got message type=signal sender=org.freedesktop.DBus.Local destination=n/a path=/org/freedesktop/DBus/Local interface=org.freedesktop.DBus.Local member=Connected cookie=4294967295 reply_cookie=0 signature=n/a error-name=n/a error-message=n/a
Got message type=signal sender=org.freedesktop.DBus destination=:1.12 path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=NameAcquired cookie=2 reply_cookie=0 signature=s error-name=n/a error-message=n/a
Got message type=signal sender=org.freedesktop.DBus destination=:1.12 path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=NameAcquired cookie=3 reply_cookie=0 signature=s error-name=n/a error-message=n/a
Got message type=method_return sender=org.freedesktop.DBus destination=:1.12 path=n/a interface=n/a member=n/a cookie=4 reply_cookie=2 signature=u error-name=n/a error-message=n/a
Successfully acquired requested service name.
Got message type=method_return sender=org.freedesktop.DBus destination=:1.12 path=n/a interface=n/a member=n/a cookie=5 reply_cookie=3 signature=n/a error-name=n/a error-message=n/a
Match type='signal',sender='org.freedesktop.login1',path='/org/freedesktop/login1',interface='org.freedesktop.login1.Manager',member='PrepareForSleep' successfully installed.
enp3s0: Link state is up-to-date
enp3s0: found matching network '/run/systemd/network/10-netplan-enp3s0.network'
lo: Link is not managed by us
wlp2s0: Link does not request DHCPv6 prefix delegation
LLDP: Started LLDP client
enp3s0: Started LLDP.
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_32 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=13 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
lo: Link state is up-to-date
No virtualization found in DMI
No virtualization found in CPUID
Virtualization XEN not found, /proc/xen does not exist
This platform does not support /proc/device-tree
No virtualization found in /proc/cpuinfo.
This platform does not support /proc/sysinfo
Found VM virtualization none
lo: Unmanaged
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_31 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=14 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
wlp2s0: Removing address: 192.168.1.2/24 (valid forever)
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=15 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=16 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
DHCP CLIENT (0x8f3ad0c0): OFFER
DHCP CLIENT (0x8f3ad0c0): REQUEST (requesting)
DHCP CLIENT (0x8f3ad0c0): ACK
wlp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
wlp2s0: Updating address: 192.168.1.2/24 (valid forever)
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=17 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=18 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
wlp2s0: DHCP error: could not get routes: No data available
wlp2s0: Configured
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=19 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
NDISC: Sent Router Solicitation, next solicitation in 7s
NDISC: Sent Router Solicitation, next solicitation in 14s
NDISC: No RA received before link confirmation timeout
NDISC: Invoking callback for 't'.
netplan
add a comment |
Problem: I cannot get a static IP on the ethernet port.
Aim: Trying to setup a static IP on the Realtek built-in ethernet (enp3s0) port so I can connect the server to my desktop via a crossover cable. At the moment, there is no cable connected between the 2.
Setup: Ubuntu Bionic server edition with Intel WiFi card and a Reaktek ethernet port. During installation, I had to connect the ethernet port to my modem/router as the Ubuntu installer cannot recognize my WiFi card.
Things I've tried:
I disabled my WiFi card and then I've tried using just "dchp4: true" and then connected a cable from the port to my modem/router. No issues getting an IP and pinging a site.
I've tried with and without "renderer: networkd", no difference.
I've tried with and without "dhcp4" false", no difference.
I've tried with and without gateway4, no difference.
I've tried with and without nameservers, no difference.
sudo netplan --debug apply doesn't show any errors
I looked at the generated config inside /run/systemd/network (included below) and looks ok.
Debugged systemd-networkd as suggested by this page (https://wiki.ubuntu.com/DebuggingSystemd) and I can see this line: "enp3s0: Link is not managed by us". That doesn't seemed right as I don't have anything else managing my interfaces and as I said in no.1, using DHCP worked.
Here's my current config:
>cat /etc/netplan/01-wireless.yaml
network:
version: 2
renderer: networkd
wifis:
wlp2s0:
dhcp4: true
access-points:
"insert-access-point-here":
password: "insert-password-here"
>cat /etc/netplan/02-ethernet.yaml
network:
version: 2
renderer: networkd
ethernets:
enp3s0:
dhcp4: no
dhcp6: yes
addresses: [192.168.100.40/24]
gateway4: 192.168.100.1
nameservers:
addresses: [8.8.8.8,8.8.4.4]
>cat /run/systemd/network/10-netplan-wlp2s0.network
[Match]
Name=wlp2s0
[Network]
DHCP=ipv4
LinkLocalAddressing=ipv6
[DHCP]
UseMTU=true
RouteMetric=600
>cat /run/systemd/network/10-netplan-enp3s0.network
[Match]
Name=enp3s0
[Network]
LinkLocalAddressing=ipv6
Address=192.168.2.1/24
Gateway=192.168.2.254
Results of netplan --debug apply
sudo netplan --debug apply
** (generate:13784): DEBUG: 03:16:37.754: Processing input file /etc/netplan/01-wireless.yaml..
** (generate:13784): DEBUG: 03:16:37.755: starting new processing pass
** (generate:13784): DEBUG: 03:16:37.755: wlp2s0: adding wifi AP 'myhotspot'
** (generate:13784): DEBUG: 03:16:37.755: Processing input file /etc/netplan/02-ethernet.yaml..
** (generate:13784): DEBUG: 03:16:37.755: starting new processing pass
** (generate:13784): DEBUG: 03:16:37.755: wlp2s0: setting default backend to 1
** (generate:13784): DEBUG: 03:16:37.755: enp3s0: setting default backend to 1
** (generate:13784): DEBUG: 03:16:37.755: Generating output files..
** (generate:13784): DEBUG: 03:16:37.755: wlp2s0: Creating wpa_supplicant configuration file run/netplan/wpa-wlp2s0.conf
** (generate:13784): DEBUG: 03:16:37.755: Creating wpa_supplicant service enablement link /run/systemd/system/multi-user.target.wants/netplan-wpa@wlp2s0.service
** (generate:13784): DEBUG: 03:16:37.755: NetworkManager: definition wlp2s0 is not for us (backend 1)
** (generate:13784): DEBUG: 03:16:37.755: NetworkManager: definition enp3s0 is not for us (backend 1)
DEBUG:netplan generated networkd configuration exists, restarting networkd
DEBUG:no netplan generated NM configuration exists
DEBUG:wlp2s0 not found in
DEBUG:enp3s0 not found in
DEBUG:Merged config:
network:
bonds:
bridges:
ethernets:
enp3s0:
addresses:
- 192.168.100.40/24
dhcp4: false
dhcp6: true
gateway4: 192.168.100.1
nameservers:
addresses:
- 8.8.8.8
- 8.8.4.4
vlans:
wifis:
wlp2s0:
access-points:
insert-access-point-here:
password: insert-password-here
dhcp4: true
DEBUG:Skipping non-physical interface: lo
DEBUG:device wlp2s0 operstate is up, not changing
DEBUG:
DEBUG:netplan triggering .link rules for lo
DEBUG:netplan triggering .link rules for enp3s0
DEBUG:netplan triggering .link rules for wlp2s0
Results of systemd networkd debugging:
>sudo SYSTEMD_LOG_LEVEL=debug /lib/systemd/systemd-networkd
Failed to read $container of PID 1, ignoring: Permission denied
Found container virtualization none.
Bus n/a: changing state UNSET → OPENING
Bus n/a: changing state OPENING → AUTHENTICATING
Failed to open configuration file '/etc/systemd/networkd.conf': No such file or directory
timestamp of '/etc/systemd/network' changed
timestamp of '/run/systemd/network' changed
Ignoring /run/systemd/network/10-netplan-enp3s0.network, because it's not a regular file with suffix .netdev.
Ignoring /run/systemd/network/10-netplan-wlp2s0.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/99-default.link, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/80-container-ve.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/80-container-vz.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/80-container-host0.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/99-default.link, because it's not a regular file with suffix .network.
wlp2s0: Flags change: +UP +LOWER_UP +RUNNING +MULTICAST +BROADCAST
wlp2s0: Link 3 added
wlp2s0: udev initialized link
wlp2s0: Saved original MTU: 1500
enp3s0: Flags change: +UP +MULTICAST +BROADCAST
enp3s0: Link 2 added
enp3s0: udev initialized link
enp3s0: Saved original MTU: 1500
lo: Flags change: +LOOPBACK +UP +LOWER_UP +RUNNING
lo: Link 1 added
lo: udev initialized link
lo: Saved original MTU: 0
wlp2s0: Adding address: fe80::3613:e8ff:fe41:a078/64 (valid forever)
wlp2s0: Gained IPv6LL
lo: Adding address: ::1/128 (valid forever)
wlp2s0: Adding address: 192.168.1.2/24 (valid forever)
lo: Adding address: 127.0.0.1/8 (valid forever)
rtnl: received address with invalid family 129, ignoring
Enumeration completed
Bus n/a: changing state AUTHENTICATING → HELLO
Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=Hello cookie=1 reply_cookie=0 signature=n/a error-name=n/a error-message=n/a
Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=RequestName cookie=2 reply_cookie=0 signature=su error-name=n/a error-message=n/a
Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=AddMatch cookie=3 reply_cookie=0 signature=s error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=4 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_32 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=5 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_31 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=6 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=7 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=8 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=9 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
wlp2s0: Link state is up-to-date
wlp2s0: found matching network '/run/systemd/network/10-netplan-wlp2s0.network'
enp3s0: Link is not managed by us
lo: Link is not managed by us
LLDP: Started LLDP client
wlp2s0: Started LLDP.
wlp2s0: Acquiring DHCPv4 lease
DHCP CLIENT (0x8f3ad0c0): STARTED on ifindex 3
wlp2s0: Discovering IPv6 routers
NDISC: Started IPv6 Router Solicitation client
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=10 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=11 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=12 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
NDISC: Sent Router Solicitation, next solicitation in 3s
Got message type=method_return sender=org.freedesktop.DBus destination=:1.12 path=n/a interface=n/a member=n/a cookie=1 reply_cookie=1 signature=s error-name=n/a error-message=n/a
Bus n/a: changing state HELLO → RUNNING
DHCP CLIENT (0x8f3ad0c0): DISCOVER
Got message type=signal sender=org.freedesktop.DBus.Local destination=n/a path=/org/freedesktop/DBus/Local interface=org.freedesktop.DBus.Local member=Connected cookie=4294967295 reply_cookie=0 signature=n/a error-name=n/a error-message=n/a
Got message type=signal sender=org.freedesktop.DBus destination=:1.12 path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=NameAcquired cookie=2 reply_cookie=0 signature=s error-name=n/a error-message=n/a
Got message type=signal sender=org.freedesktop.DBus destination=:1.12 path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=NameAcquired cookie=3 reply_cookie=0 signature=s error-name=n/a error-message=n/a
Got message type=method_return sender=org.freedesktop.DBus destination=:1.12 path=n/a interface=n/a member=n/a cookie=4 reply_cookie=2 signature=u error-name=n/a error-message=n/a
Successfully acquired requested service name.
Got message type=method_return sender=org.freedesktop.DBus destination=:1.12 path=n/a interface=n/a member=n/a cookie=5 reply_cookie=3 signature=n/a error-name=n/a error-message=n/a
Match type='signal',sender='org.freedesktop.login1',path='/org/freedesktop/login1',interface='org.freedesktop.login1.Manager',member='PrepareForSleep' successfully installed.
enp3s0: Link state is up-to-date
enp3s0: found matching network '/run/systemd/network/10-netplan-enp3s0.network'
lo: Link is not managed by us
wlp2s0: Link does not request DHCPv6 prefix delegation
LLDP: Started LLDP client
enp3s0: Started LLDP.
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_32 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=13 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
lo: Link state is up-to-date
No virtualization found in DMI
No virtualization found in CPUID
Virtualization XEN not found, /proc/xen does not exist
This platform does not support /proc/device-tree
No virtualization found in /proc/cpuinfo.
This platform does not support /proc/sysinfo
Found VM virtualization none
lo: Unmanaged
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_31 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=14 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
wlp2s0: Removing address: 192.168.1.2/24 (valid forever)
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=15 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=16 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
DHCP CLIENT (0x8f3ad0c0): OFFER
DHCP CLIENT (0x8f3ad0c0): REQUEST (requesting)
DHCP CLIENT (0x8f3ad0c0): ACK
wlp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
wlp2s0: Updating address: 192.168.1.2/24 (valid forever)
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=17 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=18 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
wlp2s0: DHCP error: could not get routes: No data available
wlp2s0: Configured
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=19 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
NDISC: Sent Router Solicitation, next solicitation in 7s
NDISC: Sent Router Solicitation, next solicitation in 14s
NDISC: No RA received before link confirmation timeout
NDISC: Invoking callback for 't'.
netplan
add a comment |
Problem: I cannot get a static IP on the ethernet port.
Aim: Trying to setup a static IP on the Realtek built-in ethernet (enp3s0) port so I can connect the server to my desktop via a crossover cable. At the moment, there is no cable connected between the 2.
Setup: Ubuntu Bionic server edition with Intel WiFi card and a Reaktek ethernet port. During installation, I had to connect the ethernet port to my modem/router as the Ubuntu installer cannot recognize my WiFi card.
Things I've tried:
I disabled my WiFi card and then I've tried using just "dchp4: true" and then connected a cable from the port to my modem/router. No issues getting an IP and pinging a site.
I've tried with and without "renderer: networkd", no difference.
I've tried with and without "dhcp4" false", no difference.
I've tried with and without gateway4, no difference.
I've tried with and without nameservers, no difference.
sudo netplan --debug apply doesn't show any errors
I looked at the generated config inside /run/systemd/network (included below) and looks ok.
Debugged systemd-networkd as suggested by this page (https://wiki.ubuntu.com/DebuggingSystemd) and I can see this line: "enp3s0: Link is not managed by us". That doesn't seemed right as I don't have anything else managing my interfaces and as I said in no.1, using DHCP worked.
Here's my current config:
>cat /etc/netplan/01-wireless.yaml
network:
version: 2
renderer: networkd
wifis:
wlp2s0:
dhcp4: true
access-points:
"insert-access-point-here":
password: "insert-password-here"
>cat /etc/netplan/02-ethernet.yaml
network:
version: 2
renderer: networkd
ethernets:
enp3s0:
dhcp4: no
dhcp6: yes
addresses: [192.168.100.40/24]
gateway4: 192.168.100.1
nameservers:
addresses: [8.8.8.8,8.8.4.4]
>cat /run/systemd/network/10-netplan-wlp2s0.network
[Match]
Name=wlp2s0
[Network]
DHCP=ipv4
LinkLocalAddressing=ipv6
[DHCP]
UseMTU=true
RouteMetric=600
>cat /run/systemd/network/10-netplan-enp3s0.network
[Match]
Name=enp3s0
[Network]
LinkLocalAddressing=ipv6
Address=192.168.2.1/24
Gateway=192.168.2.254
Results of netplan --debug apply
sudo netplan --debug apply
** (generate:13784): DEBUG: 03:16:37.754: Processing input file /etc/netplan/01-wireless.yaml..
** (generate:13784): DEBUG: 03:16:37.755: starting new processing pass
** (generate:13784): DEBUG: 03:16:37.755: wlp2s0: adding wifi AP 'myhotspot'
** (generate:13784): DEBUG: 03:16:37.755: Processing input file /etc/netplan/02-ethernet.yaml..
** (generate:13784): DEBUG: 03:16:37.755: starting new processing pass
** (generate:13784): DEBUG: 03:16:37.755: wlp2s0: setting default backend to 1
** (generate:13784): DEBUG: 03:16:37.755: enp3s0: setting default backend to 1
** (generate:13784): DEBUG: 03:16:37.755: Generating output files..
** (generate:13784): DEBUG: 03:16:37.755: wlp2s0: Creating wpa_supplicant configuration file run/netplan/wpa-wlp2s0.conf
** (generate:13784): DEBUG: 03:16:37.755: Creating wpa_supplicant service enablement link /run/systemd/system/multi-user.target.wants/netplan-wpa@wlp2s0.service
** (generate:13784): DEBUG: 03:16:37.755: NetworkManager: definition wlp2s0 is not for us (backend 1)
** (generate:13784): DEBUG: 03:16:37.755: NetworkManager: definition enp3s0 is not for us (backend 1)
DEBUG:netplan generated networkd configuration exists, restarting networkd
DEBUG:no netplan generated NM configuration exists
DEBUG:wlp2s0 not found in
DEBUG:enp3s0 not found in
DEBUG:Merged config:
network:
bonds:
bridges:
ethernets:
enp3s0:
addresses:
- 192.168.100.40/24
dhcp4: false
dhcp6: true
gateway4: 192.168.100.1
nameservers:
addresses:
- 8.8.8.8
- 8.8.4.4
vlans:
wifis:
wlp2s0:
access-points:
insert-access-point-here:
password: insert-password-here
dhcp4: true
DEBUG:Skipping non-physical interface: lo
DEBUG:device wlp2s0 operstate is up, not changing
DEBUG:
DEBUG:netplan triggering .link rules for lo
DEBUG:netplan triggering .link rules for enp3s0
DEBUG:netplan triggering .link rules for wlp2s0
Results of systemd networkd debugging:
>sudo SYSTEMD_LOG_LEVEL=debug /lib/systemd/systemd-networkd
Failed to read $container of PID 1, ignoring: Permission denied
Found container virtualization none.
Bus n/a: changing state UNSET → OPENING
Bus n/a: changing state OPENING → AUTHENTICATING
Failed to open configuration file '/etc/systemd/networkd.conf': No such file or directory
timestamp of '/etc/systemd/network' changed
timestamp of '/run/systemd/network' changed
Ignoring /run/systemd/network/10-netplan-enp3s0.network, because it's not a regular file with suffix .netdev.
Ignoring /run/systemd/network/10-netplan-wlp2s0.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/99-default.link, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/80-container-ve.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/80-container-vz.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/80-container-host0.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/99-default.link, because it's not a regular file with suffix .network.
wlp2s0: Flags change: +UP +LOWER_UP +RUNNING +MULTICAST +BROADCAST
wlp2s0: Link 3 added
wlp2s0: udev initialized link
wlp2s0: Saved original MTU: 1500
enp3s0: Flags change: +UP +MULTICAST +BROADCAST
enp3s0: Link 2 added
enp3s0: udev initialized link
enp3s0: Saved original MTU: 1500
lo: Flags change: +LOOPBACK +UP +LOWER_UP +RUNNING
lo: Link 1 added
lo: udev initialized link
lo: Saved original MTU: 0
wlp2s0: Adding address: fe80::3613:e8ff:fe41:a078/64 (valid forever)
wlp2s0: Gained IPv6LL
lo: Adding address: ::1/128 (valid forever)
wlp2s0: Adding address: 192.168.1.2/24 (valid forever)
lo: Adding address: 127.0.0.1/8 (valid forever)
rtnl: received address with invalid family 129, ignoring
Enumeration completed
Bus n/a: changing state AUTHENTICATING → HELLO
Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=Hello cookie=1 reply_cookie=0 signature=n/a error-name=n/a error-message=n/a
Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=RequestName cookie=2 reply_cookie=0 signature=su error-name=n/a error-message=n/a
Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=AddMatch cookie=3 reply_cookie=0 signature=s error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=4 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_32 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=5 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_31 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=6 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=7 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=8 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=9 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
wlp2s0: Link state is up-to-date
wlp2s0: found matching network '/run/systemd/network/10-netplan-wlp2s0.network'
enp3s0: Link is not managed by us
lo: Link is not managed by us
LLDP: Started LLDP client
wlp2s0: Started LLDP.
wlp2s0: Acquiring DHCPv4 lease
DHCP CLIENT (0x8f3ad0c0): STARTED on ifindex 3
wlp2s0: Discovering IPv6 routers
NDISC: Started IPv6 Router Solicitation client
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=10 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=11 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=12 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
NDISC: Sent Router Solicitation, next solicitation in 3s
Got message type=method_return sender=org.freedesktop.DBus destination=:1.12 path=n/a interface=n/a member=n/a cookie=1 reply_cookie=1 signature=s error-name=n/a error-message=n/a
Bus n/a: changing state HELLO → RUNNING
DHCP CLIENT (0x8f3ad0c0): DISCOVER
Got message type=signal sender=org.freedesktop.DBus.Local destination=n/a path=/org/freedesktop/DBus/Local interface=org.freedesktop.DBus.Local member=Connected cookie=4294967295 reply_cookie=0 signature=n/a error-name=n/a error-message=n/a
Got message type=signal sender=org.freedesktop.DBus destination=:1.12 path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=NameAcquired cookie=2 reply_cookie=0 signature=s error-name=n/a error-message=n/a
Got message type=signal sender=org.freedesktop.DBus destination=:1.12 path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=NameAcquired cookie=3 reply_cookie=0 signature=s error-name=n/a error-message=n/a
Got message type=method_return sender=org.freedesktop.DBus destination=:1.12 path=n/a interface=n/a member=n/a cookie=4 reply_cookie=2 signature=u error-name=n/a error-message=n/a
Successfully acquired requested service name.
Got message type=method_return sender=org.freedesktop.DBus destination=:1.12 path=n/a interface=n/a member=n/a cookie=5 reply_cookie=3 signature=n/a error-name=n/a error-message=n/a
Match type='signal',sender='org.freedesktop.login1',path='/org/freedesktop/login1',interface='org.freedesktop.login1.Manager',member='PrepareForSleep' successfully installed.
enp3s0: Link state is up-to-date
enp3s0: found matching network '/run/systemd/network/10-netplan-enp3s0.network'
lo: Link is not managed by us
wlp2s0: Link does not request DHCPv6 prefix delegation
LLDP: Started LLDP client
enp3s0: Started LLDP.
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_32 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=13 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
lo: Link state is up-to-date
No virtualization found in DMI
No virtualization found in CPUID
Virtualization XEN not found, /proc/xen does not exist
This platform does not support /proc/device-tree
No virtualization found in /proc/cpuinfo.
This platform does not support /proc/sysinfo
Found VM virtualization none
lo: Unmanaged
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_31 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=14 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
wlp2s0: Removing address: 192.168.1.2/24 (valid forever)
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=15 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=16 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
DHCP CLIENT (0x8f3ad0c0): OFFER
DHCP CLIENT (0x8f3ad0c0): REQUEST (requesting)
DHCP CLIENT (0x8f3ad0c0): ACK
wlp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
wlp2s0: Updating address: 192.168.1.2/24 (valid forever)
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=17 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=18 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
wlp2s0: DHCP error: could not get routes: No data available
wlp2s0: Configured
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=19 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
NDISC: Sent Router Solicitation, next solicitation in 7s
NDISC: Sent Router Solicitation, next solicitation in 14s
NDISC: No RA received before link confirmation timeout
NDISC: Invoking callback for 't'.
netplan
Problem: I cannot get a static IP on the ethernet port.
Aim: Trying to setup a static IP on the Realtek built-in ethernet (enp3s0) port so I can connect the server to my desktop via a crossover cable. At the moment, there is no cable connected between the 2.
Setup: Ubuntu Bionic server edition with Intel WiFi card and a Reaktek ethernet port. During installation, I had to connect the ethernet port to my modem/router as the Ubuntu installer cannot recognize my WiFi card.
Things I've tried:
I disabled my WiFi card and then I've tried using just "dchp4: true" and then connected a cable from the port to my modem/router. No issues getting an IP and pinging a site.
I've tried with and without "renderer: networkd", no difference.
I've tried with and without "dhcp4" false", no difference.
I've tried with and without gateway4, no difference.
I've tried with and without nameservers, no difference.
sudo netplan --debug apply doesn't show any errors
I looked at the generated config inside /run/systemd/network (included below) and looks ok.
Debugged systemd-networkd as suggested by this page (https://wiki.ubuntu.com/DebuggingSystemd) and I can see this line: "enp3s0: Link is not managed by us". That doesn't seemed right as I don't have anything else managing my interfaces and as I said in no.1, using DHCP worked.
Here's my current config:
>cat /etc/netplan/01-wireless.yaml
network:
version: 2
renderer: networkd
wifis:
wlp2s0:
dhcp4: true
access-points:
"insert-access-point-here":
password: "insert-password-here"
>cat /etc/netplan/02-ethernet.yaml
network:
version: 2
renderer: networkd
ethernets:
enp3s0:
dhcp4: no
dhcp6: yes
addresses: [192.168.100.40/24]
gateway4: 192.168.100.1
nameservers:
addresses: [8.8.8.8,8.8.4.4]
>cat /run/systemd/network/10-netplan-wlp2s0.network
[Match]
Name=wlp2s0
[Network]
DHCP=ipv4
LinkLocalAddressing=ipv6
[DHCP]
UseMTU=true
RouteMetric=600
>cat /run/systemd/network/10-netplan-enp3s0.network
[Match]
Name=enp3s0
[Network]
LinkLocalAddressing=ipv6
Address=192.168.2.1/24
Gateway=192.168.2.254
Results of netplan --debug apply
sudo netplan --debug apply
** (generate:13784): DEBUG: 03:16:37.754: Processing input file /etc/netplan/01-wireless.yaml..
** (generate:13784): DEBUG: 03:16:37.755: starting new processing pass
** (generate:13784): DEBUG: 03:16:37.755: wlp2s0: adding wifi AP 'myhotspot'
** (generate:13784): DEBUG: 03:16:37.755: Processing input file /etc/netplan/02-ethernet.yaml..
** (generate:13784): DEBUG: 03:16:37.755: starting new processing pass
** (generate:13784): DEBUG: 03:16:37.755: wlp2s0: setting default backend to 1
** (generate:13784): DEBUG: 03:16:37.755: enp3s0: setting default backend to 1
** (generate:13784): DEBUG: 03:16:37.755: Generating output files..
** (generate:13784): DEBUG: 03:16:37.755: wlp2s0: Creating wpa_supplicant configuration file run/netplan/wpa-wlp2s0.conf
** (generate:13784): DEBUG: 03:16:37.755: Creating wpa_supplicant service enablement link /run/systemd/system/multi-user.target.wants/netplan-wpa@wlp2s0.service
** (generate:13784): DEBUG: 03:16:37.755: NetworkManager: definition wlp2s0 is not for us (backend 1)
** (generate:13784): DEBUG: 03:16:37.755: NetworkManager: definition enp3s0 is not for us (backend 1)
DEBUG:netplan generated networkd configuration exists, restarting networkd
DEBUG:no netplan generated NM configuration exists
DEBUG:wlp2s0 not found in
DEBUG:enp3s0 not found in
DEBUG:Merged config:
network:
bonds:
bridges:
ethernets:
enp3s0:
addresses:
- 192.168.100.40/24
dhcp4: false
dhcp6: true
gateway4: 192.168.100.1
nameservers:
addresses:
- 8.8.8.8
- 8.8.4.4
vlans:
wifis:
wlp2s0:
access-points:
insert-access-point-here:
password: insert-password-here
dhcp4: true
DEBUG:Skipping non-physical interface: lo
DEBUG:device wlp2s0 operstate is up, not changing
DEBUG:
DEBUG:netplan triggering .link rules for lo
DEBUG:netplan triggering .link rules for enp3s0
DEBUG:netplan triggering .link rules for wlp2s0
Results of systemd networkd debugging:
>sudo SYSTEMD_LOG_LEVEL=debug /lib/systemd/systemd-networkd
Failed to read $container of PID 1, ignoring: Permission denied
Found container virtualization none.
Bus n/a: changing state UNSET → OPENING
Bus n/a: changing state OPENING → AUTHENTICATING
Failed to open configuration file '/etc/systemd/networkd.conf': No such file or directory
timestamp of '/etc/systemd/network' changed
timestamp of '/run/systemd/network' changed
Ignoring /run/systemd/network/10-netplan-enp3s0.network, because it's not a regular file with suffix .netdev.
Ignoring /run/systemd/network/10-netplan-wlp2s0.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/99-default.link, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/80-container-ve.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/80-container-vz.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/80-container-host0.network, because it's not a regular file with suffix .netdev.
Ignoring /lib/systemd/network/99-default.link, because it's not a regular file with suffix .network.
wlp2s0: Flags change: +UP +LOWER_UP +RUNNING +MULTICAST +BROADCAST
wlp2s0: Link 3 added
wlp2s0: udev initialized link
wlp2s0: Saved original MTU: 1500
enp3s0: Flags change: +UP +MULTICAST +BROADCAST
enp3s0: Link 2 added
enp3s0: udev initialized link
enp3s0: Saved original MTU: 1500
lo: Flags change: +LOOPBACK +UP +LOWER_UP +RUNNING
lo: Link 1 added
lo: udev initialized link
lo: Saved original MTU: 0
wlp2s0: Adding address: fe80::3613:e8ff:fe41:a078/64 (valid forever)
wlp2s0: Gained IPv6LL
lo: Adding address: ::1/128 (valid forever)
wlp2s0: Adding address: 192.168.1.2/24 (valid forever)
lo: Adding address: 127.0.0.1/8 (valid forever)
rtnl: received address with invalid family 129, ignoring
Enumeration completed
Bus n/a: changing state AUTHENTICATING → HELLO
Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=Hello cookie=1 reply_cookie=0 signature=n/a error-name=n/a error-message=n/a
Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=RequestName cookie=2 reply_cookie=0 signature=su error-name=n/a error-message=n/a
Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=AddMatch cookie=3 reply_cookie=0 signature=s error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=4 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_32 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=5 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_31 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=6 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=7 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=8 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=9 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
wlp2s0: Link state is up-to-date
wlp2s0: found matching network '/run/systemd/network/10-netplan-wlp2s0.network'
enp3s0: Link is not managed by us
lo: Link is not managed by us
LLDP: Started LLDP client
wlp2s0: Started LLDP.
wlp2s0: Acquiring DHCPv4 lease
DHCP CLIENT (0x8f3ad0c0): STARTED on ifindex 3
wlp2s0: Discovering IPv6 routers
NDISC: Started IPv6 Router Solicitation client
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=10 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=11 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=12 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
NDISC: Sent Router Solicitation, next solicitation in 3s
Got message type=method_return sender=org.freedesktop.DBus destination=:1.12 path=n/a interface=n/a member=n/a cookie=1 reply_cookie=1 signature=s error-name=n/a error-message=n/a
Bus n/a: changing state HELLO → RUNNING
DHCP CLIENT (0x8f3ad0c0): DISCOVER
Got message type=signal sender=org.freedesktop.DBus.Local destination=n/a path=/org/freedesktop/DBus/Local interface=org.freedesktop.DBus.Local member=Connected cookie=4294967295 reply_cookie=0 signature=n/a error-name=n/a error-message=n/a
Got message type=signal sender=org.freedesktop.DBus destination=:1.12 path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=NameAcquired cookie=2 reply_cookie=0 signature=s error-name=n/a error-message=n/a
Got message type=signal sender=org.freedesktop.DBus destination=:1.12 path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=NameAcquired cookie=3 reply_cookie=0 signature=s error-name=n/a error-message=n/a
Got message type=method_return sender=org.freedesktop.DBus destination=:1.12 path=n/a interface=n/a member=n/a cookie=4 reply_cookie=2 signature=u error-name=n/a error-message=n/a
Successfully acquired requested service name.
Got message type=method_return sender=org.freedesktop.DBus destination=:1.12 path=n/a interface=n/a member=n/a cookie=5 reply_cookie=3 signature=n/a error-name=n/a error-message=n/a
Match type='signal',sender='org.freedesktop.login1',path='/org/freedesktop/login1',interface='org.freedesktop.login1.Manager',member='PrepareForSleep' successfully installed.
enp3s0: Link state is up-to-date
enp3s0: found matching network '/run/systemd/network/10-netplan-enp3s0.network'
lo: Link is not managed by us
wlp2s0: Link does not request DHCPv6 prefix delegation
LLDP: Started LLDP client
enp3s0: Started LLDP.
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_32 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=13 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
lo: Link state is up-to-date
No virtualization found in DMI
No virtualization found in CPUID
Virtualization XEN not found, /proc/xen does not exist
This platform does not support /proc/device-tree
No virtualization found in /proc/cpuinfo.
This platform does not support /proc/sysinfo
Found VM virtualization none
lo: Unmanaged
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_31 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=14 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
wlp2s0: Removing address: 192.168.1.2/24 (valid forever)
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=15 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=16 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
DHCP CLIENT (0x8f3ad0c0): OFFER
DHCP CLIENT (0x8f3ad0c0): REQUEST (requesting)
DHCP CLIENT (0x8f3ad0c0): ACK
wlp2s0: DHCPv4 address 192.168.1.2/24 via 192.168.1.1
wlp2s0: Updating address: 192.168.1.2/24 (valid forever)
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=17 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=18 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
wlp2s0: DHCP error: could not get routes: No data available
wlp2s0: Configured
Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/network1/link/_33 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=19 reply_cookie=0 signature=sasvas error-name=n/a error-message=n/a
NDISC: Sent Router Solicitation, next solicitation in 7s
NDISC: Sent Router Solicitation, next solicitation in 14s
NDISC: No RA received before link confirmation timeout
NDISC: Invoking callback for 't'.
netplan
netplan
asked 5 mins ago
mrjayvipermrjayviper
5002927
5002927
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1129829%2fubuntu-bionic-server-edition-netplan-not-getting-static-ip-on-a-ethernet-conn%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1129829%2fubuntu-bionic-server-edition-netplan-not-getting-static-ip-on-a-ethernet-conn%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown