Linux-Networking Digest #239, Volume #12         Sun, 15 Aug 99 22:13:40 EDT

Contents:
  Re: Gigabyte GA-6BXE networking problems ("withheld")
  Re: killing a connection ("Steve Cowles")
  Re: NE2000 NIC performance, 10bT, half dup (Tim Moore)
  Re: Newbie and Ethernet Card (Tim Moore)
  Re: modules???? ("Chris")
  PCMCIA Linksys card, Which Driver? ("Tony Enriquez")
  gdm murdered mysteriously (Marek)
  RedHat Linux as Mac file server (Andy Ringsmuth)
  IP Monitoring (Benu)
  Re: Why use real IP's when I can use virtual? (Justin B Willoughby)
  Re: IPmasq - blocking group of hosts (Chris)
  Network Card setup!! ("Carl")
  Re: Why use real IP's when I can use virtual? (Ken Booth)
  Re: Newbie 3c589 Red Hat PCMCIA question (Terrence Coccoli)
  route problem II: Can't add gateway address (Youjip Won)
  Re: Need help masquerading PPTP VPN with IPChains ("Andrey Smirnov")
  Re: Linux newbie vs. cable modem (Terrence Coccoli)
  Creating a glbal address list with a linux server and MS Win95 ("Rich")

----------------------------------------------------------------------------

From: "withheld" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.hardware
Subject: Re: Gigabyte GA-6BXE networking problems
Date: Sun, 15 Aug 1999 23:08:47 +0100

you could try disabling any PNP OS options
Sid Boyce <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> I started out with a Tyan AT-100 MoBo, Linux pre-2.2.11-ac3, EExpress
> 16 card with everything working fine
> Installed the new Gigabyte board (latest BIOS fixes 2.7), changed the
> ES1868 sound card for a SB64 PCI. After setting up I could get no
> response from my other Linux box (Cyrix 233/3c509b) or ISDN router, a
> ping just clammed up.
> I next tried a 3c509 (IRQ 9 io=0x300 on EE16 and 509b), this time, my
> Cyrix box and the router were responding as seen on tcpdump -i eth0 on
> the Cyrix, at first nothing showed up on the P-III 450, then suddenly a
> string of "ARP who-has" appeared and continued OK, though no replies
> were being seen.
> I have gone over the BIOS setup several times and there is no IRQ
> conflict, though it smells like it, I've tried auto and manual, setting
> IRQ 9 as legacy ISA.
>
> 02:11:05.425117 arp who-has 192.168.10.2 tell g3vbv.ampr.org
> 02:11:05.434756 arp reply 192.168.10.2 is-at 8:0:39:3:14:50
> 02:11:06.426122 arp who-has 192.168.10.2 tell g3vbv.ampr.org
> 02:11:06.427502 arp reply 192.168.10.2 is-at 8:0:39:3:14:50
> Seen immediately on the Cyrix, later shows up on P-III 450 (the box
> with the problem), except there is no arp reply.
> lsdev shows the following..........
>  Device            DMA   IRQ  I/O Ports
> ------------------------------------------------
> 3c509                        0300-030f
> aic7xxx                  11  e400-e4be
> cascade             4     2
> dma                          0080-008f
> dma1                         0000-001f
> dma2                         00c0-00df
> eth0                      9
> floppy              2     6  03f0-03f5 03f7-03f7
> fpu                      13  00f0-00ff
> ide0                     14  01f0-01f7 03f6-03f6 f000-f007
> ide1                     15  0170-0177 0376-0376 f008-f00f
> keyboard                  1  0060-006f
> Mouse                    12
> parport0                     0378-037f 0778-077a
> pic1                         0020-003f
> pic2                         00a0-00bf
> rtc                       8  0070-007f
> serial                       02f8-02ff 03f8-03ff
> timer                     0  0040-005f
> vga+                         03c0-03df
> Any help appreciated, even to say that this board works with ethernet
> cards.
> BTW, still the same after upgrading to 2.2.12-pre3. The 3c509 shows up
> as above with two entries one for 3c509 and one for eth0, so does the
> working machine, while the EE16 just shows up as eexpress io=0300 irq=9.
> Also diagnostics for both cards indicate they are OK.
> Regards
> --
> ... Sid Boyce...G3VBV...44-121 422 0375
>                    -----------------------------------



------------------------------

From: "Steve Cowles" <[EMAIL PROTECTED]>
Subject: Re: killing a connection
Date: Sun, 15 Aug 1999 23:52:05 GMT

In order to "kill" a connection, you would need to know what port/app they
intruder was using. Then use a command like "ps auwxf" to find out if there
are any associated processes involved in making that connection. For
instance, telnet uses port 23, and ftp uses ports 20/21. If an intruder was
using telnet, then you would see an associated in.telnetd process that was
"spawned" by the inetd process.

Using Telnet as an example, the following would illustrate the process tree
for a telnet session (your process ID's would be different.
[scowles@voyager scowles]$ ps auwxf | more
USER       PID %CPU %MEM   VSZ  RSS TTY      STAT START   TIME COMMAND
root         1  0.0  0.1  1096  116 ?        S    Aug09   0:03 init [5]
root         2  0.0  0.0     0    0 ?        SW   Aug09   0:00 [kflushd]
root         3  0.0  0.0     0    0 ?        SW   Aug09   0:00 [kpiod]
root         4  0.0  0.0     0    0 ?        SW   Aug09   0:00 [kswapd]
root       259  0.0  0.1  1212  124 ?        S    Aug09   0:00 [pump]
root       323  0.0  0.6  1276  384 ?        S    Aug09   0:01 syslogd -m 0
root       334  0.0  0.2  1380  156 ?        S    Aug09   0:00 klogd
root       348  0.0  0.1  1284  116 ?        S    Aug09   0:00 crond
root       362  0.0  0.1  1232   68 ?        S    Aug09   0:00 inetd
root      6678  0.0  1.1  1428  700 ?        S    18:11   0:00  \_
in.telnetd
root      6679  0.0  1.6  2152 1064 pts/1    S    18:11   0:00      \_
login --scowles
scowles   6680  0.0  1.5  1728  968 pts/1    S    18:11   0:00
         \_ -bash
scowles   6698  0.0  1.2  2464  816 pts/1    R    18:14   0:00
\_ ps auwxf
scowles   6699  0.0  0.6  1100  392 pts/1    S    18:14   0:00
\_ more

In the above, process 362 (inetd, the parent) spawned child process 6678
(in.telnetd) which in turn spawned child process 6679 (login) which in turn
spawned child process 6680 (bash) which in turn spawned the ps|more commands
(I typed those in). The reason you need to know the parent/child
relationship comes into play when you want to "kill" a process.

In this case, you would want to kill the processes in reverse order. By NOT
killing a process tree in reverse order, you stand a chance of a child
process going "defunct". Which is not good. A defunct process is typically a
child process that tried to return to the parent process (like typing exit
or logout), but the parent process had already died. I have had cases where
a defunct process could not be killed (even using kill -9). I had to reboot
in order to get rid of the defunct <groan>

In the above example, I would kill the intruders telnet session by issuing
the following command (as root)
kill -HUP 6680

The -HUP will send the proper Hangup Signal to all other parent process in
the stack. There should be no reason to issue the following commands. They
should all dissapear.
kill -HUP 6679
kill -HUP 6678

If you want to limit access to your Linux box (from the internet) add the
following to your /etc/hosts.allow and /etc/hosts.deny files. This will keep
a lot (not all) of the intruders from gaining access to your system.
ipchains commands can help with the rest of the "script kiddies" out there.

#
# hosts.allow   This file describes the names of the hosts which are
#               allowed to use the local INET services, as decided
#               by the '/usr/sbin/tcpd' server.
#
# Allow only computers on the 192.168.9.0/24 (Local) network access to all
services
ALL:  192.168.9.

#
# hosts.deny    This file describes the names of the hosts which are
#               *not* allowed to use the local INET services, as decided
#               by the '/usr/sbin/tcpd' server.
#
# Disallow ALL access to this system by default. NOTE: hosts.allow is
consulted first.
ALL:    ALL


Steve Cowles
SWCowles at gte dot net


William B. Cattell <[EMAIL PROTECTED]> wrote in message
news:934730731.1601392698@news...
> I've been locking down my machine (RH6/cable modem access) and so far, so
good.
>  I noticed the other night that someone had established connections to me.
I
> used netstat -a to see the connections but couldn't find how to actually
break
> their connections.
>
> Short of stopping eth0 and restarting it how can I do this?
>
> TIA
>
> Bill



------------------------------

Date: Sun, 15 Aug 1999 16:39:19 -0700
From: Tim Moore <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.hardware
Subject: Re: NE2000 NIC performance, 10bT, half dup

FTP server (Version wu-2.4.2-academ[BETA-18](1) on 2.0.37,
FTP server (Version wu-2.4.2-academ[BETA-16](1) on 2.0.34.
-- 
timothymoore    "Everything is permitted.  Nothing is forbidden."
bigfoot                                            WS Burroughs.
com

------------------------------

Date: Sun, 15 Aug 1999 16:42:41 -0700
From: Tim Moore <[EMAIL PROTECTED]>
Subject: Re: Newbie and Ethernet Card

Most drivers have different compilation paths if compiled directly into
the kernel versus as a module.  Donald Becker's page has detailed
compilation instructions.

http://cesdis.gsfc.nasa.gov/linux/

-- 
timothymoore    "Everything is permitted.  Nothing is forbidden."
bigfoot                                            WS Burroughs.
com

------------------------------

From: "Chris" <[EMAIL PROTECTED]>
Crossposted-To: 
comp.os.linux.misc,alt.os.linux.slackware,alt.linux.slackware,alt.os.linux,comp.os.linux.setup
Subject: Re: modules????
Date: Sun, 15 Aug 1999 22:33:25 GMT

the D-Link DFE530-TX uses the via-rhine driver, not the tulip driver.  The
DE530-TX uses the tulip.

Marc Ohmann <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> After struggling with installling this network card for 2 days, I have
> decided I need help.  I have a D-Link DFE530-TX 10/100 pci card.  I have
> the tulip driver and the de4x5 driver.  I have been trying to install
> either of them as modules with no luck.  modprobe never sees the card
> and eth0 never shows up in dmesg.  Everytime I try to "insmod tulip"  I
> get a message that says "device or resource busy".  Thinking that
> another driver was already attached to the nic I commented out every
> line in /etc/conf.modules with no luck (the device still comes up
> busy).  I have uncommented the line in /etc/rc.d/rc.modules for the
> tulip driver.  I have recompiled the kernel with module support.  If I
> knew how I would compile the kernel with the tulip driver installed but
> I don't.  Could somebody help me.  If I am just one step away from
> getting it to work as a module let me know.  Otherwise could you tell me
> how to recompile the kernel with the driver.  I have about 200 pages of
> kernel/ethernet/networking.... how-tos infront of me but they aren't
> very clear as to what I am doing wrong!!  Oh ya I am running slackware
> if that makes a difference.  And I have run the Slackware netconfig.
>
> And if cross posting is frowned upon I apologize.  I always see it done
> but I have never seen any rules of etiquet regarding its use.
>
> thanks in advance,
> marc
>



------------------------------

From: "Tony Enriquez" <[EMAIL PROTECTED]>
Subject: PCMCIA Linksys card, Which Driver?
Date: Sun, 15 Aug 1999 20:18:50 -0400

I have a IBM TP 380XD running RH6. Which driver does a Linksys EtherFast
10/100 PC Card use?



------------------------------

From: Marek <[EMAIL PROTECTED]>
Subject: gdm murdered mysteriously
Date: Sun, 15 Aug 1999 19:49:42 -0500

According to /var/run/gdm.pid, gdm was already running (656) but seems
to have been murdered mysteriously

I got this message I can not run X ...any idea what to do with this??

Marek


------------------------------

From: [EMAIL PROTECTED] (Andy Ringsmuth)
Crossposted-To: comp.os.linux.setup
Subject: RedHat Linux as Mac file server
Date: Sun, 15 Aug 1999 19:32:09 -0500

I've got limited experience with RedHat 5.2 (kernel 2.0.36), and in the
near future, I will be building a computer for use as a web server at
work. I work in a small office that publishes newsletters for various
clients, and we are exploring the possibility of publishing our
newsletters on the web. This part is easy enough.

But, I'd like to put a huge drive in the computer (12 gig minimum) and use
the Linux box as a file server for the rest of the computers in our
office, which are all Macs. From what I've heard, this is possible, but I
would like to know how easy or hard this is. I know Macs forwards and
backwards and upside down, so configuration on that end is not an issue.

Thanks for all the help, people.


Please e-mail replies. Thank you.

-- 
-Andy Ringsmuth
andyring at inetnebr dot com (address modified to avoid spam)

"For I am not ashamed of the Gospel, for it is the power of God 
for all who believe, first the Jew, then the Gentile." Romans 1:16

------------------------------

From: Benu <[EMAIL PROTECTED]>
Subject: IP Monitoring
Date: Sun, 15 Aug 1999 20:22:12 -0400

Hi !

Does anybody know about a good IP Monitoring software. It's to find the
IP adress of the host who logged to my machine ...

Thanks ...

Ben ....


------------------------------

From: [EMAIL PROTECTED] (Justin B Willoughby)
Subject: Re: Why use real IP's when I can use virtual?
Date: 16 Aug 1999 00:14:21 GMT
Reply-To: [EMAIL PROTECTED] (Justin B Willoughby)


Sleiman ([EMAIL PROTECTED]) writes:
> Hello,
> 
> This is the situation I am dealing with: an office already uses 16 real
> IP's and there is a need for more IP's. We used a Linux box as a
> gateway, kept the 16 IP's and used IP masqing to have more IP's. The
> Linux box is connected to a 64K line, and the main use of the internet
> in the office is for checking email and surfing the net. Total I would
> say there are 25 users.
> 
> The question that I face is: now that IP masqing is really a cool idea
> and it works, why not have all IP's virtual (except the gateway)? I
> haven't tried it yet and I am asking for people's opinion. Is the
> compromise in speed too big?

For 25 PCs masq will work like a charm. I have a friend how implemented
the same thing in an office about the size of yours. They only had one IP
address to start out with and their connection was ISDN. 

I think it would be better to have masq going as you talking about and
have the Linux box also do firewalling. This would be much better then each
pc having its own 'real' IP for which crackers can try to hack on. 

So I believe if the Linux box is setup right (sounds like you have that all
set) you will not notice any problems with speed. I think it can be safer
for your internal lan as well.

- Justin
--
   _/     _/_/_/  _/    _/  _/    _/ _/   _/   RULES!! * LINUX RULES *
  _/       _/    _/_/  _/  _/    _/   _/_/     Justin Willoughby
 _/       _/    _/  _/_/  _/    _/     _/      http://justinw.net
_/_/_/ _/_/_/  _/    _/  _/_/_/_/    _/ _/     ---- Jesus Is Lord ----

------------------------------

From: [EMAIL PROTECTED] (Chris)
Subject: Re: IPmasq - blocking group of hosts
Date: Mon, 16 Aug 1999 00:46:48 GMT

On Sat, 14 Aug 1999 15:54:19 -0500, Marek <[EMAIL PROTECTED]> wrote in
comp.os.linux.networking:

>I tried to block group of addresses using command:
> /sbin/ipchains -D output -s internal -d xx.xx.xx.xx/213 -p tcp -j REJECT

"ipchains -D" will delete the matching rule.  That's probably not what you
had in mind.

>/sbin/ipchains: invalid mask `213' specified

That's because your netmask has to be either dotted-quad or a single
number from 0 to 32 representing the number of "1" bits in the mask.

>How can I block group of IP adressess without issuing each command for
>each address??

There is no method to include an address range in the firewall.  You may
be able to accomplish the same thing by banning the smallest complete
subnet that contains them all, or break the list into several even smaller
subnets and ban each one.


------------------------------

From: "Carl" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup
Subject: Network Card setup!!
Date: Mon, 16 Aug 1999 09:20:17 +0800

When I install Red Hat 6.0, I ignore the network card setting.
Could anyone tell me how to set it up.  My network card is 3Com
modal 3C905b.  Thks!





------------------------------

From: Ken Booth <[EMAIL PROTECTED]>
Subject: Re: Why use real IP's when I can use virtual?
Date: Sun, 15 Aug 1999 20:07:50 -0500

Sleiman wrote:

> Hello,
>
> This is the situation I am dealing with: an office already uses 16 real
> IP's and there is a need for more IP's. We used a Linux box as a
> gateway, kept the 16 IP's and used IP masqing to have more IP's. The
> Linux box is connected to a 64K line, and the main use of the internet
> in the office is for checking email and surfing the net. Total I would
> say there are 25 users.
>
> The question that I face is: now that IP masqing is really a cool idea
> and it works, why not have all IP's virtual (except the gateway)? I
> haven't tried it yet and I am asking for people's opinion. Is the
> compromise in speed too big?
>
> Thanks for the help

Actually, your speed is determined primarily by the bandwith of your
connection (64K), and has little to do with whether the IP addresses are
real or not.
You may be affected, however, by other traffic on your internal network. At
my office, the network is primarily used for Microsoft Networking, with
lots of print jobs etc., so I sometimes see slowdowns due to general net
loading.

--
Regards, Ken

I AM.



------------------------------

From: Terrence Coccoli <[EMAIL PROTECTED]>
Crossposted-To: redhat.hardware.arch.intel,redhat.networking.general
Subject: Re: Newbie 3c589 Red Hat PCMCIA question
Date: Sun, 15 Aug 1999 21:28:28 -0400

All I did was install the Pcmcia-cs....   package which can be found under
any FTP site.  The package installs the module in /lib/modules/pcmcia where
the kernel picks it up.  There really isn't much to it.

Bob Festa wrote:

> Great forum here. Installed RH 6.0 on a Dell inpiron laptop. My ethernet
> card (3c589) was not one of the module choices. During the networking
> install section, how do I point to the 3c589_cs.o driver for the module
> thats in another directory?
>
> Failing that, how do I link the driver after installation. Linux Conf does
> not have the 3c589 module listed as a choice either? I can 'locate
> 3c589_cs.o', and copy it to the module directory but I dont know how to
> have the install script 'see' it.
>
> Thanks
>
> Bob
>
> ------------------  Posted via CNET Linux Help  ------------------
>                     http://www.searchlinux.com


------------------------------

From: Youjip Won <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.misc,comp.os.linux.setup
Subject: route problem II: Can't add gateway address
Date: Mon, 16 Aug 1999 10:04:09 +0900

Dear all,

   I really appreciate your detailed replies. Unfortunately, I am still
struggling with my linux box.

   1. 'route -n' seems to generate what I expected.
   2. 'route' stalls.
   3. ping 166.104.88.107(host in the same subnet) works properly.
   4. traceroute 166.104.88.107 stalls.
   5. ping 166.104.88.1(gateway) stalls.
   6. traceroute 166.104.88.1 generates interesting trace.

>From the host in the same subnet, I can ping to THE machine(named sobaek).
But, I was not able to telnet nor ftp to sobaek.

Help!!!

Youjip



Script started on Mon Aug 16 09:52:52 1999
[root@sobaek network-scripts]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use
Iface
127.0.0.0       0.0.0.0         255.255.255.0   U     0      0        1 lo
166.104.88.0    0.0.0.0         255.255.255.0   U     0      0        3 eth0

0.0.0.0         166.104.88.1    0.0.0.0         UG    0      0        3 eth0

[root@sobaek network-scripts]# ifconfig
lo        Link encap:Local Loopback
          inet addr:166.104.88.108  Bcast:166.104.88.255  Mask:255.255.255.0

          UP BROADCAST LOOPBACK RUNNING  MTU:3584  Metric:1
          RX packets:2138 errors:0 dropped:0 overruns:0 frame:0
          TX packets:2138 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0

eth0      Link encap:Ethernet  HWaddr 00:C0:26:11:8C:79
          inet addr:166.104.88.108  Bcast:166.104.88.255  Mask:255.255.255.0

          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:3844 errors:0 dropped:0 overruns:0 frame:0
          TX packets:3027 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0
          Interrupt:10 Base address:0x6800

[root@sobaek network-scripts]# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use
Iface
127.0.0.0       *               255.255.255.0   U     0      0        1 lo
166.104.88.0    *               255.255.255.0   U     0      0        3 eth0

[root@sobaek network-scripts]# ping 166.104.88.107
PING 166.104.88.107 (166.104.88.107): 56 data bytes
64 bytes from 166.104.88.107: icmp_seq=0 ttl=128 time=1.1 ms
64 bytes from 166.104.88.107: icmp_seq=1 ttl=128 time=0.6 ms

--- 166.104.88.107 ping statistics ---
2 packets transmitted, 2 packets received, 0% packet loss
round-trip min/avg/max = 0.6/0.8/1.1 ms
[root@sobaek network-scripts]# ping 166.104.88.1
PING 166.104.88.1 (166.104.88.1): 56 data bytes

--- 166.104.88.1 ping statistics ---
3 packets transmitted, 0 packets received, 100% packet loss
[root@sobaek network-scripts]# traceroute 166.104.88.107
traceroute to 166.104.88.107 (166.104.88.107), 30 hops max, 40 byte packets

[root@sobaek network-scripts]# traceroute 166.104.88.107
traceroute to 166.104.88.1 (166.104.88.1), 30 hops max, 40 byte packets
 1  sobaek (166.104.88.108)  0.225 ms !H  0.153 ms !H  0.141 ms !H
[root@sobaek network-scripts]# exit
exit

Script done on Mon Aug 16 09:54:03 1999



Youjip Won wrote:

> Dear Linux guru,
>    I am fan of linux, but never ever able to get the network setup in
> one shot. This time was not an exception. After several trials and
> errors, I am finally writing this message in a hope that I could get
> some help.
>
> To make long story short, I cannot add gateway to routing table.
>
> Here's what had happened. I can ifconfig and route add 'lo' and 'etho'.
> When I do "route add default gw 166.104.88.1", it does not complain.
> BUT, if I type 'route' to verify the gw in routing table, it goes to the
> infinite loop. It only shows the first two lines in routing table(lo,
> eth0) and goes into infinite loop. I eagerly hope that someone have had
> similar problems and provide me some clue.
> Please refer to the attached script.
> Thanks a mil!!!!
>
> Youjip
>
> Script started on Thu Aug 12 21:40:56 1999
> [root@sobaek network-scripts]# ifconfig
> [root@sobaek network-scripts]# route
> Kernel IP routing table
> Destination     Gateway         Genmask         Flags Metric Ref    Use
> Iface
> [root@sobaek network-scripts]# ifconfig lo 127.0.0.1
> [root@sobaek network-scripts]# route add -net 127.0.0.0
> [root@sobaek network-scripts]# ifconfig etho 166.104.88.108
> [root@sobaek network-scripts]# route add -net 166.104.88.0
> [root@sobaek network-scripts]# route
> Kernel IP routing table
> Destination     Gateway         Genmask         Flags Metric Ref    Use
> Iface
> 127.0.0.0       *               255.255.255.0   U     0      0        0
> lo
> 166.104.88.0    *               255.255.255.0   U     0      0        0
> eth0
> [root@sobaek network-scripts]# route add gw 166.104.88.1
> [root@sobaek network-scripts]# route
> Kernel IP routing table
> Destination     Gateway         Genmask         Flags Metric Ref    Use
> Iface
> 127.0.0.0       *               255.255.255.0   U     0      0        0
> lo
> 166.104.88.0    *               255.255.255.0   U     0      0        0
> eth0
> ===> Goes to infinite loop


------------------------------

From: "Andrey Smirnov" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.security
Subject: Re: Need help masquerading PPTP VPN with IPChains
Date: Sun, 15 Aug 1999 18:37:08 -0700

Hello,

After patch installation did you reconfigured and recompiled kernel?

Did you have any errors while aplying the patch?

Good luck!

Marc <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]...
> I'm trying to masquerade PPTP (NT Dial Up Networking) through my Linux
> box using IPChains.  I'm using 2.2.10 with the VPN patch installed.  I
> know that the DUN works if the NT box is attached directly to the
> intenet and that my Linux box is capable of masquerading everything else
> I need.  Anybody have any ideas on how to fix this problem?  Below is
> cut from my /var/log/messages file:
>
> 192.168.1.2 is my NT box using dialup networking pptp
> 209.183.196.1 is my VPN server
> 216.181.87.4 is my linux box with IP Chains
>
> Aug 14 15:38:40 www kernel: ip_masq_pptp_tcp(): OUT_CALL_REQUEST
> 192.168.1.2 -> 209.183.196.1 CID=0 MCID=EE6A
> Aug 14 15:38:40 www kernel: ip_masq_pptp_tcp(): OUT_CALL_REPLY
> 192.168.1.2 -> 209.183.196.1 CID=0 MCID=EE6A
> Aug 14 15:38:40 www kernel: ip_demasq_gre(): 209.183.196.1 ->
> 216.181.87.4 CID=0 no masq table, discarding
> Aug 14 15:38:43 www last message repeated 4 times
> Aug 14 15:38:45 www kernel: ip_masq_pptp_tcp(): CALL_DISCONNECT_NOTIFY
> 192.168.1.2 -> 209.183.196.1 CID=0 MCID=EE6A
>
> Thanks!
>




------------------------------

From: Terrence Coccoli <[EMAIL PROTECTED]>
Subject: Re: Linux newbie vs. cable modem
Date: Sun, 15 Aug 1999 21:10:04 -0400

Before you configure anything as static or dynamic, you should call your ISP and
ask them how you ip is allocated.  Don't make assumptions when a quick call will
do.  As far as the ip addresses, you need to put in the ip addresses of the
Domain Name Servers that your IP uses.  Just ask them what they are and they will
tell you.

 wrote:

> Someone emailed me saying most cable setups use DHCP.. and I had
> installed Linux with "static IP address". So I reinstalled it, but now
> it won't resolve anything at all.. In my /etc/resolv.conf, I have the
> following:
>     ----
>     search videotron.ca
>     ----
> which is my isp.. As for the nameservers, I don't know what to add...
> Should I add the IP of videotron.ca, or my own IP? Also, concerning the
> problem I have right now (unable to resolve hosts), will editing
> /etc/resolv.conf fix this, or do I have to modify other files too?
>
> Thanks,
>         Jaune
>
> Steve Cowles wrote:
> >
> > This condition is caused by the Linux resolver trying to turn
> > www.netscape.com into an IP address.
> >
> > Possible causes are:
> > 1) You do not have your ISP's Nameserver addresses listed in
> > /etc/resolv.conf. Mine looks like this, NOTE: I run a caching only
> > nameserver, you don't have to run a caching only nameserver in order for the
> > linux resolver to work. But the order in which the nameserver entries are
> > listed determines how the resolver will try and resolve a FQDN (Fully
> > Qualified Domain Name) into an IP address.
> >
> > <cut/paste from /etc/resolv.conf>
> > search mydomain.net
> > nameserver 192.168.9.17
> > nameserver xxx.xxx.2.1
> > nameserver xxx.xxx.2.2
> >
> > 2) If (1) above is setup properly, then your default route is probably not
> > set. When you type netstat -rn, do you have an entry similar to this (your
> > IP will be different than what is shown here, the xxx one)
> > 0.0.0.0         xxx.xxx.96.1        0.0.0.0         UG        0 0          0
> > eth1
> >
> > Steve Cowles
> > SWCowles at gte dot net
> >
> > Trancelucid <[EMAIL PROTECTED]> wrote in message
> > news:[EMAIL PROTECTED]...
> > > Hi there,
> > > I'm quite new to Linux, and I can't get my cable modem to work. I have
> > > Red Hat 6.0.. it detected my ethernet card fine, I gave it the right
> > > ip's, but when I open Netscape and enter a url, it says "Connect:
> > > Contacting Host: www.netscape.com..." and then stays there idling.
> > >
> > > Another exemple is with ping, if I do "ping www.netscape.com", it just
> > > idles there w/o writing anything to the screen (not even an error
> > > message).
> > >
> > > I read Net3-Howto, but it did'nt help me much, since I bought Linux
> > > Unleashed, and it has almost the same info..
> > >
> > > Thanks,
> > > Jaune


------------------------------

From: "Rich" <[EMAIL PROTECTED]>
Subject: Creating a glbal address list with a linux server and MS Win95
Date: Sun, 15 Aug 1999 20:44:18 -0500

Does anyone know of a way to create a global address list on a linux (samba)
server that exchange clients would be able to use to check names with?
Rich

------------------------------


** FOR YOUR REFERENCE **

The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:

    Internet: [EMAIL PROTECTED]

You can send mail to the entire list (and comp.os.linux.networking) via:

    Internet: [EMAIL PROTECTED]

Linux may be obtained via one of these FTP sites:
    ftp.funet.fi                                pub/Linux
    tsx-11.mit.edu                              pub/linux
    sunsite.unc.edu                             pub/Linux

End of Linux-Networking Digest
******************************

Reply via email to