Re: Network gurus

2017-11-07 Thread Michael
$ cat /etc/resolv.conf # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN # 127.0.0.53 is the systemd-resolved stub resolver. # run "systemd-resolve --status" to see details about the actual nameserv

Re: Network gurus

2017-11-07 Thread Michael
$ systemd-resolve --status systemd-resolve: unrecognized option '--status' $ systemd-resolve No arguments passed. On Tue, Nov 7, 2017 at 6:27 AM, Michael wrote: > $ cat /etc/resolv.conf > # Dynamic resolv.conf(5) file for glibc resolver(3) generated by > resolvconf(8) > # DO NOT EDIT THIS F

RE: Network gurus

2017-11-07 Thread Carruth, Rusty
On my Linux boxes (Linux Mint), there is /etc/resolvconf/resolv.conf.d dir which has 3 files: base, head, tail. Put ‘nameserver 8.8.8.8’ into base (or tail) and it should always get added to resolv.conf every reboot. (You might look at all 3 files, my favourite trick for this is: more /etc/r

PLUG Meeting topic for Thursday November 9th

2017-11-07 Thread PLUG Announcements
PLUG Meeting for October 12th Ed Nicholson will present "onBoarding for 4 free resources: Archive.org, MusicBrainz, OpenStreetMap and Wikipedia" More Presentations TBA* * *For more info, Meeting time a

PLUG's Security Meeting for November 14th - Bring friends and family to this one

2017-11-07 Thread PLUG Announcements
*PLUG *Security Meeting Meets on the*2nd Tuesday of every month*, starting at 7pm. For more information see: https://phxlinux.org/index.php/meetings/20-plug-security.html *Aaron Jones: Introduction To Holiday Safety* *

Re: Network gurus

2017-11-07 Thread Michael
I looked into the file (as suggested) and it says not to edit manually. On Tue, Nov 7, 2017 at 11:00 AM, Carruth, Rusty wrote: > On my Linux boxes (Linux Mint), there is /etc/resolvconf/resolv.conf.d dir > which has 3 files: base, head, tail. > > > > Put ‘nameserver 8.8.8.8’ into base (or tail)

Re: Network gurus

2017-11-07 Thread Michael
:: /etc/resolvconf/resolv.conf.d/base :: :: /etc/resolvconf/resolv.conf.d/head :: # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN # 127.0.0.53 is th

Re: Network gurus

2017-11-07 Thread Brien Dieterle
You probably just need to use your desktop environment (gnome, etc) and go into network settings and change it there to a static DNS server. On Tue, Nov 7, 2017 at 2:47 PM, Michael wrote: > :: > /etc/resolvconf/resolv.conf.d/base > :: > :: > /etc/resolvconf/re

Re: Network gurus

2017-11-07 Thread Michael
is it better to have more than one? What other should I tell it? On Tue, Nov 7, 2017 at 4:54 PM, Brien Dieterle wrote: > You probably just need to use your desktop environment (gnome, etc) and go > into network settings and change it there to a static DNS server. > > On Tue, Nov 7, 2017 at 2:47

RE: Network gurus

2017-11-07 Thread Carruth, Rusty
Always better to have redundancy. Doesn’t your ISP (or whatever they call the people you pay money to for your internet) ‘give’ you a list of name servers? Rusty Carruth | Customer Support | rusty.carr...@smarth.com | http://www.smarth.com

Re: Network gurus

2017-11-07 Thread Brien Dieterle
2 is good. 8.8.8.8. And 8.8.4.4 Those are Google servers On Nov 7, 2017 2:58 PM, "Michael" wrote: > is it better to have more than one? What other should I tell it? > > On Tue, Nov 7, 2017 at 4:54 PM, Brien Dieterle wrote: > >> You probably just need to use your desktop environment (gnome, et

Re: Network gurus

2017-11-07 Thread Michael
Thanks. Got it taken care of now! Why do you think it would suddenly not accept DHCP? I mean, my laptop still works and it is the same OS. On Tue, Nov 7, 2017 at 4:59 PM, Brien Dieterle wrote: > 2 is good. 8.8.8.8. And 8.8.4.4 > > Those are Google servers > > On Nov 7, 2017 2:58 PM, "Michael"

RE: Network gurus

2017-11-07 Thread Carruth, Rusty
Well, the ones in resolv.conf.d are what get copied to resolv.conf during startup. To prove that, change resolv.conf to say one thing, and change the base (or head, or tail, whichever it is that has the ‘do not edit’ message) to say something else, and reboot. The changes you made to base shou

RE: Network gurus

2017-11-07 Thread Carruth, Rusty
:: /etc/resolvconf/resolv.conf.d/base :: nameserver 10.0.10.17 :: /etc/resolvconf/resolv.conf.d/head :: # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRIT

Re: Network gurus

2017-11-07 Thread Michael
Spoke too soon. It still does not survive a rebootthough the DNS still points to google. On Tue, Nov 7, 2017 at 4:50 PM, Carruth, Rusty wrote: > Well, the ones in resolv.conf.d are what get copied to resolv.conf during > startup. > > > > To prove that, change resolv.conf to say one thing, and ch

Re: Network gurus

2017-11-07 Thread Michael
So how do I do this? Edit /etc/resolvconf/resolv.conf.d/tail by hand and put 'nameserver 8.8.8.8' on the last line? On Tue, Nov 7, 2017 at 11:00 AM, Carruth, Rusty wrote: > Put ‘nameserver 8.8.8.8’ into base (or tail) and it should always get > added to resolv.conf every reboot. (You might loo

RE: Network gurus

2017-11-07 Thread Carruth, Rusty
I thought that’s what you’d done already. Yes, that’s what I’d do. (Did myself) Rusty Carruth | Customer Support | rusty.carr...@smarth.com | http://www.smarth.com From: PLUG-discuss [mailto:plug-discuss-boun...@lists.phxlinux.org] On B

Re: Network gurus

2017-11-07 Thread Michael
That did it! And for the redundency I would put 'nameserver 8.8.4.4' on a new line? On Tue, Nov 7, 2017 at 5:42 PM, Carruth, Rusty wrote: > I thought that’s what you’d done already. Yes, that’s what I’d do. (Did > myself) > > > > > > Rusty Carruth | Customer Support | *rusty.carr...@smarth.com

RE: Network gurus

2017-11-07 Thread Carruth, Rusty
exactly From: PLUG-discuss [mailto:plug-discuss-boun...@lists.phxlinux.org] On Behalf Of Michael Sent: Tuesday, November 07, 2017 3:48 PM To: Main PLUG discussion list Subject: Re: Network gurus That did it! And for the redundency I would put 'nameserver 8.8.4.4' on a new line? On Tue, Nov 7,