Linux-Networking Digest #459, Volume #10         Thu, 11 Mar 99 17:13:37 EST

Contents:
  Re: How to set LAN RTL8139 to 10Mbps instead of 100Mbps? ("Rufus V. Smith")
  Re: LINUX under heavy network load ([EMAIL PROTECTED])
  Re: mgetty + pppd + static ip asignament (Clifford Kite)
  Re: DHCP compile problem (Austin Gresham)
  DHCP: Socket: Invalid Option (Austin Gresham)
  Re: Replacing NT Server 4 w/ Red Hat 5.2 ("Jeff Letendre")
  ppp0 -> eth0 ("Paul")
  How to patch a Kernel? ("Ray")
  Re: Linux as LAN Gateway (Tobias Reckhard (jester))
  Re: How to patch a Kernel? (TS Stahl)
  Cant get that ppp link running (Olivier Hislaire)
  Re: Linux programming jobs? (Roope Anttinen)
  Re: IP forwarding problems (rick)
  Re: Can't ping itself (Jayasuthan [VorHacker])
  Re: stopping/starting FTPD from command line (Ed Robbins)
  Re: Assistance securing a DNS server (Ed Robbins)
  Re: How to browse the internet via ppp? (jedi)
  Re: Ethernet vs. SCSI (jedi)
  Re: modem lock - more info ("Jason")
  Re: problem with routing (Francois Boucher)
  redefined Functions for JavaScript are needed (s2961221)

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

From: "Rufus V. Smith" <[EMAIL PROTECTED]>
Subject: Re: How to set LAN RTL8139 to 10Mbps instead of 100Mbps?
Date: Thu, 11 Mar 1999 10:27:30 -0500

Make sure that driver has been fixed.  We have SBC'S with the same
chip on it.  There were driver problems.  But we were trying to run
WinCE on it.  Don't hate me for that.

We changed out the chip to the 10Mbps version (I don't have the number
on me) until the bugs get ironed out.

AFAIK, there was some problem running the 8139 even at 10Mbps.

You say you WERE able to run 10M?



gwlin wrote in message <01be6b9e$899b1740$[EMAIL PROTECTED]>...
>I have two notebooks with RTL8139 on board. (capable 100Mbps)
>I can connect them with a twisted cable on 10 Mbps, (the other must
>run Win95), but failed if 100 Mpbs.
>
>The driver module is rtl8139.o.
>
>Is it possible to set the LAN module to 10 Mbps only?
>
>Thanks
>
>- gwlin
>
>
>



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

From: [EMAIL PROTECTED]
Subject: Re: LINUX under heavy network load
Date: Thu, 11 Mar 1999 19:33:45 GMT

In article <7c6usn$kh6$[EMAIL PROTECTED]>,
  epadin <[EMAIL PROTECTED]> wrote:
> How about increasing the number of free pages like so:
>
> 1) cat /proc/sys/vm/freepages and look at the three numbers displayed
>
>  (say, 128 256 512, for example)
>
> 2) double the numbers with this command:
>
> echo 256 512 1024 > /proc/sys/vm/freepages
>
> see if the problem persists. If it fixes it then make these
>
> to all: please comment on the above. Is this the correct ? is there a better
> way?

The way you describe is essentially what it says to do in:

/usr/src/linux/Documentation/memory-tuning.txt


> >  I did a network loading test using "ping -f" between two P-II 300MHz
> > machines; The first machine has Linux (RH 5.2) and the second has BSDI.
> > In addition to packet losses, after several minuets the following
> > message appeared on the Linux machine: "Couldn't get a free page".
> > How can I fix this memory management problem and reduce the amount of
> > packet losses?

I'd venture a guess that the packet losses are due to not allocating buffer
space quickly enough.  The reason the BSD box doesn't suffer from this problem
is that it pre-allocates mbuf clusters (actually, they're just never destroyed
after they're allocated, but it amounts to the same thing).  The packets are
coming quicker than Linux can complete the wmalloc()'s, and so it is dropping
some.

Unfortunately, there's nothing you can do about that.  Fortunately, it's a
problem that typically only shows up under very heavy load (Linux normally
has more than ample time to create the necessary buffer structures).  If you
absolutely positively need to handle heavy network load, use BSD, because
that's what it's there for (and, IMHO, about the only thing its good for).

-Bill Clark

============= Posted via Deja News, The Discussion Network ============
http://www.dejanews.com/       Search, Read, Discuss, or Start Your Own    

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

From: [EMAIL PROTECTED] (Clifford Kite)
Subject: Re: mgetty + pppd + static ip asignament
Date: 11 Mar 1999 12:52:36 -0600

Manuel Ruiz Tienza ([EMAIL PROTECTED]) wrote:

: How must I setting mgetty and/or pppd for asign ip depending of the
: user and not depending 
: of the cyclades port from the call is incoming ?.

Use PAP or CHAP to authenticate.  In the PPP secrets file put the IP
address you want to assign to a user in the fourth field of the secrets
line for that user.  Example:

UserName        *       UserSecret      xxx.xxx.xxx.xxx

I *think* that's correct, but I haven't actually done it.

--
Clifford Kite <[EMAIL PROTECTED]>                       Not a guru. (tm)
/* Speak softly and carry a +6 two-handed sword. */

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

From: Austin Gresham <[EMAIL PROTECTED]>
Subject: Re: DHCP compile problem
Date: 11 Mar 1999 15:32:30 GMT

Daniel:

I ran into the same problem.  You have to have Glibc 2.0.5 in order to 
compile dhcpcd.  Go to the www.gnu.org website and follow the links.  It 
takes a few hours to compile/install.  It's a little ominous if you've 
never done something like that before, but it's worth it.  

Then recompile dhcpcd...

-Austin

Daniel Charlebois wrote:
> I'm running Slackware 2.0.34 and have setup two ethernet cards on my
> main
> machine.  I've got no problems recognizing the ethernet cards.
> 
> I'm trying to install a DHCP client, but it just wont compile.  I know
> the problem
> is probably simple but...
> 
> When I run the make file to create the DHCP client application, I get
> the message
> that <net/ethernet.h> file is not found.  I've looked in all of the
> packages that
> come with Slackware but cannot seem to find the missing files.
> 
> Daniel
> 


==================  Posted via SearchLinux  ==================
                  http://www.searchlinux.com

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

From: Austin Gresham <[EMAIL PROTECTED]>
Subject: DHCP: Socket: Invalid Option
Date: 11 Mar 1999 15:32:36 GMT

I recently compiled the dhcpcd client/server package, both version 0.70 
(since I'm running the 2.0.36 kernel) and the 1.3.17 version.  In the 
documentation, it mentions that the kernel should be compiled with 
SOCK_PACKET.  Apparently that wasn't done for mine because when I start 
dhcpcd, I get a message in my syslog that says: dhcpStart: socket: Invalid 
argument.

I'm using the glibc 2.0.5 libraries (at least, they're installed).

Do I need to recompile my kernel differently?  I used the "make 
menuconfig" originally, but saw no options for SOCK_PACKET, and I'm not a 
very proficient C coder...

Thanks for any assistance

-Austin

==================  Posted via SearchLinux  ==================
                  http://www.searchlinux.com

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

From: "Jeff Letendre" <[EMAIL PROTECTED]>
Subject: Re: Replacing NT Server 4 w/ Red Hat 5.2
Date: Thu, 11 Mar 1999 10:45:41 -0500

Ok, here's what my present goals are for this Linux machine:
1)    Validate user names and passwords
2)    Successfully implement the Samba daemon to:
    2.a)    Create general shares for valid user accounts
    2.b)    Create shares for private accounting type stuff (a group share)
3)    Set-up Apache - I "should" be able to figure out this one...
4)    Perform IP masguerading (basically use the machine as a gateway to my
ISP)
5)    DNS (both forward & reverse PTR entries)
============================================================================

I am currently trying to log into the machine using "Client for Microsoft
Networks"
I am using both TCP/IP and NetBEUI.  My machine will log me into itself
because of the *.pwl file, but it will not log me into the Linux machine.

I have set-up Samba but I don't think it's correct.  I can't see it in my
network neighborhood from the 95/98 machines.

Thanks again for your assistance,

Jeff Letendre
http://home.ici.net/~sj



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

From: "Paul" <[EMAIL PROTECTED]>
Subject: ppp0 -> eth0
Date: Thu, 11 Mar 1999 14:21:52 -0500

  Hi

I have two networks I am trying to connect to each other using pppd.
I setup the server side to assign IP's and I have configured the client side
to call.  My connection is fine between the two servers, but machines on the
client side can't see past the Linux client gateway.  It's as if the linux
(client) box can't route over the ppp0 device. I know the ethernet routing
is fine, because I have two other routers on the clinet side LAN and routing
is fine.  If anyone knows how to get the routing working on two lans
connected over a dialup ppp connection.  Please let me know.

 P.S.  Please don't send me simple routing solutions (I have tried all the
possible routing options) it's more of an issue with pppd or arp or
something.


 TIA Paul Lafontaine



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

From: "Ray" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.advocacy,comp.os.linux.help,comp.os.linux.misc
Subject: How to patch a Kernel?
Date: Thu, 11 Mar 1999 15:57:03 GMT

Hi, i downloaded the RAID-Tools and the patch for the kernel, but, how do i
patch the kernel?

There file to patch is a file which seems very crypted to me.

Hope on help

Regards
The Ray

Where i work http://www.ultrasonic.at





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

From: [EMAIL PROTECTED] (Tobias Reckhard (jester))
Subject: Re: Linux as LAN Gateway
Date: Thu, 11 Mar 1999 12:44:33 GMT

On Tue, 9 Mar 1999 00:28:46 -0800, "LrdElder" <[EMAIL PROTECTED]>
wrote:

>Check out the IP masquerading mini HOWTO ..... although it's a slow
>connection, and some things aren't fully supported most programs are. I have
>a Windows/Linux peer to peer connection with a 56K connection to the
>internet on the Linux end, I can only get about 5K from the Windows. I think
>this is mainly because the Linux machine is a 486/100 mhz with 16 megs RAM,
>and it just can't handle the load of editing all the packets coming through
>it in a timely fashion. If your users will mainly just be checking email,
>and browsing the web, it would probably be a good choice.

It's definitely not the machine. I've installed a Linux gateway for a
100-computer LAN using a 486dx2/50 and two NE2000 clones and we get
over 400 KB/sec throughput (and that's just what I observe myself, I'm
probably never the only one crossing the gateway).

Tobias

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

From: TS Stahl <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.advocacy,comp.os.linux.help,comp.os.linux.misc
Subject: Re: How to patch a Kernel?
Date: Thu, 11 Mar 1999 10:04:59 -0600

Man patch, if you received a diff file format patch.  (Spoken like I did not
just recently learn that)

Ray wrote:

> Hi, i downloaded the RAID-Tools and the patch for the kernel, but, how do i
> patch the kernel?
>
> There file to patch is a file which seems very crypted to me.
>
> Hope on help
>
> Regards
> The Ray
>
> Where i work http://www.ultrasonic.at

--
Scott Stahl
MIS Asst.
Illinois Housing Development Authority
401 N. Michigan Ave. Ste. 900
Chicago, IL 60611



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

From: [EMAIL PROTECTED] (Olivier Hislaire)
Subject: Cant get that ppp link running
Date: Thu, 11 Mar 1999 16:06:53 GMT
Reply-To: [EMAIL PROTECTED]

Hi there,

last year I made a ppp link between two linux hosts, in no time. Now,
I just wanna do the same think and I can't. Could anybody help ?

Originator runs kernel 2.0.34, the other one 2.0.0. Both use ppp
2.2.0. When I call:

- either pppd exists with a message 'serial line is looped back'
after it gets logged through chat.  I've checked for existing default
routes, put lcp-max-configure to 50, and so on. No change.

- either it works (mostly when I use an external modem on the calling
side instead of an internal card), but I have around 50% packet loss
when pinging from one side to the other, plus the HDD LED of the
answering machine that gets crazy ...

Don't know what to try else ... any idea ?

Olivier.

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

From: Roope Anttinen <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.development.system,comp.os.linux.development.apps
Subject: Re: Linux programming jobs?
Date: 11 Mar 1999 20:38:05 GMT
Reply-To: [EMAIL PROTECTED]

In comp.os.linux.development.apps Keith M. Peterson <[EMAIL PROTECTED]> wrote:
> And your programming is neither Industrial, nor simulation? And you have no 
> compunction about hiring somebody with no training or experience to do your 
> unix programming?
> Regardless, my point is that he will be unable to get a job doing linux/unix 
> programming without experience on his resume. However, he might be able to get 
> one doing Windows programming. It's not great odds, but it's better.

I must disagree at certain level. I were ripped of from school two years ago
with no experience and partly because of that haven graduated yet. My job is
programming embedded telecom applications in Solaris environment for
ChorusOS and DMX (company proprietary RT OS) and administration of couple of
Linux and HP-UX servers.

Roope

-- 
MicroSoft? is that some kind of a toilet paper?
PS: Look for address here, not from headers. And remove NOSPAM's
___________________________________________________________________________
   [EMAIL PROTECTED]  /  [EMAIL PROTECTED]
        +358 9 812 7567  /  +358 500 445 565  /  +358 49 445 565
                http://myy.helia.fi/~anttiner/index.html
===========================================================================
   Helsinki Business Polytechnic - Institute of information technology

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

From: rick <[EMAIL PROTECTED]>
Subject: Re: IP forwarding problems
Date: Thu, 11 Mar 1999 16:05:34 GMT

your gateway on your win98 machines will be the host adapter your machine goes
to(linux), and your DNS will be the one your isp uses.

Iron Galaxy wrote:

> I have just configured a Linux Box as my internet proxy between my home
> network and the @Home cable modem service.  Both the network cards (one for
> the cable modem and one to the hub for the internal network) worked fine
> under Linux and the entire setup worked fine under windows 98(using
> winProxy)....
>
> I tried using the IP-Masqurading program and Ping works fine from any node
> on internal network to the Linux Box and gateway is fine too....the DNS is
> right too.....(well I can get on to internet from within the Linux Box ).
> But when I tried to ping from the nodes on the internal network to the
> outside world, it doesn't work.  Nor Netscape, icq....etc.
>
> I have used the same DNS and Domain setting in my win98 network properties
> and I  have used the Linux Box IP (192.168.0.1) as the gateway for the win98
> nodes.  An IP (from 192.168.0.2 -> 192.168.0.5) was assigned for each of the
> nodes and all looks fine....BUT IT DOESN'T WORK!!!!!!!!!
>
> Is it a problem in the Linux config. or Win98 config?  If so, what is the
> problem??


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

From: Jayasuthan [VorHacker] <[EMAIL PROTECTED]>
Subject: Re: Can't ping itself
Date: 11 Mar 99 16:05:59 GMT

news.alcatel <[EMAIL PROTECTED]> wrote:

Pls submit your ifconfig output and /etc/hosts file.... and
the way you ping your self..

:   My Redhat Linux machine can't ping itself, but it can ping other  machines
: in the network.  Would you tell me why?
: Thanks,
: Oliver




-- 
==========
Jayasuthan
[Internal Linux System]
http://eplx01/suthan/
smtp%"[EMAIL PROTECTED]"
[External]
http://still.working.on
smtp%"[EMAIL PROTECTED]"

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

From: Ed Robbins <[EMAIL PROTECTED]>
Subject: Re: stopping/starting FTPD from command line
Date: Thu, 11 Mar 1999 11:24:08 -0500
Reply-To: [EMAIL PROTECTED]

John,

This may be a little more complicated than you think.  It all depends on how
you have ftpd.  In this day and age, ftpd is usually started by inetd.  Thus
to turn it off you have to comment out the ftpd line in /etc/inetd.conf and
then restart the inetd server.

If you would like more information, email me directly and I would be more
than happy to help you.

Ed

John Madden wrote:

> Hello,
>
>     Yes, I'm a Linux newbie with a few Q's for the pros out there.
>
> 1. How can you stop/start FTPD from the command line?
> 2. where are the FTPD logs kept?
> 3. Is there a command that lets you see all the currently running daemons?
> 4. What is the BEST book on linux from an administrator/programmer
> standpoint?
> the book I have now "Using Linux" from Que is almost worthless


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

From: Ed Robbins <[EMAIL PROTECTED]>
Subject: Re: Assistance securing a DNS server
Date: Thu, 11 Mar 1999 11:20:15 -0500
Reply-To: [EMAIL PROTECTED]

Depending on what your looking for, I've had a lot of experience in this exact
setup.  Email me directly and I'll help you with whatever I can.

Ed

[EMAIL PROTECTED] wrote:

> I'm building a couple of Red Hat v5.2 servers to be DNS servers and am looking
> for some guidance in "locking them down".  Are there any "How To's" out there?
>
> Thanks, Clif
>
> -----------== Posted via Deja News, The Discussion Network ==----------
> http://www.dejanews.com/       Search, Read, Discuss, or Start Your Own


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

From: [EMAIL PROTECTED] (jedi)
Subject: Re: How to browse the internet via ppp?
Date: Thu, 11 Mar 1999 11:49:37 -0800

On Thu, 11 Mar 1999 13:25:52 GMT, [EMAIL PROTECTED] 
<[EMAIL PROTECTED]> wrote:
>Hi all,
>I have a linux box with a modem and connected to our LAN. Our LAN is connected
>via a leased line to the internet. When I ring the modem from home I can login
>to the linux box and use Lynx to browse the internet, but I would like to be
>able to use a browser like Netscape on my computer at home to browse the
>internet.
>Can you please point me in the right direction?

        You can run Netscape remotely. Although, that's an ugly
        propsition without a really good network pipe.


-- 
                Herding Humans ~ Herding Cats
  
Neither will do a thing unless they really want to, or         |||
is coerced to the point where it will scratch your eyes out   / | \
as soon as your grip slips.

        In search of sane PPP docs? Try http://penguin.lvcm.com

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

From: [EMAIL PROTECTED] (jedi)
Crossposted-To: comp.os.linux.hardware
Subject: Re: Ethernet vs. SCSI
Date: Thu, 11 Mar 1999 11:47:42 -0800

On Thu, 11 Mar 1999 10:52:45 -0800, Christopher Howard <[EMAIL PROTECTED]> wrote:
>I have a 386, 486, and a 586.  I was thinking of linking them with
>ethernet but then I started thinking about SCSI.  They will be stacked
>on top of each other, and I do plan on getting another system to add to
>it later.  What would be the advantages and disadvatages of using SCSI
>instead of Ethernet?  There are 2 extra bays in the 586 and the 386, 
>the 486 has 1 extra bay, but I could replace the IDE cd rom with SCSI
>(wich would be 2 bays).  Email me with your thoughts.

        SCSI is rather more expensive. Plus, there are cable length
        restrictions to deal with, especially with SCSI3. Furthermore, 
        the really dense connectors are a real PITA to deal with.

        For a 386 & 486, 10baseT or 100BaseT should be adequate.

        However, scsi would likely be a more interesting hack.

-- 
                Herding Humans ~ Herding Cats
  
Neither will do a thing unless they really want to, or         |||
is coerced to the point where it will scratch your eyes out   / | \
as soon as your grip slips.

        In search of sane PPP docs? Try http://penguin.lvcm.com

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

From: "Jason" <[EMAIL PROTECTED]>
Subject: Re: modem lock - more info
Date: Thu, 11 Mar 1999 21:36:46 GMT

Mmm..

rm /var/lock/LCK..modem

...


>Henry wrote:
>> I have a similar problem but with a Diamond SupraExpress.  Every once in
>> a while the dialing will timeout and then there is no more talking to
>> the modem until the machine is powered off and on.
>>
>> I don't know if this is related or just similar.  I was assuming that
>> the modem firmware/hardware was in a "stuck" state (i.e. a bug in the
>> modem) and therefore I had no hope of getting its attention again,
>> without a power cycle.
>>
>> Henry
>>
>> jack wallen wrote:
>> >
>> > okay, i realized that in my original post it was lacking a lot of
>> > information so here goes:
>> >
>> > i'm running red hat 5.2.  i use afterstep and i'm having problems
>with,
>> > every so often, my modem will lock.  it happens on disconnect and
>> > there's no way i've found (other than powering down the machine) to
>> > break the lock.
>
>
>------------------  Posted via SearchLinux  ------------------
>                  http://www.searchlinux.com



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

From: Francois Boucher <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Subject: Re: problem with routing
Date: Thu, 11 Mar 1999 11:49:31 -0500

average wrote:

> you can reboot if you wish but i prefer the quick way of
> typing
> /etc/rc.d/init.d/network stop
> wait for it to stop and then type
> /etc/rc.d/init.d/network start
> with any survice under linux can be stopped and restarted like this
> much faster than windows
>
> ��d�W wrote:
> >
> > what should I need to do after I insert a new machine to the file
> > /etc/hosts.
> > /etc/hosts is changed from :
> > # IP Address                    Hostname                    Alias
> > 192.168.0.1                      matrix.computer            matrix
> > 127.0.0.1                          localhost
> > localhost.localdomain
> >
> > to:
> >
> > 127.0.0.1                          localhost
> > localhost.localdomain
> > 192.168.0.1                      matrix.computer            matrix
> > 192.168.0.2                      firebat.computer            firebat
> > 192.168.0.3                      ghost.computer              ghost
> >
> > Should I need to reboot the computer, run a command to update the change ???
> >
> > average ���g��峹 <[EMAIL PROTECTED]>...
> > >yes both machines have entries in /etc/hosts as well as the localhost
> > >this works as when i use the nickname of the machine the correct ip
> > >address comes up
> > >
> > >
> > >
> > >Ron wrote:
> > >>
> > >> Did you put the hostnames in /etc/hosts?
> > >>
> > >> average <[EMAIL PROTECTED]> wrote in message
> > >> news:[EMAIL PROTECTED]...
> > >> >i have a two machine network linux & win95 on twisted pair through a
> > >> >hp 28684a hub
> > >> >the problem i have is both machines can ping them selves (nic &
> > >> >localhost) but cannot ping each other. at this point in time i haven't
> > >> >set up anything to do with samba.
> > >> >
> > >> >Kernel IP routing table
> > >> >Destination     Gateway         Genmask         Flags   MSS Window  irtt
> > >> >Iface
> > >> >zeus.tulku.net  *               255.255.255.255 UH     1500 0          0
> > >> >eth0
> > >> >192.168.1.0     *               255.255.255.0   U      1500 0          0
> > >> >eth0
> > >> >127.0.0.0       *               255.0.0.0       U      3584 0          0
> > >> >lo
> > >> >default         gyver.tulku.net 0.0.0.0         UG     1500 0          0
> > >> >eth0
> > >> >
> > >> >the hub works (it was used by a friend) i have changed the cables, all
> > >> >the lights that
> > >> >should be on are on and flashing (data lights on the cards, the hub etc)
> > >> >
> > >> >any help
> > >> >baz

The problem is that you defined a net number of 192.168.1.0, with machine
that are with IP adresses 192.168.0.#   this means that the machine
send their packets to the default gateway instead of to the local net.
try:
route add -net 192.168.0.0 netmask 255.255.255.0
in each of your machine, to test this solution and if it
works, add/correct your routing table in the network configuration
of the control panel.


             Francois Boucher


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

From: s2961221 <[EMAIL PROTECTED]>
Subject: redefined Functions for JavaScript are needed
Date: Wed, 10 Mar 1999 17:42:53 +0200

I am building a program  that uses The  " FindProxyForURL(url,host) "
function
( http://home.netscape.com/eng/mozilla/2.0/relnotes/demo/proxy-live.html
)
that browsers uses in order to evaluate which proxy server to send the
requests.

The program  download this function  and then run it in order to get the
proxy server address,
my question is about the functions  that  function
FindProxyForURL(url,host)
     uses like : isPlainHostName()       dnsDomainIs() ,
localHostOrDomainIs() ,
                        isResolvable()  dnsResolve()   myIpAddress()
dnsDomainLevels()
                        shExpMatch()      weekdayRange()
dateRange()          timeRange()

Where can i find their  implementation in order to run this function in
my program.

the program run on linux  , written in C and uses an API libraries
(http://www.nombas.com/us/toolkit/index.htm )
to run the FindProxyForURL(...) function.

Thanks in advance raanan.




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


** 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