<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Roger House wrote:
<blockquote cite="mid:47A25C19.8000905@sonic.net" type="cite">
  <pre wrap="">Ken McGlothlen wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">| From: Roger House <a class="moz-txt-link-rfc2396E" href="mailto:rhouse@sonic.net">&lt;rhouse@sonic.net&gt;</a>

| [...] However, all is not yet ideal.  Although I seem to have full access to
| the Internet, I am now not able to VPN to the remote machine.  When I run
| vpnc-connect as I always have in the past, I now get this error:

|     /etc/vpnc/vpnc-script:  1:  Cannot open /var/run/vpnc/resolv.conf-backup
|         No such file

| Despite this message, I am told that VPNC started in the background.  When
| I run Terminal Server Client to connect, I get this error:

|     szego.infocentricity.com unable to resolve host

| That is the name of the remote machine I work on via VPN.  I have made no
| changes at all to the scripts and procedures I use to VPN.

| Any ideas?

Well, I can't get szego.infocentricity.com to resolve, either.

        $ dig szego.infocentricity.com

        ; &lt;&lt;&gt;&gt; DiG 8.3 &lt;&lt;&gt;&gt; szego.infocentricity.com 
        ;[...]

        ;; AUTHORITY SECTION:
        infocentricity.com.     1h57m27s IN SOA  ns1.infocentricity.com. hostmaster.infocentricity.com. (
                                                200711160       ; serial
                                                3H              ; refresh
                                                1H              ; retry
                                                5D              ; expiry
                                                2H )            ; minimum

        ;; [...]
        $ _

Since that authoritative response is coming from infocentricity.com's
nameserver, it appears that the hostname is wrong, or that someone on their end
screwed up, or the hostname isn't available on an external nameserver.

This leads me to think that szego is available only on an internal nameserver
available to you once the VPN connection is running.

Are you sure VPNC is running?

                                                        ---Ken

_______________________________________________
talk mailing list
<a class="moz-txt-link-abbreviated" href="mailto:talk@nblug.org">talk@nblug.org</a>
<a class="moz-txt-link-freetext" href="http://nblug.org/cgi-bin/mailman/listinfo/talk">http://nblug.org/cgi-bin/mailman/listinfo/talk</a>


  
    </pre>
  </blockquote>
  <pre wrap=""><!---->It is true that szego.infocentricity.com is not visible outside
of InfoCentricity, as I understand it.  Here is how I have
connected with it for the past 6 months or so:

    vpnc_connect infocent

where /etc/vpnc/infocent.conf contains

## generated by pcf2vpnc.pl
IPSec ID infocent
IPSec gateway chapman.infocentricity.com
Xauth username rhouse
IKE DH Group dh2

I get the message that VPNC is running in the background
with pid 6713.  Then ps aux shows this:

root      6713  0.0  0.0   2284   404 ?        Ss   15:13   0:00 
vpnc-connect infocent

So it looks like vpnc is running.  I am wondering if the missing
resolv.conf-backup file is an issue.  I have never gotten this
message before.

Roger


_______________________________________________
talk mailing list
<a class="moz-txt-link-abbreviated" href="mailto:talk@nblug.org">talk@nblug.org</a>
<a class="moz-txt-link-freetext" href="http://nblug.org/cgi-bin/mailman/listinfo/talk">http://nblug.org/cgi-bin/mailman/listinfo/talk</a>
  </pre>
</blockquote>
<br>
<br>
Roger,<br>
While I have never used the VPN software before after reading all of
the other emails I might have an idea that works.&nbsp; I use Ubuntu
everyday and any time I shutdown non "properly" (using the shutdown or
from the command line with 'poweroff' or 'restart') I always have to
restart cleanly to get the network running correctly, restarting the
network service doesn't even work.&nbsp; Any way, I feel your pain with
this.&nbsp; On to the VPN problem.<br>
Something I didn't understand in your original /etc/resolv.conf post
was the IP's of your nameserver lines:<br>
&nbsp;&nbsp;&nbsp;&nbsp; nameserver 192.168.11.25<br>
&nbsp;&nbsp;&nbsp;&nbsp; nameserver 192.168.11.26<br>
I don't know how much you know about networking but I will explain
something just to act like I actually know something.&nbsp; The IP's you
listed are non routable (the "private IP address space"), this means
those IP's either had to be your Linksys router or another machine on
your network (you mention windows boxes).&nbsp; A non routable IP means that
if your Linksys router is forwarding the packets (can't remember if
they do or not - hope not as that just makes more work for the internet
routers) then the first router they get to would drop the packets
without forwarding.&nbsp; So when you type in '<a class="moz-txt-link-abbreviated" href="http://www.google.com">www.google.com</a>' your computer
says "hey I don't know what IP google.com is so lets ask the dns
server.&nbsp; 192.168.11.25 where are you?"&nbsp; If your Linksys router
forwarded the packets the first router would drop then and your
computer would never receive an answer to its question.&nbsp; It would then
try 192.168.11.26 (the secondary DNS server) and get the same response.<br>
Since changing your /etc/resolv.conf fixed your internet problem I
would hazard a guess that 192.168.11.xx isn't on your home LAN and none
of your home LAN boxes are doing DNS.&nbsp; That makes me believe, as one of
the other guys mentioned, that these two 192.168 addresses are actually
on the LAN of infocentricity.com.&nbsp; Did you understand the explanation
about why you couldn't dig szego.infocentricity.com?&nbsp; If not just ask
and I, or someone else will explain it, it has to do with interior and
exterior DNS.&nbsp; Anyway, I think that the original file you showed us was
the resolv.conf for the vpn.&nbsp; What I would do is just create that
file.&nbsp; I'm a command line guy so this is how I would do it:<br>
open up a terminal<br>
$sudoedit /var/run/vpnc/resolv.conf-backup<br>
Paste in:<br>
&nbsp;&nbsp;&nbsp; search hsd1.ca.comcast.net. infocentricity.com<br>
&nbsp;&nbsp;&nbsp; nameserver 192.168.11.25<br>
&nbsp;&nbsp;&nbsp; nameserver 192.168.11.26<br>
press the control and x keys at the same time and answer yes to the
questions to save the file(that is if nano was the editor that came up).<br>
Try your VPN again.<br>
<br>
Since I have never used vpnc before I don't know what the permissions
are required to be on this file, but since it is using it to
overwrite(?) the normal /etc/resolv.conf I would guess that root
ownership is going to be ok.<br>
<br>
Let me know how it goes.<br>
<br>
Good luck<br>
<br>
<pre class="moz-signature" cols="72">Eric T. Landerville
Co-Founder
REL Techs

     Reliable Technicians
Reliable Technology

(707) 546-2192
<a class="moz-txt-link-abbreviated" href="mailto:eric@reltechs.com">eric@reltechs.com</a>
<a class="moz-txt-link-abbreviated" href="http://www.reltechs.com">www.reltechs.com</a></pre>
</body>
</html>