DHCP Issues after simultaneous Plex/Pihole install Ubuntu 18.04ISC DHCP IssuesNetwork issue after clean install of Ubuntu Server & choosing DHCPSending DNS requests through VPNConfigure bonded 802.3ad network using netplan on Ubuntu 18.04Find DHCP Lease & DNS Info In 18.04 LTSDoes Ubuntu 18.04 use dhclient?Ubuntu 18.04 Login window loopnetplan issue with Ubuntu 18.04.1 Server. No network connectivity (no routes either)Intermittent network after upgrading to Ubuntu server 18.04Netplan on Ubuntu 18.10 (Cosmic Cuttlefish): DHCP4 + static routes
Can I sign legal documents with a smiley face?
Drawing ramified coverings with tikz
We have a love-hate relationship
Can someone explain how this makes sense electrically?
Why has "pence" been used in this sentence, not "pences"?
Why we can't differentiate a polynomial equation as many times as we wish?
Longest common substring in linear time
How to decide convergence of Integrals
Why did the HMS Bounty go back to a time when whales are already rare?
When quoting, must I also copy hyphens used to divide words that continue on the next line?
Can we have a perfect cadence in a minor key?
How will losing mobility of one hand affect my career as a programmer?
Global amount of publications over time
Do Legal Documents Require Signing In Standard Pen Colors?
Do varchar(max), nvarchar(max) and varbinary(max) columns affect select queries?
What (else) happened July 1st 1858 in London?
How to color a curve
A Permanent Norse Presence in America
Two-sided logarithm inequality
Why does Async/Await work properly when the loop is inside the async function and not the other way around?
Do the concepts of IP address and network interface not belong to the same layer?
Freedom of speech and where it applies
Will adding a BY-SA image to a blog post make the entire post BY-SA?
Could the E-bike drivetrain wear down till needing replacement after 400 km?
DHCP Issues after simultaneous Plex/Pihole install Ubuntu 18.04
ISC DHCP IssuesNetwork issue after clean install of Ubuntu Server & choosing DHCPSending DNS requests through VPNConfigure bonded 802.3ad network using netplan on Ubuntu 18.04Find DHCP Lease & DNS Info In 18.04 LTSDoes Ubuntu 18.04 use dhclient?Ubuntu 18.04 Login window loopnetplan issue with Ubuntu 18.04.1 Server. No network connectivity (no routes either)Intermittent network after upgrading to Ubuntu server 18.04Netplan on Ubuntu 18.10 (Cosmic Cuttlefish): DHCP4 + static routes
Usually my Google-Fu allows me to solve most issues with Linux after enough time, but this one has me stumped.
I recently tried to install Pihole on my Plex box, which is running ubuntu 18.04.2. Everything worked fine, but pihole wasn't able to reliably block the main things I wanted blocked (mainly youtube ads over my roku), so I uninstalled it. Ever since I did that, I've been having DHCP issues with my Plex server.
I've figured out two band-aids to get things working, but I want a proper fix.
- I can edit the resolv.conf file to add my router, or cloudflare as a DNS, which fixes all issues.
- I can edit the netplan .yaml file to force DHCP on my ethernet device, and then apply the netplan config. This also fixes all issues.
The problem with both of these fixes is they don't persist after reboot. I think something somewhere is going wrong with Network-Manager but I'm not sure what, and I'm not sure how to fix it. I'm guessing it has something to do with PiHole not really having a true "clean" uninstall option.
I've tried the following without success:
- Unplug and replug all networking hardware coupled with a restart of the Plex
- sudo apt-get -d --reinstall network-manager network-manager-gnome
Upon reboot dig www.google.com is always unsuccessful, and ping -c 3 8.8.8.8 is always successful. Trying to access google via 8.8.8.8 is always unsuccessful until one of the top fixes is applied.
I'm not quite sure what will be needed to fix this but I appreciate the time of anyone who's reading this. I realize I could probably make something that runs at startup which runs the netplan apply command, but I feel like there's a better solution to this.
Thanks!
EDIT: I added this after another question similar to mine had the output requested.--------------------------
sudo lshw -C network gives:
*-network
description: Ethernet interface
product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:01:00.0
logical name: enp1s0
version: 15
serial: 30:9c:23:d6:d4:c8
size: 1Gbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168h-2_0.0.2 02/26/15 ip=10.0.1.9 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
resources: irq:16 ioport:3000(size=256) memory:a1104000-a1104fff memory:a1100000-a1103fff
ifconfig gives:
enp1s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.0.1.9 netmask 255.255.255.0 broadcast 10.0.1.255
inet6 fe80::329c:23ff:fed6:d4c8 prefixlen 64 scopeid 0x20<link>
ether 30:9c:23:d6:d4:c8 txqueuelen 1000 (Ethernet)
RX packets 29929 bytes 8095074 (8.0 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 46972 bytes 48312760 (48.3 MB)
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 1000 (Local Loopback)
RX packets 27784 bytes 41332037 (41.3 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 27784 bytes 41332037 (41.3 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
cat /etc/netplan/*.yaml gives:
# Let NetworkManager manage all devices on this system
network:
version: 2
renderer: NetworkManager
ethernets:
enp1s0:
dhcp4: true
networking 18.04 dhcp plex
New contributor
BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Usually my Google-Fu allows me to solve most issues with Linux after enough time, but this one has me stumped.
I recently tried to install Pihole on my Plex box, which is running ubuntu 18.04.2. Everything worked fine, but pihole wasn't able to reliably block the main things I wanted blocked (mainly youtube ads over my roku), so I uninstalled it. Ever since I did that, I've been having DHCP issues with my Plex server.
I've figured out two band-aids to get things working, but I want a proper fix.
- I can edit the resolv.conf file to add my router, or cloudflare as a DNS, which fixes all issues.
- I can edit the netplan .yaml file to force DHCP on my ethernet device, and then apply the netplan config. This also fixes all issues.
The problem with both of these fixes is they don't persist after reboot. I think something somewhere is going wrong with Network-Manager but I'm not sure what, and I'm not sure how to fix it. I'm guessing it has something to do with PiHole not really having a true "clean" uninstall option.
I've tried the following without success:
- Unplug and replug all networking hardware coupled with a restart of the Plex
- sudo apt-get -d --reinstall network-manager network-manager-gnome
Upon reboot dig www.google.com is always unsuccessful, and ping -c 3 8.8.8.8 is always successful. Trying to access google via 8.8.8.8 is always unsuccessful until one of the top fixes is applied.
I'm not quite sure what will be needed to fix this but I appreciate the time of anyone who's reading this. I realize I could probably make something that runs at startup which runs the netplan apply command, but I feel like there's a better solution to this.
Thanks!
EDIT: I added this after another question similar to mine had the output requested.--------------------------
sudo lshw -C network gives:
*-network
description: Ethernet interface
product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:01:00.0
logical name: enp1s0
version: 15
serial: 30:9c:23:d6:d4:c8
size: 1Gbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168h-2_0.0.2 02/26/15 ip=10.0.1.9 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
resources: irq:16 ioport:3000(size=256) memory:a1104000-a1104fff memory:a1100000-a1103fff
ifconfig gives:
enp1s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.0.1.9 netmask 255.255.255.0 broadcast 10.0.1.255
inet6 fe80::329c:23ff:fed6:d4c8 prefixlen 64 scopeid 0x20<link>
ether 30:9c:23:d6:d4:c8 txqueuelen 1000 (Ethernet)
RX packets 29929 bytes 8095074 (8.0 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 46972 bytes 48312760 (48.3 MB)
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 1000 (Local Loopback)
RX packets 27784 bytes 41332037 (41.3 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 27784 bytes 41332037 (41.3 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
cat /etc/netplan/*.yaml gives:
# Let NetworkManager manage all devices on this system
network:
version: 2
renderer: NetworkManager
ethernets:
enp1s0:
dhcp4: true
networking 18.04 dhcp plex
New contributor
BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Usually my Google-Fu allows me to solve most issues with Linux after enough time, but this one has me stumped.
I recently tried to install Pihole on my Plex box, which is running ubuntu 18.04.2. Everything worked fine, but pihole wasn't able to reliably block the main things I wanted blocked (mainly youtube ads over my roku), so I uninstalled it. Ever since I did that, I've been having DHCP issues with my Plex server.
I've figured out two band-aids to get things working, but I want a proper fix.
- I can edit the resolv.conf file to add my router, or cloudflare as a DNS, which fixes all issues.
- I can edit the netplan .yaml file to force DHCP on my ethernet device, and then apply the netplan config. This also fixes all issues.
The problem with both of these fixes is they don't persist after reboot. I think something somewhere is going wrong with Network-Manager but I'm not sure what, and I'm not sure how to fix it. I'm guessing it has something to do with PiHole not really having a true "clean" uninstall option.
I've tried the following without success:
- Unplug and replug all networking hardware coupled with a restart of the Plex
- sudo apt-get -d --reinstall network-manager network-manager-gnome
Upon reboot dig www.google.com is always unsuccessful, and ping -c 3 8.8.8.8 is always successful. Trying to access google via 8.8.8.8 is always unsuccessful until one of the top fixes is applied.
I'm not quite sure what will be needed to fix this but I appreciate the time of anyone who's reading this. I realize I could probably make something that runs at startup which runs the netplan apply command, but I feel like there's a better solution to this.
Thanks!
EDIT: I added this after another question similar to mine had the output requested.--------------------------
sudo lshw -C network gives:
*-network
description: Ethernet interface
product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:01:00.0
logical name: enp1s0
version: 15
serial: 30:9c:23:d6:d4:c8
size: 1Gbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168h-2_0.0.2 02/26/15 ip=10.0.1.9 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
resources: irq:16 ioport:3000(size=256) memory:a1104000-a1104fff memory:a1100000-a1103fff
ifconfig gives:
enp1s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.0.1.9 netmask 255.255.255.0 broadcast 10.0.1.255
inet6 fe80::329c:23ff:fed6:d4c8 prefixlen 64 scopeid 0x20<link>
ether 30:9c:23:d6:d4:c8 txqueuelen 1000 (Ethernet)
RX packets 29929 bytes 8095074 (8.0 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 46972 bytes 48312760 (48.3 MB)
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 1000 (Local Loopback)
RX packets 27784 bytes 41332037 (41.3 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 27784 bytes 41332037 (41.3 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
cat /etc/netplan/*.yaml gives:
# Let NetworkManager manage all devices on this system
network:
version: 2
renderer: NetworkManager
ethernets:
enp1s0:
dhcp4: true
networking 18.04 dhcp plex
New contributor
BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Usually my Google-Fu allows me to solve most issues with Linux after enough time, but this one has me stumped.
I recently tried to install Pihole on my Plex box, which is running ubuntu 18.04.2. Everything worked fine, but pihole wasn't able to reliably block the main things I wanted blocked (mainly youtube ads over my roku), so I uninstalled it. Ever since I did that, I've been having DHCP issues with my Plex server.
I've figured out two band-aids to get things working, but I want a proper fix.
- I can edit the resolv.conf file to add my router, or cloudflare as a DNS, which fixes all issues.
- I can edit the netplan .yaml file to force DHCP on my ethernet device, and then apply the netplan config. This also fixes all issues.
The problem with both of these fixes is they don't persist after reboot. I think something somewhere is going wrong with Network-Manager but I'm not sure what, and I'm not sure how to fix it. I'm guessing it has something to do with PiHole not really having a true "clean" uninstall option.
I've tried the following without success:
- Unplug and replug all networking hardware coupled with a restart of the Plex
- sudo apt-get -d --reinstall network-manager network-manager-gnome
Upon reboot dig www.google.com is always unsuccessful, and ping -c 3 8.8.8.8 is always successful. Trying to access google via 8.8.8.8 is always unsuccessful until one of the top fixes is applied.
I'm not quite sure what will be needed to fix this but I appreciate the time of anyone who's reading this. I realize I could probably make something that runs at startup which runs the netplan apply command, but I feel like there's a better solution to this.
Thanks!
EDIT: I added this after another question similar to mine had the output requested.--------------------------
sudo lshw -C network gives:
*-network
description: Ethernet interface
product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:01:00.0
logical name: enp1s0
version: 15
serial: 30:9c:23:d6:d4:c8
size: 1Gbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168h-2_0.0.2 02/26/15 ip=10.0.1.9 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
resources: irq:16 ioport:3000(size=256) memory:a1104000-a1104fff memory:a1100000-a1103fff
ifconfig gives:
enp1s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.0.1.9 netmask 255.255.255.0 broadcast 10.0.1.255
inet6 fe80::329c:23ff:fed6:d4c8 prefixlen 64 scopeid 0x20<link>
ether 30:9c:23:d6:d4:c8 txqueuelen 1000 (Ethernet)
RX packets 29929 bytes 8095074 (8.0 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 46972 bytes 48312760 (48.3 MB)
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 1000 (Local Loopback)
RX packets 27784 bytes 41332037 (41.3 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 27784 bytes 41332037 (41.3 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
cat /etc/netplan/*.yaml gives:
# Let NetworkManager manage all devices on this system
network:
version: 2
renderer: NetworkManager
ethernets:
enp1s0:
dhcp4: true
networking 18.04 dhcp plex
networking 18.04 dhcp plex
New contributor
BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 2 mins ago
BesselFunct
New contributor
BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 24 mins ago
BesselFunctBesselFunct
11
11
New contributor
BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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
);
);
BesselFunct is a new contributor. Be nice, and check out our Code of Conduct.
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%2f1128383%2fdhcp-issues-after-simultaneous-plex-pihole-install-ubuntu-18-04%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
BesselFunct is a new contributor. Be nice, and check out our Code of Conduct.
BesselFunct is a new contributor. Be nice, and check out our Code of Conduct.
BesselFunct is a new contributor. Be nice, and check out our Code of Conduct.
BesselFunct is a new contributor. Be nice, and check out our Code of Conduct.
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%2f1128383%2fdhcp-issues-after-simultaneous-plex-pihole-install-ubuntu-18-04%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