Linux-Networking Digest #4, Volume #12           Sun, 25 Jul 99 16:13:49 EDT

Contents:
  Re: PPP connection doesn't work (Clifford Kite)
  diald -- can I stop it dialling out? (Michael McLaughlin)
  FTP Quit on two of my liunx RH boxes? ("randal boyd")
  samba encyped passwords...? ("randal boyd")
  Re: Smbclient (David Crooke)
  Newbie Question Sharing a Fat Partition with Samba (Alvaro Garriga)
  Re: tcpdump and RH6.0 - anyone get it to work? (Bryan)
  Re: netscape in RH6.0 (David)
  Re: PPP routing problem (Clifford Kite)
  SDLC with any 'ol modem (PVS)
  maincomputer ("Wolle")
  Trouble installing ethernet card ([EMAIL PROTECTED])
  Re: PCMCIA setup problems (Sitaram Chamarty)
  Re: Linux 2.2.9 patches broke ISDN? ([EMAIL PROTECTED])
  Re: Linux and ADSL how to----does one exist?? (Rudolf Potucek)
  Re: Netscape 4.61 and Flash beta for Linux (David)
  UDP packets lost locally.  How do I diagnose/fix? (Ben Armstrong)

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

From: kite@NoSpam.%inetport.com (Clifford Kite)
Crossposted-To: comp.os.linux.setup
Subject: Re: PPP connection doesn't work
Date: 25 Jul 1999 11:47:25 -0500

CNelson ([EMAIL PROTECTED]) wrote:

: I just tested the a0000 setting and it works! I can ping and telnet to all
: hosts in my intranet.  However, I found in PPP-HOWTO, the setting used by
: author is 0 instead of a0000. That is why I set it to 0 in my client's option
: file.

: Should it be in server's option file or client's or both of them? I set it in
: both of them.

I'm still reeling from the fact that a0000 cured the problem but you
probably can set the pppd option crtscts on the client machine and keep
"asyncmap 0" .  My guess is that you don't have crtscts as a pppd option
on the client although you do have it on the server - I saw it in the
server .ppprc in the first post.

BTW the logs show that the client is dropping characters 11 and 13 hex
which are the xon/xoff escapes.  This caused the fcs errors.  I was
still puzzling about it when your mail reached me.

Gene Haskett was right.  See my apology at the end.

: Thanks

: Nelson

: Clifford Kite wrote:

: > Gene Heskett ([EMAIL PROTECTED]) wrote:
: >
: > : Most tty implementations are sensitive to xon/xoff characters in the
: > : data going by, so those are normally 'escaped'.  To do that, one sets
: > : the asyncmap to 0x000a0000.  Your setting it to 0x0 might leave you open
: > : for some unexplained transmission freezes.
: >
: > These are two Linux boxes, the a0000 trick is used for some ISPs with
: > a broken PPP implementation with respect to ACCM negotiation.  It has
: > to do with escaping characters in PPP not with xon/xoff, the broken
: > PPP implementation escapes characters in violation of the agreement
: > reached in the link negotiations and the PPP RFC.

I own Gene Heskett a *big* apology.  It apparently _does_ matter with
xon/xoff, although I'll need to think about it for awhile to satisfy
myself as to the why of it.

My apologies Gene Heskett!  And thanks for the new insight.  I still
think that most problems cured with a0000 are caused by broken ISP PPP
implementations but clearly not all of them are.

--
Clifford Kite <kite@inet%port.com>                    Not a guru. (tm)

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

From: Michael McLaughlin <[EMAIL PROTECTED]>
Subject: diald -- can I stop it dialling out?
Date: Sun, 25 Jul 1999 19:11:56 +0000

I am using diald on RedHat5.2.

The basic functionality seems to work OK. But how can I stop it dialling
out, seemingly at random.
On boot up in particular, it activates the modem. But at other times,
even when I am niot using Netscape it rings out!

Michael


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

From: "randal boyd" <[EMAIL PROTECTED]>
Subject: FTP Quit on two of my liunx RH boxes?
Date: Sun, 25 Jul 1999 10:55:25 -0700

I have a RH 5.2 and a linux RH 6.0 on my LAN.
I was able to telnet and ftp into the even as root.
"until today??" crap! I have not changed anything...
now what?

oh yes I did make sure the logins were not in ftpusers.

aHHHHH!

Randal



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

From: "randal boyd" <[EMAIL PROTECTED]>
Subject: samba encyped passwords...?
Date: Sun, 25 Jul 1999 10:59:24 -0700

I have edited my registry in NT just like all my other NT's.
all of my service pack 3 boxes can loggin but not after I install
service pack 5.
Help...
what should I check now.
I looked in the samba help files but their suggestions did not work?
what is the real trick to get samba to work with NT 4.0 srv 5?

Randal





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

From: David Crooke <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Subject: Re: Smbclient
Date: Sun, 25 Jul 1999 18:43:39 GMT

"D.T." wrote:
> 
> I am reletively new to Linux and am attempting to use Samba to connect
> my Linux PC to our other 2 Win95 PCs.
> 
> I have installed to Network card OK & can Ping the Win95 PCs which are
> setup with TCP/IP 192.168.0.1 & 2 with Linux PC 192.168.0.3
> 
> I have modified smb.conf after reading the SMB.HOWTO but can not get
> the Linux PC to recognise either WIN95 PC
> 
> When I run smbclient I get the following error message
> 
> Added interface ip=192.168.0.3 bcast=192.168.0.255 nmask=255.255.255.0
> startlmhosts : Can't open lmhost file /etc/lmhosts . Error was NO such
> file or directory.

/etc/lmhosts is the Microsoft SMB equivalent of the Unix TCP/IP
/etc/hosts file, i.e. you can use it to list fixed IP adddresses for a
network with a small number of computers. Try this:


# begin lmhosts
192.168.0.1     win95a    
192.168.0.2     win95b
192.168.0.3     linux    
# end lmhosts


You should then be able to use:

smbclient -L //win95a/

and so on, from Linux. 

You can use the same lmhosts file on the Windows PC's - I can't remember
exactly where it goes under Windoze, but you can do "import lmhosts"
from the SMB config panel in Control Panel -> Networking. But, this is a
Linux group ;-) ...

For larger networks, Unix and the Internet use DNS (the domain name
service) to track IP addresses, and Windows uses WINS to track Windows
hostnames. Samba can be configured to act as a WINS server, but this is
over the top for what you need.


Enjoy
Dave


-- 
David Crooke, Austin TX, USA. +1 (512) 656 6102
"Open source software - with no walls and fences, who needs Windows
and Gates?"

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

From: Alvaro Garriga <[EMAIL PROTECTED]>
Subject: Newbie Question Sharing a Fat Partition with Samba
Date: Sun, 25 Jul 1999 12:39:29 -0400

I am new to Linux :
I got Samba working with win98 and winNT.

I have three share partition one in /home/public ( Linux ext2 ) I can create
directories and files from the windows boxes
Two FAT /share and /backup which I can see from my win boxes but I can not
create files or directories.

My questions is :
Is it possible to share one FAT partition for read/write using Samba ?
if is not how can I format/make the Fat partition a Linux ext2 partition ?


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

From: Bryan <Bryan@[EMAIL PROTECTED]>
Subject: Re: tcpdump and RH6.0 - anyone get it to work?
Date: Sun, 25 Jul 1999 18:15:50 GMT

I -was- root when I tried to run it.  here's the error I get:

# tcpdump
tcpdump: socket: Socket type not supported

my only interface is eth0 and that is up and running just fine.

I've been seeing a lot of 'issues' with glibc in this redhat release.
code that I wrote (and others I know) work fine on solaris and the
previous glibs (mandrake 5.3/redhat 5.2) but with this 6.0 release,
things are broken all over the place...


Coredump <[EMAIL PROTECTED]> wrote:
: In article <1vHm3.140$[EMAIL PROTECTED]>, Bryan 
:<Bryan@[EMAIL PROTECTED]> wrote:
: >mine is broken.  rebuilt from sources - still broken.
: >
: >has ANYONE gotton mandrake/redhat 6.0 tcpdump to work (on eth0, for example)?
: >
: >thanks,
: >

: The only thing I noticed was that it had to be run from root, to work. You can 
: probably make it run from a user account if you give them read access to some 
: resources (check the man page for tcpdump).

: John

: -- 
: [EMAIL PROTECTED]
: http://www.enteract.com/~coredump
: Stuck in a traffic jam on the Information Superhighway

-- 
Bryan, http://www.Grateful.Net - Linux/Web-based Network Management
->->-> to email me, you must hunt the WUMPUS and kill it.

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

From: David <[EMAIL PROTECTED]>
Subject: Re: netscape in RH6.0
Date: Sun, 25 Jul 1999 14:02:28 -0500

Netscape crashes on Java pages (REF#990511-0082)
               Description:
               I have installed Red Hat Linux 6.0 and Netscape keeps crashing when
               I reach a page with Java applets in it. I have also noticed that some
               of my applications do not display fonts correctly.

               What is going on?
               Solution:
               There is a problem in one of the installation RPMS that is causing
               many systems to not have a complete list of fontpath for X to use.

               To see if this is the problem you are facing, please use the command

               chkfontpath --list

               You should get output that looks like the following:

               Current directories in font path:

               1: /usr/X11R6/lib/X11/fonts/misc:unscaled

               2: /usr/X11R6/lib/X11/fonts/75dpi:unscaled

               3: /usr/X11R6/lib/X11/fonts/100dpi:unscaled

               4: /usr/X11R6/lib/X11/fonts/misc

               5: /usr/X11R6/lib/X11/fonts/Type1

               6: /usr/X11R6/lib/X11/fonts/Speedo

               You should then add the 75dpi scaled font to your path list using the
               command:

               chkfontpath --add /usr/X11R6/lib/X11/fonts/75dpi

               This should fix the problem you are seeing.
Good Luck
David

Timothy Laswell wrote:

> I experience a similar problem.  It appears to happen when I try to access
> a Java page.  I even upgraded to the 4.6 client that I downloaded from
> Netscape's web site. It still crashes when using Java.  I don't know,
> maybe I missed something on the install.
>
> Tim
>
> On Mon, 19 Jul 1999, manhattanian wrote:
>
> > Hi, Linux guys
> >
> > I installed the RH6.0. The problem is when I use the netscape to surf, it crashes 
>whenever it meets java. The error message is Bus error. Anyone can give me some clue 
>to fix it?
> >
> > Thanks.
> >
> > --
> > _________________________
> > Zheng Wang
> > Tel: 212-802-6276
> > Fax: 212-802-6253
> >
> >
> >


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

From: kite@NoSpam.%inetport.com (Clifford Kite)
Subject: Re: PPP routing problem
Date: 25 Jul 1999 13:45:04 -0500

Sergei O. Naoumov ([EMAIL PROTECTED]) wrote:

: I am now setting up a PPP link from my work to home. Everything seems to
: be working except the routing. The server is also a Linux box where IP4
: forwarding is enabled. However, my pings still do not go further than
: the server. One peculiar thing is that the network is cut onto the
: segments of 32, so my mask in /etc/ppp/options is 225.255.255.224 but
: this seems to be right.

: Does anyone have any thought on why my routing is not working?

It could be a lot of things.  You need the pppd defaultroute option at
home and the pppd proxyarp option at work.  You also need a home IP
address for the connection that belongs to the network at work.  For
the 2.2.x kernels you need IP forwarding turned on at work as well as
proxy arp turned on.  Turnon's are done by using "echo -n 1 > ..."
where ... is ip_forward in /proc/sys/net/ipv4 and proxy_arp in
/proc/sys/net/ipv4/conf/ppp0 .

The pppd netmask on the work box likely should be the one above, on the
home box it should be 255.255.255.255 .

You might be interested in this link:

http://www.swcp.com/~jgentry/dialin2.html

--
Clifford Kite <kite@inet%port.com>                    Not a guru. (tm)
/* The signal-to-noise ratio is too low in many [news] groups to make
 * them good candidates for archiving.
 *    --- Mike Moraes, Answers to FAQs about Usenet */

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

From: PVS <[EMAIL PROTECTED]>
Crossposted-To: comp.dcom.modems,fa.linux.serial
Subject: SDLC with any 'ol modem
Date: Sun, 25 Jul 1999 18:53:46 GMT

Hi.

For sometime I have been engaged in simulating a point-of-sale device
using a PC and--this is important--any 'ol modem.

Before I began I was told that this was impossible, since these devices
used the SDLC (Synchronous Data Link Control) protocol to carry the
message paylod and SDLC needs a synchronous modem, which is by far too
expensive. POS devices often have a slow sync/async modem in them.

So I swore I'd do it, and using a modem ordinarily available in the
market. I have noticed that most modems I have come across do both
synchronous and asynchronous communications (at least the brochures say
that), and if thats really true there shouldn't be a problem. The right
AT commands and I should be there I thought.

Well, I guess there is something more to it since I haven't been very
successful in spite of creating SDLC packets and trying the comms. The
packets are OK. I used a modem line tap to capture exactly what the POS
device transmits and receives. (The line tap didn't show 7E at all which
I thought was strange, only lots of 3011EDE3--in hex--flowing back and
forth. Would an MLT intelligently exclude 7E, since I set it to sync
mode?)

I may be missing out on something basic, like sync modems being
something special you have to order for (I am using a PSION V.34 Gold
Card with my laptop, which supports something called AutoSync. I have
also tried a Samsung Vortec which supported more AT&Q* commands with
no success).

What I can't figure though is that SDLC seems to be like any other
framing protocol. I am told PPP and the fax protocol are both based on
it and I know PPP can work with any 'ol modem. Why call it synchronous
(as in Synchronous DLC) then?

And how does a modem manage to send clock signals "embedded" in data
like some books say? I thought an extra signal needed an extra wire
which telephone lines don't have. Whats with embedding a clock in SDLC?

Finally, if there is indeed something special called a sync modem will
my UART work with it, or do I need a USART (which I am told is
relatively expensive)?

All I know is that my message paylod is OK. It works when I pump it
right into its destination (over a LAN) instead of bothering with phone
lines and modems.

I wish I find a guru...

PVS - [EMAIL PROTECTED]











Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.

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

From: "Wolle" <[EMAIL PROTECTED]>
Subject: maincomputer
Date: Sun, 25 Jul 1999 20:49:40 +0200

I want to set up a network with on the main computer linux.
Must the main computer be the fastest computer?

Erik.



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

Date: Sun, 25 Jul 1999 14:23:09 -0700
From: [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Subject: Trouble installing ethernet card

Hello everyone,

        I am using Redhat 5.2 with kernel 2.2.10 and a monolithic kernel
compiled with the 3com Vortex/Hurricane driver.  I am trying to use a
3Com Officeconnect 100T NIC (it has a Hurricane chipset).  The card
works fine under Windows NT and Donald Becker's vortex diagnostics
program recognizes the card under Linux.  The 3Com 59x driver also
appears in the message file without any error messages.

The problem: ifconfig claims that eth0 is an "unknown interface", and
when I look under /proc/ioports I can't see the network card.

Thanks a lot,

David Flory

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

From: [EMAIL PROTECTED] (Sitaram Chamarty)
Subject: Re: PCMCIA setup problems
Date: 25 Jul 1999 04:57:05 -0700

On Fri, 23 Jul 1999 20:10:39 -0400, Shawn Liu
<[EMAIL PROTECTED]> wrote:

>I have a 3Com PCMCIA ethernet card, model 3CCE589ET, and I have Redhat 6
>on my Toshiba notebook (Satellite Pro 460CDT).  The card is one of those
>in the list of linux PCMCIA supported cards, but it's not working on my
>computer.  When I stuck it in the slot, it gives me one high beep
>(recognizes it), and then it takes about 2 or 3 minutes for the next
>beet to come up -- and it's a low beep, which means that it's not

First thing to check: After you insert the card both
/var/log/messages as well /var/run/stab should tell you the card's
name etc.

If you don't see anything that looks like your card is recognised,
then you have a problem.  If you do then you're one step ahead.

The only RH 6.0 machine I have seen had the same problem.  It
was PCMCIA card too, and the system log showed a "usage: ..."
message from one of the scripts started by /etc/pcmcia/network.

Anyway if you see such a message, ignore it for now (later you'll
have to fix that script - I can help if you like).  To ensure your
card is working do one of these:

no DHCP server:
    ifconfig eth0 your.fixed.assigned.ip-address
DHCP server available somewhere:
    dhcpcd

In the latter case, do a "tail -f /var/log/messages" on another
screen and check the messages that dhcpcd comes up with.

If either of them report errors, you *may* have a problem.  Post
back.

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

From: [EMAIL PROTECTED]
Subject: Re: Linux 2.2.9 patches broke ISDN?
Date: Sun, 25 Jul 1999 19:26:43 GMT

In article <7n5ce2$84t$[EMAIL PROTECTED]>,
  [EMAIL PROTECTED] wrote:
> I've encountered a problem when upgrading my system by installing Mandrake
> 6.0. My problem seem to be exactly the same as another user has reported in
> another news group, you can find it here:
>
> http://x26.deja.com/getdoc.xp?AN=488748392&CONTEXT=932583744.384172291&hitnum=15

Just to follow up on my own message. After having tried recompiling the isdn
tools and upgrading to the 2.2.10ac kernel and still getting the "network is
down" message, I bit the bullet and downgraded to the 2.2.5 kernel with the
result that isdn works fine again. So, I guess isdn is really broken in the
newer kernels distributed with RedHat 6.0/Mandrake 6.0, and possibly in the
upcoming 6.2 SuSE release (unless they find some patches to fix it or get a
new [as yet non-existing] release that fix it).

Marius


Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.

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

From: [EMAIL PROTECTED] (Rudolf Potucek)
Subject: Re: Linux and ADSL how to----does one exist??
Date: 25 Jul 1999 19:19:36 GMT

RTFM! There must be 1000s of posts at dejanews.com!

sparks ([EMAIL PROTECTED]) wrote:
: They are installing ADSL in my area next month.
: I wanted to put the adsl into my linux box and use

Like putting the internet -- the newest version too -- into your computer?

: it as a server for my pc's 
: Well Can you play games on the net thru the linux box?

Some are harder than others but basically -- yes.

: I have been told that most net games will NOt play this way
: is this true?

As I said, it may take work, but that mainly depends on your idea of a 
balance between security and utility :)

: Have read that it will work with MAJOR mods to masquerading 

yeah, but they are modules and readily available

: and/or firewall to get this to work and by then you might
: as well forget protection, 

only for the gaming machine, if anyone uses tha game protocol itself ...

: all games are different and you
: end up opening up you whole system if you play a lot of 
: different games on the net.

Again depends on the amount of work you want to put into it ...

: 100 ports here and 10 ports there and on and on for each
: game you want to allow thru.

Like that is any different from what you'd have using a modem. Plus 
'allow thru' is the key. You have to specifically send them where you 
want them, your gaming machine and then the risk is for the gaming 
machine only ...

: Is this really an open hole OR are the ports they are talking 
: about set to ONLY allow a certain game thru and nothing else?

You could allow traffic from one server only, but you probably can't make 
it game specific.

: thanks for any and all help, readme's or what ever I need to 
: decide about the linux box as a server or just connect the
: adsl to my pc and say to hell with the rest.

Again, RTFM!

  www.dejanews.com

  /usr/doc/HOWTO

  man ipchains (RH5.x)
  man ipfwadm (RH6)

Rudolf
: jerry




--

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

From: David <[EMAIL PROTECTED]>
Crossposted-To: redhat.networking.general
Subject: Re: Netscape 4.61 and Flash beta for Linux
Date: Sun, 25 Jul 1999 14:32:17 -0500

Yes the Flash Plugin works for me on RH 6.0 and Netscape 4.61 w/128
encryption.
It looks like you copied or moved the libflashplayer.so file into the wrong
file.
It should have been copied into /usr/lib/netscape/plugins.
Then close all Netscape browsers and restart Netscape.
then go to http://www.flash.com to test and see if it works.

Good luck!
Works for me!  ;~)
David

Michael Lundberg wrote:

> Has anyone successfully installed the Flash beta plugin for Linux(x86) with
> Netscape 4.61(from Netscape tar, not rpm'ed)?
>
> The README.TXT claims that it has been tested with RH 5.1 and 5.2,
> Slackware 3.5.0 and only with Netscape 3.04, 4.08. 4.5.  I am using RH 6.0
> with Netscape 4.61.
>
> Following the instructions, I exited Netscape, unpacked the
> Flash_linux.tar.gz, and copied libflashplayer.so into my
> /usr/local/netscape/plugins directory.  I restarted Netscape opened Help ->
> About Plug-ins and got no plugins installed.  I verified at www.flash.com
> that I cannot view flash at the flash site either.
>
> Has anyone had any success with this platform and rev of Netscape?
>
> ------------------  Posted via SearchLinux  ------------------
>                   http://www.searchlinux.com


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

From: Ben Armstrong <[EMAIL PROTECTED]>
Subject: UDP packets lost locally.  How do I diagnose/fix?
Date: Sun, 25 Jul 1999 19:40:58 GMT

I have a small (3 node) LAN.  The systems all run Linux.  A UDP service
run on the firewall (happens to be a game server, 'xpilots') works well
when I connect from two of the nodes, but a client running on the third
node has trouble when connected to this service which I believe to be due
to packet loss and/or duplication (ship controls 'stick', making it
impossible to turn, or thrust/fire sticks 'open' without me touching the
controls until I activate the thrust/fire control again ... other players
connecting from outside the LAN do not have this problem). 

How do I go about troubleshooting/fixing the problem?

Here is what I have tried so far:

1. compare ping stats between all 3 nodes in both directions
   - normal ping (with default values) shows no appreciable
     latency/loss between nodes, but if I increase the packet
     size and rate:
     - when I ping-flood 500 byte packets from the 'problem'
       node to either of the other 2 nodes, performance
       decreases: avg latency rises to 100ms and loss to 7%
     - if I perform the same test from the other 2 nodes to
       either of the 2 opposing nodes on the LAN, there is
       no appreciable latency and 0% loss

2. try alternate net driver
   - the 'problem' host has a tulip (Digital, not a clone),
     and I was using the generic de4x5 driver
   - I switched to the 'tulip' driver, with no visible improvement
     when performing the same test

3. try alternate NIC
   - I swapped out the tulip (a PCI NIC) and put in an old Etherexpress
     16 (an ISA card), and this, in fact changed the numbers a bit
     for my ping-flood test, but they were still bad:
     - now 190 ms latency and 3% loss

4. try different FSB speed
   - I wondered if some 'systemic' problem was affecting NIC
     performance, like bus speed, so I took the problem host's
     FSB speed down from 100MHz to 66MHz while keeping the CPU
     speed constant (i.e. I jumpered my FIC VA503+ down to
     66 MHz * 4.5 = 300 MHz from the original 100 MHz * 3.0 = 300 MHz)
     - still no difference in the ping-flood test

BTW, the 'problem' system ran Linux 2.2.9 before the NIC switch.  When I
recompiled the kernel so I could switch drivers (see point 2) I upgraded
to 2.2.10 (yeah, I know, not good scientific method to change 2 variables
at once ... oh well).  The other 2 nodes on the LAN are at 2.2.9 (the
firewall, which has an NE2000 compatible DLink as the external NIC and a
2nd Etherexpress 16 as the internal NIC) and Linux 2.0.36 (which also uses
an NE2000 compatible).  Furthermore, this problem has persisted across
several kernel version upgrades, so I don't suspect a specific Linux
version as the problem. 

Is my ping-flood test valid?  Is there an easy way to monitor what
happens to my UDP packets during a game (i.e. how do I detect
duplication/loss?)  All of the net troubleshooting tips I've seen
to date are for TCP connections, and involve tricks such as watching
for SYN packets beginning to pile up.  I don't know where to begin
with UDP troubleshooting.

There is an outside chance that the problem is mouse-related, as the
controls are activated by my mouse.  It's a Logitech PS/2 3-button mouse,
and I usually don't have problems with these mice, but ... you never know. 
What is a good mouse diagnostic?  I have gpm running on the console, so I
use the -R option and read the mouse events off of /dev/gpmdata (the
'repeater' device) under X.  I think I've tried turning off gpm and
reading the mouse device directly before in X, with no improvement to the
game.  Other things make me not suspect the mouse, too, like it seems that
more players joining the server makes my control-lockup problem worsen.

Any ideas?

Ben
-- 
    nSLUG       http://www.nslug.ns.ca      [EMAIL PROTECTED]
    Debian      http://www.debian.org       [EMAIL PROTECTED]
[ pgp key fingerprint = 7F DA 09 4B BA 2C 0D E0  1B B1 31 ED C6 A9 39 4F ]
[ gpg key fingerprint = 395C F3A4 35D3 D247 1387  2D9E 5A94 F3CA 0B27 13C8 ]

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


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