Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > alt.os.linux > #33356

Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager?

From William Unruh <unruh@invalid.ca>
Newsgroups alt.os.linux, alt.os.linux.ubuntu
Subject Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager?
Date 2016-01-03 21:40 +0000
Organization A noiseless patient Spider
Message-ID <n6c4gp$ekm$1@dont-email.me> (permalink)
References <n61cv4$fnj$1@news.albasani.net> <il7f8bp1aluk2u3ga3rmq2j26vdsospv13@4ax.com> <n68prs$fv1$2@news.albasani.net> <n68r2a$lki$1@dont-email.me> <n693b9$32n$1@news.albasani.net>

Cross-posted to 2 groups.

Show all headers | View raw


On 2016-01-02, JJ <jj4public@vfemail.net> wrote:
> Caver1 <caver1@inthemud.org> wrote in message n68r2a$lki$1@dont-email.me
>
>> You can't change anything in resolv.conf. It just shows what 
>> you are using at any given time.

Of course you can. You can change anything you want, and the next dns
query that file will be read.

>> Disconnect from your VPN. Take a look at reslov.conf.
>> Now connect to your VPN and look at it again.
>> It should be different.

Depends on whether or not the program that brings up the vpn also
installs a nameserver. It does not have to. 

>
> Thanks for that suggestion.
> Fundamentally, this will fail to change anything - but - that's the 
> real indication of the problem in the first place.
>
> It won't make a difference because I can't get Linux to *change* the
> DNS server (the only server that is taking effect is that which is
> defined in the router!).
>
> This has been the case all along, so, it won't change unless I figure
> out *why* this is the case.
>
> OFF VPN:
> $ curl http://myip.dnsomatic.com; echo
>   {reports the IP address my ISP assigns to me}
> $ route -n
>   Kernel IP routing table
>   Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
>   0.0.0.0         192.168.1.1     0.0.0.0         UG    0      0        0 wlan0
>   192.168.1.0     0.0.0.0         255.255.255.0   U     0      0        0 wlan0
> $ 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
>   nameserver 192.168.1.1
>
> ON VPN:
> $ curl http://myip.dnsomatic.com; echo
>   176.126.237.207 <== which is a VPN site in Romania from FreeVPN.me
> $ route -n
>   Kernel IP routing table
>   Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
>   0.0.0.0         10.14.0.53      128.0.0.0       UG    0      0        0 tun2
>   0.0.0.0         192.168.1.1     0.0.0.0         UG    0      0        0 wlan0
>   10.14.0.1       10.14.0.53      255.255.255.255 UGH   0      0        0 tun2
>   10.14.0.53      0.0.0.0         255.255.255.255 UH    0      0        0 tun2
>   128.0.0.0       10.14.0.53      128.0.0.0       UG    0      0        0 tun2
>   176.126.237.207 192.168.1.1     255.255.255.255 UGH   0      0        0 wlan0
>   192.168.1.0     0.0.0.0         255.255.255.0   U     0      0        0 wlan0
> $ 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
>   nameserver 192.168.1.1

OK. This says that your dns server is 192,168.1.1. The routing table
says anything of the form 192.168.1.x should go over wlan0. 
All dns queries will go out over wlan0, not over tun2.

So, edit /etc/resolv.conf
change the line
nameserver 192.168.1.1 
to
nameserver 8.8.8.8
or whatever dns server you want to use. 

Now try it again.

Ignore the warning 
 #     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
That only means that next time your boot up, or dhcp grabs another
address, or... it will overwrite your changes. So they will not be
permanant. But who cares. Right now you want ofind out what is going on. 
So make those changes, and ignore that warning. Then do 
ping www.google.com
and see if the dns query goes out through tun2 or vpn. 

If this solves your problem, then you have to figure out how to make
this permanant. Ie, you need to make sure that when tun2 is brought up,
a nameserver which is not 192.168.1.1 is not used. 

Your routeing table is

10.14.0.1       10.14.0.53      255.255.255.255 UGH   0      0   0 tun2
10.14.0.53      0.0.0.0         255.255.255.255 UH    0      0   0 tun2
176.126.237.207 192.168.1.1     255.255.255.255 UGH   0      0   0 wlan0
192.168.1.0     0.0.0.0         255.255.255.0   U     0      0   0 wlan0
128.0.0.0       10.14.0.53      128.0.0.0       UG    0      0   0 tun2
0.0.0.0         10.14.0.53      128.0.0.0       UG    0      0   0 tun2
0.0.0.0         192.168.1.1     0.0.0.0         UG    0      0   0 wlan0


This is ordered fro9m most specific to least. The computer goes down the
list in this order, testing the address against each line until it finds
a first match, and then uses that line. 
A "match" means "Take the destination address. Xor it with the netmask.
If that produces something that is the same as the first entry in that
line, it is a match"
Thus 192.168.1.1 does not match the first line. It does not match the
second line. It does not match the third line. But it does match the
fourth line. ( 192.168.1.1 XOR 255.255.255.0 = 192.168.1.0)
That says to put the packet onto the wlan0 output. And just dump it onto
the line by asking "Who has 192.168.1.1" and send it directly to the ARP
address which is returned by that call. 
AFter that whatever is at 192.168.1.1 handles it. Your computer has
nothing more to do with that packet. Your router, which you say is
192.168.1.1 presumably has some internal routing table which tells it
where to forward that packet to, but it will never be the vpn.

Now. If you have 
nameserver 8.8.8.8 then the routing will again go through the list. It
will not match the first line. It will not match the second line. It
will not match the third line. It will not match the fourth line. It
will not match the fifth line (8.8.8.8 XOR 128.0.0.0 = 0.0.0.0 which is
not equal to 128.0.0.0) 
It will match the sixth line ( 8.8.8.8 XOR 128.0.0.0 = 0.0.0.0 which IS
equal to 0.0.0.0)
Thus the packet will be sent to 10.14.0.53. The system has to go through
the same procedure for that address. It does not match the first line.
It does match the second line. so the system will send out a "who has
10.14.0.53" on the tun2 interface and it will send the packet to the arp mac address which
gets returned to it.

At that point whatever computer is at 10.14.0.53 gets the packet and has
to decide what to do with it according to its own routing tables. 

Back to alt.os.linux | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-30 19:57 +0000
  Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 03:11 +0000
    Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2015-12-30 19:21 -0800
      Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 03:43 +0000
        Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2015-12-30 19:59 -0800
          Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 04:34 +0000
            Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2015-12-30 20:43 -0800
              Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 05:49 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2015-12-30 22:04 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 06:25 +0000
          Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? J G Miller <miller@yoyo.ORG> - 2015-12-31 13:04 +0000
            Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 13:54 +0000
      Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 04:02 +0000
        Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Bit Twister <BitTwister@mouse-potato.com> - 2015-12-31 04:52 +0000
          Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 05:35 +0000
            Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2015-12-30 21:46 -0800
              Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 06:14 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2015-12-30 22:31 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 06:49 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 07:27 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? DecadentLinuxUserNumeroUno <DLU1@DecadentLinuxUser.org> - 2015-12-31 03:05 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 08:27 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? DecadentLinuxUserNumeroUno <DLU1@DecadentLinuxUser.org> - 2015-12-31 03:33 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 09:19 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2015-12-31 10:18 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 15:42 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 15:53 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 16:02 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2015-12-31 10:43 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 16:26 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2015-12-31 12:15 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 17:45 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2015-12-31 12:52 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2015-12-31 12:58 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 02:07 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-01 22:49 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 07:08 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 08:11 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 14:58 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 18:07 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2015-12-31 13:25 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 02:04 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-01 22:27 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 03:45 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-01 23:19 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Art Santorini <artsantorini@example.com> - 2016-01-01 20:26 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? J G Miller <miller@yoyo.ORG> - 2016-01-02 17:52 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 18:29 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 14:07 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 21:45 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 17:01 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 22:31 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? "Jonathan N. Little" <lws4art@gmail.com> - 2016-01-02 15:04 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 21:44 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? J G Miller <miller@yoyo.ORG> - 2016-01-02 20:46 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? J G Miller <miller@yoyo.ORG> - 2016-01-02 22:21 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 23:13 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? J G Miller <miller@yoyo.ORG> - 2016-01-03 00:33 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 03:00 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 02:43 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 21:24 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Shadow <Sh@dow.br> - 2016-01-03 19:50 -0200
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 22:11 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 02:38 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? James Dickson <JamesDickson@example.com> - 2016-01-03 21:10 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 08:35 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 08:25 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 15:03 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 10:16 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 15:27 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 10:48 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 17:44 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 13:25 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 21:41 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 17:00 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 15:30 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 10:58 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 17:51 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 13:36 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 21:37 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 16:58 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 22:27 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? William Unruh <unruh@invalid.ca> - 2016-01-02 23:06 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 00:18 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? J G Miller <miller@yoyo.ORG> - 2016-01-03 00:41 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 02:20 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 20:09 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 20:15 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 02:16 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 23:15 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 21:11 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Kirk_Von_Rockstein <Kirk_Von_Rockstein@nowhere.invalid> - 2016-01-03 21:04 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-04 07:08 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 15:03 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 08:36 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 08:53 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 15:18 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 10:40 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 17:11 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 12:30 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 18:09 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 13:52 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 21:31 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 16:51 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 22:23 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 17:19 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 12:45 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 18:20 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 14:05 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 20:28 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 15:38 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 22:07 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 19:04 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 00:20 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Kirk_Von_Rockstein <Kirk_Von_Rockstein@nowhere.invalid> - 2016-01-03 20:58 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? William Unruh <unruh@invalid.ca> - 2016-01-03 21:11 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 22:01 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? William Unruh <unruh@invalid.ca> - 2016-01-02 22:32 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 00:27 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? J G Miller <miller@yoyo.ORG> - 2016-01-03 02:05 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-04 03:04 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? William Unruh <unruh@invalid.ca> - 2016-01-04 03:51 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-04 04:49 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? William Unruh <unruh@invalid.ca> - 2016-01-04 18:01 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-04 18:23 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 21:22 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 16:41 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 22:10 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? William Unruh <unruh@invalid.ca> - 2016-01-02 22:49 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Shadow <Sh@dow.br> - 2016-01-02 21:13 -0200
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? "john" <z@z.z> - 2016-01-12 16:33 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 00:36 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? J G Miller <miller@yoyo.ORG> - 2016-01-02 22:57 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 00:10 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? J G Miller <miller@yoyo.ORG> - 2016-01-03 01:58 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 13:33 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? William Unruh <unruh@invalid.ca> - 2016-01-03 20:03 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-04 06:52 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? William Unruh <unruh@invalid.ca> - 2016-01-04 18:08 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-04 18:34 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? DecadentLinuxUserNumeroUno <DLU1@DecadentLinuxUser.org> - 2016-01-04 14:20 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 02:05 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 21:17 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? J G Miller <miller@yoyo.ORG> - 2016-01-03 02:33 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Richard Kettlewell <rjk@greenend.org.uk> - 2016-01-03 08:35 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-04 06:13 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? "john" <z@z.z> - 2016-01-12 16:32 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 21:27 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 16:43 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 22:15 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 17:26 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 17:32 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2015-12-31 12:24 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 17:52 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2015-12-31 13:05 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 02:12 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-01 22:53 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 08:36 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 17:25 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2015-12-31 12:47 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 02:35 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-01 23:01 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 07:05 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 08:06 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Wildman <best_lay@yahoo.com> - 2016-01-02 09:46 -0600
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 10:59 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 17:55 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 13:50 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 21:47 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 17:02 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? J G Miller <miller@yoyo.ORG> - 2016-01-02 17:55 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 18:31 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 13:51 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? J G Miller <miller@yoyo.ORG> - 2016-01-02 20:47 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 15:52 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? "Cybe R. Wizard" <cybe_r_wizard@WizardsTower.invalid> - 2016-01-02 18:53 -0600
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 20:13 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Wildman <best_lay@yahoo.com> - 2016-01-02 23:19 -0600
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? "Cybe R. Wizard" <cybe_r_wizard@WizardsTower.invalid> - 2016-01-03 01:42 -0600
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 17:53 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 13:39 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 21:50 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 17:05 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? "Cybe R. Wizard" <cybe_r_wizard@WizardsTower.invalid> - 2015-12-31 10:25 -0600
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 17:55 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? "Jonathan N. Little" <lws4art@gmail.com> - 2015-12-31 16:31 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 02:54 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2015-12-31 11:54 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2015-12-31 20:48 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2015-12-31 13:08 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2015-12-31 16:18 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Kirk_Von_Rockstein <Kirk_Von_Rockstein@nowhere.invalid> - 2015-12-31 22:07 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? "Jonathan N. Little" <lws4art@gmail.com> - 2015-12-31 16:41 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2015-12-31 14:33 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? "Dirk T. Verbeek" <dverbeek@xs4all.nl> - 2016-01-01 12:13 +0100
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2016-01-03 09:50 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? "Jonathan N. Little" <lws4art@gmail.com> - 2016-01-03 13:49 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2016-01-03 14:51 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? MWBradburne <MWBradburne@cisco.com> - 2016-01-03 19:59 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2016-01-03 14:58 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-04 03:13 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Paul <nospam@needed.com> - 2016-01-03 15:29 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? gamo <gamo@telecable.es> - 2016-01-01 10:17 +0100
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 02:56 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2016-01-03 09:55 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Shadow <Sh@dow.br> - 2016-01-03 19:15 -0200
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2016-01-03 14:46 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? "Cybe R. Wizard" <cybe_r_wizard@WizardsTower.invalid> - 2015-12-31 23:23 -0600
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? stepore <linshine@here.now> - 2016-01-01 23:19 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 08:13 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2016-01-03 09:55 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Chris Ahlstrom <OFeem1987@teleworm.us> - 2016-01-03 14:07 -0500
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2016-01-03 14:52 -0800
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-03 19:51 +0000
                Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Marek Novotny <marek.novotny@marspolar.com> - 2016-01-03 14:53 -0800
  Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Shadow <Sh@dow.br> - 2016-01-02 07:58 -0200
    Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 15:20 +0000
      Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Caver1 <caver1@inthemud.org> - 2016-01-02 10:43 -0500
        Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 18:02 +0000
          Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? William Unruh <unruh@invalid.ca> - 2016-01-03 21:40 +0000
            Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-04 05:39 +0000
      Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Shadow <Sh@dow.br> - 2016-01-02 14:11 -0200
        Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-02 18:06 +0000
  Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-04 08:03 +0000
    Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-04 11:13 +0000
      SOLVED: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-04 12:18 +0000
        Re: SOLVED: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Mark Cassidy <mcassidy@dot.invalid> - 2016-01-07 19:58 +0000
  Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Alfredo Palhares <masterkorp@masterkorp.net> - 2016-01-07 01:08 +0000
    Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-07 01:38 +0000
      SOLVED: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-07 19:00 +0000
        Re: SOLVED: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? JJ <jj4public@vfemail.net> - 2016-01-07 19:03 +0000
  Re: How do I stop DNS LEAKS in Ubuntu with wicd as the network manager? Andy Burns <andy@spam.adobe.com> - 2016-01-07 20:10 +0000

csiph-web