Linux-Networking Digest #389, Volume #10          Fri, 5 Mar 99 13:13:51 EST

Contents:
  Re: stmp + host + domain mailbox Q ("Leopold Toetsch")
  SuSE Linux / IBM Token Ring (Ashik)
  Re: tcp server with timeout (F.R.M.Barnes)
  Re: PPP configuration (Clifford Kite)
  Re: Machine name themes - what do you use? (Tim Koruna)
  Re: Linux and Windows NT networks (Cameron Huff)
  Re: Newbie question (Yndigos)
  Re: modem unavailable after reset button pressed (Chris Beamis)
  Re: Auditing on my mailboxes on my linux mailserver (Hemant Bansal)
  Re: Help with IP Routing Problem! (Jason Keyes)
  NT users authentication using linux pswd file. ([EMAIL PROTECTED])
  Gigabit Networking Pentium Linux Servers? (Rainer Spurzem)
  NE 2000 ISA config problems (KNE2000LC works 98 not linux) ([EMAIL PROTECTED])
  PPP PROBLEM (giangy)
  Re: Performance problem Win95 <-> Linux (Rick Onanian)
  Newbie Question on InterEtherExpress Pro/10 ISA (Hui Ye)
  Re: proftpd (Rick Onanian)
  NFS install auf Laptop (Andreas Raum)
  Re: Linux serving two *ISOLATED* networks (Petr Sulla)
  DHCP Cable modem probs (Jarod Belshaw)
  3COM etherlink XL probing error ("newsgroup")
  Re: Help! How do I build a tulip ethernet driver under REDHAT ? (Tim Myrtle)
  YATT: IRC, identd, and firewalls (Rick Onanian)
  SOCK_PACKET support - where is it? (kernel option) ("A.G.")
  Re: Machine name themes - what do you use? (KA)
  Re: SOCK_PACKET support - where is it? (kernel option) ("Bj�rn Mork")
  Re: Linux POP/IMAP w/ LDAP service? (Dave Edick)

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

From: "Leopold Toetsch" <[EMAIL PROTECTED]>
Subject: Re: stmp + host + domain mailbox Q
Date: Thu, 4 Mar 1999 12:50:15 +0100

/usr/doc/packages/sendmail/FAQ.part1.sendmail => Q3.1
set these m4 macros:
MASQUERADE_AS(my.dom.ain)
FEATURE(masquerade_envelope)   

In SuSE 6.0 you just set FROM_HEADER=my.dom.ain

leo


Matt wrote in message <[EMAIL PROTECTED]>...
>Hi,
>
>I have called my hostname anyone for generic reasons.
>
>Username = root
>HOSTNAME = ANYONE (as entered in my /etc/HOSTNAME file)
>Domain name = compuserve.com
>
>Now when I send a mail message the remote mail box checks
>the domain name and it displays it as [EMAIL PROTECTED]
>not [EMAIL PROTECTED]
>


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

From: Ashik <[EMAIL PROTECTED]>
Subject: SuSE Linux / IBM Token Ring
Date: Thu, 4 Mar 1999 17:43:23 +0000

Hi everybody,

I've recently purchased a copy of the excellent SuSE Linux 6.0 from The 
Linux Emporium (in the UK) and i'm trying to connect two PCs via 
token-ring.  I'm using 2 IBM 16/4 token ring cards.  Does anyone know if 
these cards are supported?

========================================
mailto:[EMAIL PROTECTED]


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

From: [EMAIL PROTECTED] (F.R.M.Barnes)
Crossposted-To: comp.unix.programmer
Subject: Re: tcp server with timeout
Date: Thu, 04 Mar 99 18:01:20 GMT

Dennis Schulze wrote in message <[EMAIL PROTECTED]>...
>Hello,
>
>I am looking for a way to let a tcp server listen to a port for a
>specified amount of time and then exiting if no client has connected to
>it. So far, the accept() is rather running infinitive and I don't know
>how I can exit that function after some time. Does anybody has a C code
>sample for solving that problem or can give me some hints?
>
>Regards,
>
>Dennis
>[EMAIL PROTECTED]

select() returns ready-for-read if a listening socket becomes ready
for accepting:

fd_set readset;
struct timeval timeout;
int s_fd, a_fd;

/* Create/bind/listen */

for( ;; ) {
  timeout.tv_sec = ...;
  timeout.tv_usec = ...;
  FD_ZERO( &readset );
  FD_SET( s_fd, &readset );
  if( select( s_fd + 1, &readset, NULL, NULL, &timeout ) < 0 ) {
    /* Timeout or error */
  }
  if( FD_ISSET( s_fd, &readset ) ) {
    a_fd = accept( s_fd, ... );
    /* Do stuff */
  }
}

... is sort of the basic framework for this kind of thing.  Reading
the manpage for select() would be a good idea.  I'm not too sure how
non-blocking sockets respond to this treatment, but it is probably in
the FAQ somewhere (http://www.erlenstar.demon.co.uk/unix/).

Fred.
--
+----------------------------------------------------------------------+
| Fred Barnes, CS Student, UKC                http://teddy.xylene.com/ |
| [EMAIL PROTECTED]                            http://stuE253.ukc.ac.uk/ |
+----------------------------------------------------------------------+

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

From: [EMAIL PROTECTED] (Clifford Kite)
Subject: Re: PPP configuration
Date: 5 Mar 1999 07:24:24 -0600

Brian Walter ([EMAIL PROTECTED]) wrote:
: Greetings all:

: I'm try to get PPP to run.  Got the chat script working, and then pppd takes
: over, and the line drops.  No messages in the log file.  Any general ideas?
: By the way, I've seen logs with a lot more detail than mine.  If I remember
: correctly, there was a way to get more detailed information?

Use chat with the -v option and pppd with the "debug" option.  Look in
/var/log/messages and /var/log/debug for chat and pppd messages respectively.

If there's no debug file, then configure for one in the /etc/syslog.conf file.
Something like
  *.=debug                  /usr/adm/debug
will do the job, after creating the debug file with echo -n > /usr/log/debug
and doing kill -HUP `pidof syslogd`.  "man syslog.conf" for some explanation.

--
Clifford Kite <[EMAIL PROTECTED]>                       Not a guru. (tm)
/* Those who can't write, write manuals. */

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

From: [EMAIL PROTECTED] (Tim Koruna)
Crossposted-To: 
vmsnet.networks.misc,microsoft.public.windowsnt.domain,comp.unix.solaris,comp.os.os2.networking.server,comp.os.ms-windows.nt.admin.networking,comp.infosystems.www.servers.unix,comp.protocols.tcp-ip.domains
Subject: Re: Machine name themes - what do you use?
Date: Fri, 05 Mar 1999 13:45:19 GMT

At work, it's dull stuff (like NT_SERVER, God forbid)

At home, it's characters from theDiscworld books.

ridcully, rincewind, twoflower, bursar, mort.



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

From: [EMAIL PROTECTED] (Cameron Huff)
Subject: Re: Linux and Windows NT networks
Date: 4 Mar 1999 18:24:10 GMT

In article <7bk9o5$p16$[EMAIL PROTECTED]>, [EMAIL PROTECTED] says...
>
>Take a quick look at the how-to, 
>http://sunsite.auc.dk/ldp/HOWTO/SMB-HOWTO.html, and see what you get out 
>of it.  If this is not enough, do a search on www.google.com, many unix 
>links.
>
>Cameron Huff wrote:
>> At the company I work at, we would like to deploy some Linux servers as 
>a test.  
>> Can we setup the Linux box so that it acts like a Backup Domain 
>Controller for 
>> a NT Network?
>> 
>> Any help on this would be apreciated
>> 
>> Cameron Huff
>> 
>> 
>
>
>------------------  Posted via SearchLinux  ------------------
>                  http://www.searchlinux.com
I went to that site and it looks like that will do the trick.  Thanks for the 
help!



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

From: [EMAIL PROTECTED] (Yndigos)
Subject: Re: Newbie question
Date: Thu, 04 Mar 1999 18:44:17 GMT

Hye,
go to the support and look to the supported material. After that make your 
choice...

>Interested in building a new machine for running RH on. What  hardware
>"motherboard, video card, modem" would be the most easiest to find drivers
>for and somewhat hassel free?  Probably would be using a AMD 233 chip.
>Thanks in advance.
>
>
 Yndigos

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

Crossposted-To: comp.os.linux.setup
From: Chris Beamis <[EMAIL PROTECTED]>
Subject: Re: modem unavailable after reset button pressed
Date: Thu, 4 Mar 1999 18:33:11 GMT

> Does cu -d /dev/cua[0-4] (use the appropriate device number :^) ) work ?
> ie: can you send commands to the modem ??? +++ATZ and get an "OK" response back
> ??
> If this does not work (device busy) you probably have an errant lock file hanging
> around.
> 
> Hope this helps
> 
> Bill

Thanks, I will try this forthwith.  However, I suspect that I will get
the device busy message.  Like I said in my first posting, I used find
to search the whole directory tree for "LCK*" and found nothing.  Is
there any other names used for modem lock files?
Chris Beamis



> 
> --
> William R. Mattil       | Fred Astaire wasn't so great.
> [EMAIL PROTECTED]  | Ginger had to do it all backwards
> (972) 256-3219          | and... in high heels.

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

From: [EMAIL PROTECTED] (Hemant Bansal)
Subject: Re: Auditing on my mailboxes on my linux mailserver
Date: 4 Mar 1999 14:38:38 GMT
Reply-To: [EMAIL PROTECTED]

[EMAIL PROTECTED] (Abrie Jordaan):
> I need a program to record the the following information on my linux
> mailserver (normal linux box with pop and smtp functions) in a textfile :
> 1)The mailboxnames,
> 2)Next to the mailboxnames---, the size of each mailbox
> 3)The number of messages in each mailbox
> can anybody tell me where i can get this program or any suggestions on
> accomplishing the above.I am not very experienced with linux.
> Your replies will  be much appreciated.

You can use the program 'frm'. It wont give the size of the mailbox but can
give the rest of info. you can store the output of frm in a file seperately
with the help of shell script.
for the size of the mailbox you can use the output of 'ls -l'.
frm is part of standard elm package. 
search for it at ftpsearch.lycos.com.


-- 
Hemant Bansal <[EMAIL PROTECTED]>
Indian Institute of Technology Bombay, India.

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

From: Jason Keyes <[EMAIL PROTECTED]>
Subject: Re: Help with IP Routing Problem!
Date: Fri, 05 Mar 1999 16:22:57 GMT

Hi Michael,

This configuration will never work.  You will need to ensure that any
addresses to systems in the collision domain off of your NIC2 (192.168.1.1)
are compatible with your existing subnetwork.  That is, if you're using
standard class C subnetting (subnet mask 255.255.255.0) with the
192.168.1.0/24 network, you need to make sure that the network address falls
within the range of 192.168.1.0 through 192.168.1.255.  208.123.164.170 can
only exist in the same collision domain as NIC1.

HTH,
Jason

In article <[EMAIL PROTECTED]>,
  Michael23 <[EMAIL PROTECTED]> wrote:
[...]
> I have recently got another IP address for my local network,
> so that I can host both a primary and secondary DNS server.  I would
> like to just change the IP of my second Linux box so it can be the
> secondary
> DNS server...
>
> So far I have tried everything I can think of and still it is not
> working.
[...]
> This is the setup I want:
>                                           Internet
>                                                |
>                                             DSL
>                                                |
>                             NIC1 = 208.123.164.169
>                             dual-homed linux machine1
>                                NIC2 = 192.168.1.1
>                                                |
>                                                |
>
> ----------------------------------------------------------------------------
>
>           |
> |                                                        |
> NIC = 192.168.1.2                 NIC =
> 192.168.1.3                              NIC = 208.123.164.170  <--
> notice real world IP
> win95 machine1                           win95
> machine2                                   Linux machine2
>

--
Jason Keyes / [EMAIL PROTECTED]
IDX Systems Corporation
Boston, MA, USA

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

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

From: [EMAIL PROTECTED]
Subject: NT users authentication using linux pswd file.
Date: Thu, 04 Mar 1999 18:38:47 GMT

Hi,

I'm using RedHat 5.2 and NT4.0 in a network. My NT ran ms-proxy 2.0 with its
authentication strategies. I want to share Linux /etc/passwd file with my NT.
Actually I don't want to redefine my linux users under NT machine. Is there
any idea?

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

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

From: Rainer Spurzem <[EMAIL PROTECTED]>
Subject: Gigabit Networking Pentium Linux Servers?
Date: Fri, 05 Mar 1999 17:43:41 +0100

 Hi, can anyone help with ideas, web-pages, product-infos on whether it
is or will become possible
 in the near future to connect a few Linux Servers (typically two or
four Dual Pentium 450)
 with a small interconnection network using Gigabit speed?  Background:
we have parallel
 simulation programs which critically depend on communication speed
(large data packages).
 Now it seems Gigabit-Ethernet-PCI-Cards are available; are there any
known small
 switches or hubs on the market for that purpose or can one connect two
of such cards
 directly? I know that presently the 3C985 - Gigabit card is not yet
supported according to
 the suse web-database. But that can't be a long time from now it will
be supported
 probably, or what do you think?

 Any hints, advice, ideas are very welcome, by follow-up or personal
email,

 thanks a lot,

 Rainer Spurzem


--

============================================================================

 Rainer Spurzem                      [EMAIL PROTECTED]
 Astronomisches Rechen-Institut      Tel. (06221) 405-230
 Moenchhofstrasse 12-14              Fax. (06221) 405-297
 D-69120 Heidelberg

 http://www.ari.uni-heidelberg.de/mitarbeiter/spurzem/index.html

"I realize That nobody wins Something is ending And something begins" - MADONNA
============================================================================




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

From: [EMAIL PROTECTED]
Subject: NE 2000 ISA config problems (KNE2000LC works 98 not linux)
Date: Thu, 04 Mar 1999 17:59:50 GMT

I've inherited a KNE2000LC card.  I plugged it in to my dual boot machine.

Using Q-Start I found a reasonable setting that worked under Win98:

ISA, io=300, irq=4

(I was only able to get it to work by setting some rom values (16K, D000).

It works fine under Win98 now.  Under Linux (RH5.2) ne.c barfs all over it at
boot, saying something about an illegal id (42 42).

Here's the gross part: now my original network card (D-Link) won't initialize
DHCP under Linux anymore, even if I remove all trace of the new KNE card! 
Help!

Any information would be greatly appreciated.

Thanks,

-A

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

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

From: giangy <[EMAIL PROTECTED]>
Subject: PPP PROBLEM
Date: Fri, 05 Mar 1999 17:56:38 +0100

I changed  ISP and can't get my connect script to work (I make them with 
redhat control panel)




The working one


Mar  5 12:00:14 scilla pppd[6891]: Serial connection established.
Mar  5 12:00:15 scilla pppd[6891]: Using interface ppp0
Mar  5 12:00:15 scilla pppd[6891]: Connect: ppp0 <--> /dev/modem
Mar  5 12:00:19 scilla pppd[6891]: Remote message: Login ok
Mar  5 12:00:20 scilla pppd[6891]: local  IP address 195.191.34.12
Mar  5 12:00:20 scilla pppd[6891]: remote IP address 195.191.34.2  





The other one...
I only changed login a and phone number

Mar  5 12:00:14 scilla pppd[6891]: Serial connection established.
Mar  5 11:55:17 scilla pppd[5809]: Using interface ppp0
Mar  5 11:55:17 scilla pppd[5809]: Connect: ppp0 <--> /dev/modem
Mar  5 11:55:18 scilla pppd[5809]: Remote message:
Mar  5 11:55:19 scilla pppd[5809]: local  IP address 192.168.1.1
Mar  5 11:55:19 scilla pppd[5809]: remote IP address 151.99.109.146
Mar  5 11:55:19 scilla pppd[5809]: IPCP terminated by peer
Mar  5 11:55:19 scilla pppd[5809]: Unsupported protocol (0xc029)
received
Mar  5 11:55:20 scilla pppd[5809]: LCP terminated by peer
Mar  5 11:55:23 scilla pppd[5809]: Connection terminated.   


Note I don't get any "Remote message:" in the latter...

and most of all 
local ip address is my ethernet ip

Any ideas????
Both ISP have pap authentications .... since you can use them with
remote access ...

Ah one more thing
the username they tell me to put in is this
user$TOP 
can the $ sigh be a problem????

thnaks gianluca
take nojunkmail out to write to me

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

From: Rick Onanian <[EMAIL PROTECTED]>
Subject: Re: Performance problem Win95 <-> Linux
Date: Fri, 05 Mar 1999 11:42:15 -0500

You may want to experiment with the MTU and related settings on both
machines. I've seen a bad MTU setting cause this problem before. In
Linux, you can type ifconfig and it'll show you, in Windows you have to
search the registry or download a program that tweaks those settings
(One is called PPPboost; most are made for people with dialup
connections
to speed it up, but work both ways).

Erwann ABALEA wrote:
> 
> Hello all,
> 
> I've got a "small" problem, and I can't solve it...
> 
> I've got 2 machines, 1 Windows95 box, and a Linux box. Both are on the
> same ethernet (RJ45, crossed cable, no hub), and are well configured (Non
> routable IP address, corresponding netmasks, all the addresses are in the
> hosts files on both machines). The ethernet cards are old ISA ones (Win95
> is a AMD2100/AMD1500t compatible, Linux is a HP PC/LANPlus io 0x300, irq
> 10, i/o mode).
> 
> I can connect from each machine to the other, without any delay.
> 
> The problems are performance ones. When I transfer a file from Linux to
> Win95, for a 1.4MB file, I've got a 275KB/s rate... The same file, but the
> other way, I can harder get more than 3KB/s (yes, three!!)...
> 
> I prefer to blame Windows for this, so I searched at the driver
> configuration, I tried to explicitely set the full-duplex to off, setting
> the TCP/IP the default protocol, but nothing can get me a faster rate....
> 
> Anyone got an idea? Even a single pointer to a doc?
> 
> Thanks...
> 
> --
> Erwann ABALEA
> [EMAIL PROTECTED]

-- 
  rick - a guy in search of raw (ISO) cd images of SuSE and Slackware
===============
My opinions don't exist, and as such, are not anyone elses. I do not 
represent anyone, not even myself, and especially not my employer.
---
Looking for a 1968 Camaro SS convertible, black interior, 
beat-up rustbucket that is in need lots of restoration and TLC.
---
To email me, take out the papers and the trash
[EMAIL PROTECTED]

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

From: Hui Ye <[EMAIL PROTECTED]>
Subject: Newbie Question on InterEtherExpress Pro/10 ISA
Date: Thu, 4 Mar 1999 14:05:27 -0500 

Hello, I tried to install Linux (Redhat 5.2) for the first time, and
everything worked out fine, except the installation program cannot
detect my Intel EtherExpress Pro/10 ISA card.

After starting Linux, I tried to load the eexpress module from Kernel
Configuration in x-win, specified IO port address and IRQ.  When I
restart Linux, I got following messages:
"eth0 : EtherExpress at 0x210 rejected : invalid address 000000000000"
I changed port address and IRQ with Intel config disk for a few times,
but I would get the same messages (different address and IRQ #).
I read installation guide and some HowTos, but couldn't find the
answers.

PnP is disabled on the card.


If anyone has suggestions on how to get the card to work, I would
appreciate it very much.

-Hui


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

From: Rick Onanian <[EMAIL PROTECTED]>
Subject: Re: proftpd
Date: Thu, 04 Mar 1999 13:52:40 -0500

Laurent wrote:
> 
> I run proftpd 1.2.0pre2, and kernel 2.2.1
> 
> I can login from my own network, but I can't behind my gateway, using the
> same login and passwd.
> 
> What's wrong ?
> Please help

Can you give us more details about your gateway? If it does any 
firewalling, than you probably need to make provision for FTP behind the
firewall..ftp gets a little messy in the way it uses ports.

What is the error message you get, exactly?

-- 
  rick - a guy in search of raw (ISO) cd images of SuSE and Slackware
===============
My opinions don't exist, and as such, are not anyone elses. I do not 
represent anyone, not even myself, and especially not my employer.
---
Looking for a 1968 Camaro SS convertible, black interior, 
beat-up rustbucket that is in need lots of restoration and TLC.
---
To email me, take out the papers and the trash
[EMAIL PROTECTED]

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

From: Andreas Raum <[EMAIL PROTECTED]>
Subject: NFS install auf Laptop
Date: Fri, 05 Mar 1999 18:04:44 +0000

Kann mir jemand erkl�ren wie ich SUSE linux auf einen Laptop
(Netzwerk ist eingerichtet) installieren kann.
Ich habe auf dem NT-Server via Omni NFS einen Server
eingerichtet und das CD-Rom freigegeben.
Wenn ich mit der Boot Disk Starte zeigt mir OmniNFS auch
dass der laptop das Share gelockt hat- ich komme
jedoch nicht ueber den Screen Linux installieren
nicht hinaus ( es erscheint ganz kurz eine gruen Message)
ich kann jedoch nix mounten etc. - Hat jemand eine idee

Thanx im voraus


AndY


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

From: Petr Sulla <[EMAIL PROTECTED]>
Subject: Re: Linux serving two *ISOLATED* networks
Date: Thu, 4 Mar 1999 18:26:06 GMT

Juan Carlos Gil Montoro wrote:
> 
> Hi Linux networkers!

> The question for you experts is, what is the best way to accomplish this?
> Which TCP services should I remove and which should I keep considering that
> the only network service absolutely required is our app. which must listen to
> one or several ports in both LANs?
> 
> Any idea/comment welcome. Thanks in advance.

Disable ip forwarding and disable all daemons running up at start, which
have something to do with network (if you use redhat, look into
/etc/rc.d/rc*/)

Greets
-- 
=======================================================================
Petr Sulla (alias Pedro)         mail: xsulla(at)fi.muni.cz
Make kernel, not war.
=======================================================================

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

From: Jarod Belshaw <[EMAIL PROTECTED]>
Subject: DHCP Cable modem probs
Date: Fri, 05 Mar 1999 11:17:41 -0600
Reply-To: [EMAIL PROTECTED]

Hey all,
  I have Mediaone Cable Modem service, running on RedHat 5.2...  I can
get it too work, but only for approx 24 hours at a time.  Then it goes
down.  If I reboot the computer, it works again.  I am also trying to
network this with a Win95 pc, and i've actually been able to get out to
the internet from the Win box, but if I try to download anything it is
always corrupted (like traffic to both machines got intermingled).  Any
Ideas on these two?

Thanks

Jarod


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

From: "newsgroup" <[EMAIL PROTECTED]>
Subject: 3COM etherlink XL probing error
Date: Thu, 4 Mar 1999 13:40:43 -0600

I'm trying to probe my 3com etherlink XL under Slackware 3.6, but it says

============================================================================
==================
3c59x.c:v0.99E 5/12/98 Donald Becker
http://cesdis.gsfc.nasa.gov/linux/drivers/vortex.html

The PCI BIOS has not enabled this device! Updating PCI command 0000->0005.

eth0: 3Com 3c905 Boomerang 100baseTx at 0xfc40, 00:60:08:96:23:2b, IRQ 255

*** Warning: IRQ 255 is unlikely to work! ***

8K word-wide RAM 3:5 Rx:Tx split, autoselect/NWay Autonegotiation interface.

MII transceiver found at address 24, status 7869.

Enabling bus-master transmits and whole-frame receives.

============================================================================
=============================================

And it's not working. Any idea? This card works fine under Linux on another
machine.




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

From: Tim Myrtle <[EMAIL PROTECTED]>
Subject: Re: Help! How do I build a tulip ethernet driver under REDHAT ?
Date: 5 Mar 1999 17:31:33 GMT

Lenny-

I am running RedHat 5.2, upgraded to the 2.2 kernel on my server. I am
using the public tulip driver included with 2.2.  I saw the note that came
with the card to use the Netgear drivers, but so far I have had no problems
with the public driver.

Is there really a reason to use the Netgear drivers?

Tim Myrtle
[EMAIL PROTECTED]




lenny wintfeld wrote:
> 
> Hi-
> 
>       I've got to build a revised tulip driver for my Netgear FA310tx 
> ethernet card. Evidently I need v .89 or higher & I've got v .88 now. The 
> instructions that came with the driver are very clear but are for  non 
> RPM linux's. Can you give me instructions on how to do the build under 
> REDHAT's quite different file tree?
> 
> The instructions that come with the driver on Netgears floppy are as 
> follows (verbatim):
> 


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

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

From: Rick Onanian <[EMAIL PROTECTED]>
Subject: YATT: IRC, identd, and firewalls
Date: Thu, 04 Mar 1999 14:17:56 -0500

Yet Another Tired Topic...

I can't seem to get IRC working behind my IP Masquerading firewall. I've
installed two differant identd's that are supposed to work with ip masq,
and followed their directions, but to no avail.

The only way I can get it to work is if I use ipportfw to forward the
identd port (I think it was 113) from the firewall to one client
machine,
and run mIRC/Windows on that machine. mIRC has a built in identd, I
believe..

I tried applying that trick to a linux client, but it doesn't work.

One identd I tried was called midentd..The other I can't remember.

Is there anyone with any ideas on this stubborn piece of crud? :)

-- 
  rick - a guy in search of raw (ISO) cd images of SuSE and Slackware
===============
My opinions don't exist, and as such, are not anyone elses. I do not 
represent anyone, not even myself, and especially not my employer.
---
Looking for a 1968 Camaro SS convertible, black interior, 
beat-up rustbucket that is in need lots of restoration and TLC.
---
To email me, take out the papers and the trash
[EMAIL PROTECTED]

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

From: "A.G." <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux.slackware
Subject: SOCK_PACKET support - where is it? (kernel option)
Date: Thu, 4 Mar 1999 15:01:33 -0500

I'm trying to compile dhcpcd, and it's said inthe README that I should make
sure my kernel was compiled with "support for SOCK_PACKET".

I tried looking in .config for 2.0.36 and for 2.2.2, and didn't find this
option.

The closest I could find was "Packet socket", which is CONFIG_PACKET. It's
the first one in "Networking options" in menuconfig. Is this the one?

There's also one just below it: 'Kernel/User netlink socket'.

Thanx for any input!
Arcady



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

From: KA <[EMAIL PROTECTED]>
Subject: Re: Machine name themes - what do you use?
Date: Thu, 04 Mar 1999 20:02:29 +0000


One client used "PC"+last six digits of the IP address. e.g. I has
PC034083 and PC034134. ABSOLUTELY TERRIBLE! We could never find each
other's machines.

At  home I use names from the short-lived but terribly fun FRPG
DarkUrthe. (Therrindur, Maldor, Nyrene, Avoncourt, Thrangmar, Ammora)

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

Crossposted-To: alt.os.linux.slackware
Subject: Re: SOCK_PACKET support - where is it? (kernel option)
From: "Bj�rn Mork" <[EMAIL PROTECTED]>
Date: 04 Mar 1999 21:08:21 +0100

"A.G." <[EMAIL PROTECTED]> writes:

> I'm trying to compile dhcpcd, and it's said inthe README that I should make
> sure my kernel was compiled with "support for SOCK_PACKET".
> 
> I tried looking in .config for 2.0.36 and for 2.2.2, and didn't find this
> option.

You cannot use dhcpcd-1.3.x with 2.0.36.

> The closest I could find was "Packet socket", which is CONFIG_PACKET. It's
> the first one in "Networking options" in menuconfig. Is this the one?

Yup.

> There's also one just below it: 'Kernel/User netlink socket'.

Not necessary for dhcpcd.


Bj�rn

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

From: [EMAIL PROTECTED] (Dave Edick)
Subject: Re: Linux POP/IMAP w/ LDAP service?
Date: Fri, 05 Mar 1999 17:59:56 GMT

Forget the UMich server.  They stopped maintaining it a couple years
ago.  Use the OpenLDAP server instead.  It's basically a new version
of the UMich code.  www.openldap.org

On Thu, 04 Mar 1999 15:11:00 +0100, luc <[EMAIL PROTECTED]>
wrote:

Hi,
I am trying the get the umich ldap running. Have read the introduction
to the
SLAPD and SLURPD admin guide. Installed it and by testing getting the
error
"DSA is unwilling to perform."
Suggestions?

Colin Stefani wrote:

> Anyone have any experience getting a POP/IMAP mail server up and running
> with LDAP as a central address for a corporate lan? I just want the LDAP
> server to provide a centralized point for the main address book, so I don't
> have to distribute a new one everytime someone new gets hired or leaves. If
> you have any good on-line references or can reply with some sort of pointer
> to good info on the bestway to do this and a SW package that seems to work
> well together.
>
> I'm using RH 5.2.
>
> thanks,
>
> -colin.stefani
> [EMAIL PROTECTED]


--
/Dave Edick/  dedick at home dot com.
or remove the hates.spam part from the header


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


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