Linux-Networking Digest #172, Volume #12         Tue, 10 Aug 99 08:13:29 EDT

Contents:
  Cyrus, Procmail, and Postfix (Matthew Vanecek)
  Re: win95->linux routing (hawkwynd)
  Routing problems ("Douglas J. Olivier")
  Re: Problem running blizzards diablo through firewall with nat. ("gonZo theGreaT")
  IP-Number for device (Martin Stockhammer)
  Re: Can't get 3c905b working...HELP???? ("gonZo theGreaT")
  Re: Sendmail Delivery Options (Peter McDermott)
  Re: Anyone seen this /var/log/messages output before? (Jan Oosting)
  EnablePlainTextPassword for win2000 (Frank Leprich POP)
  Re: Respawning too fast ("mikes")
  upgrade apache on redhat5.2 (Patrick)
  Anyone who's successfully used kppp -Please help me! ("Jonathan Wilson")
  Re: Linux and Win98 e-mails (hawkwynd)
  IP Masq and ICQ Chat (Alexander Atkin)
  Re: Anyone seen this /var/log/messages output before? ("Russell D. Mora")
  routing problem with 3 NICs ("Amanda Cheung")
  Re: ISDN problem ("Otto Vorsatz")
  Installing an ethernet card ("Hoey")
  Re: Sendmail Delivery Options (Paul Black)
  DHCP and WINS (Dan Neacsu)

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

From: Matthew Vanecek <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup,comp.os.linux.misc,comp.mail.imap
Subject: Cyrus, Procmail, and Postfix
Date: Tue, 10 Aug 1999 04:53:11 -0500

I have cyrus-imapd 1.5.19, procmail, and postfix 19990317 build.  I have
just changed to cyrus from wu imapd.  

How do I get procmail to work with cyrus?  I've tried a short progie
called "deliver-wrapper" as the action line in my .procmailrc, but it
doesn't work if the mail is handled by the MTA.  And you can't call the
cyrus deliver program directly

The .procmailrc works properly, if I run procmail directly, e.g.,

procmail < testmsg.txt

but when mail comes in through postfix, it doesn't get distributed
through the system.

I also looked at a page on getting this to work with sendmail, but
sendmail and postfix don't exactly configure the same way.

Any help would be appreciated.
-- 
Matthew Vanecek
Course of Study: http://www.unt.edu/bcis
Visit my Website at http://people.unt.edu/~mev0003
For answers type: perl -e 'print
$i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);'
*****************************************************************
For 93 million miles, there is nothing between the sun and my shadow
except me. I'm always getting in the way of something...

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

From: hawkwynd <[EMAIL PROTECTED]>
Subject: Re: win95->linux routing
Date: Tue, 10 Aug 1999 09:58:33 GMT


I have a modem in my Win98 pc, and it is connected to the internet. On the
Windows side, you have to assign an IP address to the TCP/IP bound to your
nic card, as well as a gateway for the other machines.

I'm currently responding to this post using my RH linux machine, with
Pine, so I know it works, and I used the same web url as listed below.

You may need to check your configuration settings in the network
neighborhood, as well as verify you have entered the IP addresses of the
other machines in your c:\windows\hosts.sam (or hosts) file.


On Tue, 3 Aug 1999, William M. Stockdell wrote:

> Monte Phillips wrote:
> 
> > This site has a step by step howto for complete setup of samba.  steps
> > for both linux and the win machine.  (and they really work <G>)
> > http://www.sfu.ca/~yzhang/linux/samba/index.html
> > and this one as well
> > http://home.talkcity.com/MigrationPath/maguai/samba.html
> >
> 
> Thanks, but I've been to these pages and they don't seem to address my
> problem.  They seem to assume that the Win95 box just has a NIC, not a
> modem connected to an ISP as well as a NIC.  The problem is routing.  If
> I pulled the modem, I could easily configure Win95 to route properly.  With
> the modem, however, Win95 wants to route all traffic through the modem.  Is
> there no way to specify which network traffic goes to which device?
> 
> Will
> 
> 
> 
> 


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

From: "Douglas J. Olivier" <[EMAIL PROTECTED]>
Subject: Routing problems
Date: Tue, 10 Aug 1999 06:01:23 -0400

I have recently built a new router (Slackware 4.0, kernel v2.2.9) and
although I thought I brought over the config files correctly I now have a
routing problem.

Here are my settings:

/etc/rc.d/rc.inet1
IPADDR="24.218.78.112"  # REPLACE with YOUR IP address!
NETMASK="255.255.252.0" # REPLACE with YOUR netmask!
NETWORK="24.218.78.0"   # REPLACE with YOUR network address!
BROADCAST="24.218.255.255"      # REPLACE with YOUR broadcast address, if
you
                        # have one. If not, leave blank and edit below.#
GATEWAY="24.218.76.1"   # REPLACE with YOUR gateway address!

# Uncomment the line below to configure your ethernet card.
/sbin/ifconfig eth0 ${IPADDR} broadcast ${BROADCAST} netmask ${NETMASK}
/sbin/ifconfig eth1 192.168.1.1 broadcast 192.168.1.255 netmask
255.255.255.0

# Uncomment these to set up your IP routing table.
/sbin/route add -net ${NETWORK} netmask ${NETMASK} eth0
/sbin/route add -net 192.168.1.0 netmask 255.255.255.0 eth1
#if [ ! "$GATEWAY" = "" ]; then
/sbin/route add default gw ${GATEWAY} netmask 0.0.0.0 metric 1
# fi


/etc/hosts
192.168.1.1             frankie.kahunabro.com frankie
192.168.1.2             bigkahuna.kahunabro.com bigkahuna
192.168.1.3             suzie.kahunabro.com suzie
192.168.1.4             jakie.kahunabro.co jakie
192.168.1.5             guest.kahunabro.com guest


route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use
Iface
localnet        *               255.255.255.0   U     0      0        0 eth1
localnet        *               255.255.255.0   U     0      0        0 eth1
24.218.76.0     *               255.255.252.0   U     0      0        0 eth0
loopback        *               255.0.0.0       U     0      0        0 lo
default         24.218.76.1     0.0.0.0         UG    1      0        0 eth0



/etc/rc.d/rc.local
ipchains -F
ipchains -P forward ACCEPT
ipchains -A forward -j MASQ -s 192.168.1.0/24 -d 0.0.0.0/0
ipchains -A forward -i eth0 -s 192.168.1.0/24 -j MASQ
ipchains -A forward -i 24.128.82.84 -s 192.168.1.0/24 -j MASQ
ipchains -A forward -s 192.168.1.0/24 -j MASQ
 # this is the script for my firewall

 /sbin/ipchains -F input
 /sbin/ipchains -F output

 # rules for outgoing packets
 /sbin/ipchains -A output -p TCP -d 0.0.0.0/0 80 -t 0x01 0x10
 /sbin/ipchains -A output -p TCP -d 0.0.0.0/0 23 -t 0x01 0x10
 /sbin/ipchains -A output -p TCP -d 0.0.0.0/0 ftp-data -t 0x01 0x02
#rules for incomming packets
/sbin/ipchains -A input -i lo -j ACCEPT
/sbin/ipchains -A input -i eth0 -j ACCEPT
/sbin/ipchains -A input -i eth1 -j ACCEPT

/sbin/ipchains -P input DENY
/sbin/ipchains -A input -p TCP -s 0.0.0.0/0 ftp-data -d 192.168.1.0/24
1024:59
/sbin/ipchains -A input -p TCP -s 0.0.0.0/0 ftp-data -d 192.168.1.0/24
6010: -
/sbin/ipchains -A input -p TCP -s 0.0.0.0/0 ftp -d 192.168.1.0/24  -j ACCEPT
/sbin/ipchains -A input -p TCP -s 0.0.0.0/0 139 -d 192.168.1.0/24 -j ACCEPT
/sbin/ipchains -A input -p TCP -s 0.0.0.0/0 110 -d 192.168.1.0/24 -j ACCEPT
/sbin/ipchains -A input -p TCP -s 0.0.0.0/0 23 -d 192.168.1.0/24 -j ACCEPT
/sbin/ipchains -A input -p ICMP -j ACCEPT
cho 1 > /proc/sys/net/ipv4/ip_forward


I can access Internet from individual machines, but cannot access other
machines (besides gateway machine frankie).


>From 192.168.1.2:

Pinging 192.168.1.1 with 32 bytes of data:

Reply from 192.168.1.1: bytes=32 time<10ms TTL=255
Reply from 192.168.1.1: bytes=32 time<10ms TTL=255
Reply from 192.168.1.1: bytes=32 time<10ms TTL=255
Reply from 192.168.1.1: bytes=32 time<10ms TTL=255

Ping statistics for 192.168.1.1:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss
Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum =  0ms, Average =  0ms

Pinging 192.168.1.4 with 32 bytes of data:

Request timed out.
Request timed out.
Request timed out.
Request timed out.

Ping statistics for 192.168.1.4:
    Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),
Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum =  0ms, Average =  0ms


Any and all help would be appreciated.

Also on my eth0 I realize my Network address does not match my Hostmask
properly what should this be ?





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

From: "gonZo theGreaT" <[EMAIL PROTECTED]>
Subject: Re: Problem running blizzards diablo through firewall with nat.
Date: Tue, 10 Aug 1999 10:06:47 GMT


> I have configured linux (Suse 6.1) as a dial-up-router to my isp and
connect
> my win-98 workstation to the network-card of the linux.router. I installed
> Firewall and masquerading.
> Everything workes fine. I can surf from the win-98, i can telnet other
hosts
> and so on.
> But Blizards Diablo tells me  the internet connection is poor, or no
> udp-traffic is allowed.
> So i can chat with the other players, but not play games.
> What is wrong ? How can i run diablo through my router ?

You have to get IPMASQADM (if not included in your distribution - simply do
a search for it on WWW)

Be sure to compile all necesary things into your kernel (masquerading,
firewalling, etc),
and the module ip_masq_autofw is loaded (if not compiled into your kernel
too !).
Then do a

ipmasqadm autofw -A -r tcp 6112 6112 -h 192.168.1.2
ipmasqadm autofw -A -r udp 6112 6112 -h 192.168.1.2

where 6112 is the port battle.net is using and 192.168.1.2 should be
replaced with your
local IP to forward to .
For information bout forwarding of other gameports take a look at
http://doncaster.on.ca/~lnevo/masq/games.html

HiH

Gonzo





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

From: Martin Stockhammer <[EMAIL PROTECTED]>
Subject: IP-Number for device
Date: Tue, 10 Aug 1999 08:56:11 +0200

Hi,

I have to setup a dialin-server with isdn. 
Do I have to assign the same IP-Number on the ippp0-
and eth0-device or do I need different IP-numbers?


Thank You

Martin Stockhammer

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

From: "gonZo theGreaT" <[EMAIL PROTECTED]>
Subject: Re: Can't get 3c905b working...HELP????
Date: Tue, 10 Aug 1999 09:52:28 GMT


> Can anyone think of anything to try? any place to look? I'm still
> relatively new to Linux and have very little hardware troubleshooting
> skills on this OS. Very frustrating....I wanted to give Linux a shot
> mostly for the learning experience, but had enough learning from this
> experience.. I'm ready to move on and learn something else. :-)

had a similiar problem with my 3c905b.

Could solve this by deactivating the Plug & Play - function on th card
itself by using the configuration-tool from the 3com-CD !

Maybe this will help !?

Gonzo




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

From: Peter McDermott <[EMAIL PROTECTED]>
Crossposted-To: comp.mail.sendmail,demon.ip.support.unix,demon.tech.unix
Subject: Re: Sendmail Delivery Options
Date: 9 Aug 1999 19:17:05 +0100

In demon.ip.support.unix Paul Black <[EMAIL PROTECTED]> wrote:
> Peter McDermott <[EMAIL PROTECTED]> wrote:
>> 
>> I kill the sendmail demon, and then re-launch it, and everything
>> is fine. So, my question is, is there some way I can stop the
>> punts from attempting to deliver immediately, or does anyone have
>> any other clues what I should do to fix this?

> You could get sendmail to not check the domains, add to .mc file:
> FEATURE(accept_unresolvable_domains)

I'd considered this, though I wanted to avoid it as I
seem to be getting quite a lot of spam recently and
this appears to bounce a fair amount of it. 


> Another way might be to have your own cacheing DNS and use ipchains
> to control access to it, i.e. add/remove rules in ip-down/ip-up.

Ah. I actually am running my own caching DNS (though
I haven't gotten around to setting up ipchains yet.
Could it be that what's happening is that it tries
to resolve the waiting mails before a connection to
demon's dns is established?

Is it essential to firewall my dns? It's not a service
I would have thought likely to be accessed by outside
domains?
 
>> 
>> Question number two, is my suck question. For some reason,
>> I can't seem to run suck from within a script. I've tried to
>> call it from withing ip-up, I've tried it from a script of
>> it's own. Nada. I'm probably missing something completely
>> obvious, but I've no idea what it might be. It runs fine if
>> I just type the same command by hand.

> Is it requiring an environment variable to be set which isn't
> set when called from ip-up?

I don't believe so. I get exactly the same results when I
run the command in a shell script as root, yet it works 
perfectly well if I type it in.

Those enviroment variables are a serious pain in the arse
though. They've caught me out umpteen times in the past.
I'll read the man page again, see if I'm missing anything
obvious.

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

From: [EMAIL PROTECTED] (Jan Oosting)
Subject: Re: Anyone seen this /var/log/messages output before?
Date: Tue, 10 Aug 1999 10:17:38 GMT
Reply-To: [EMAIL PROTECTED]

"Russell D. Mora" <[EMAIL PROTECTED]> wrote:

>  modprobe: can't locate module ppp0:1
>  modprobe: can't locate module ppp0:2
>  .... all the way through to ...
>  modprobe: can't locate module ppp0:49
>
>The ppp link works fine.  I've tried putting "alias ppp0 ppp" in my
>/etc/conf.modules file, but this has no effect.  Has anyone seen
>anything like this before.
>
>Details:- Running RH6.0, Kernel 2.2.5-15 (my own compilation - note that
>standard dist. does not give me this problem but I can't see any kernel
>option that relates to this).
Just to make sure.
Did you do 'make modules' and 'make modules_install' in /usr/src/linux
after compiling the kernel

Greetz,

Jan


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

From: Frank Leprich POP <[EMAIL PROTECTED]>
Subject: EnablePlainTextPassword for win2000
Date: Tue, 10 Aug 1999 12:20:59 +0200

high all,

who know=B4s where to put the entry into the registry of win2000 for
SendPlainTextPassword ?

thank=B4s a lot
-- =

       >>>  Server- und Technik-Support  <<<
________________________________________
FRANK LEPRICH        at POP Point of Presence
mail: [EMAIL PROTECTED]                     Wendenstra=DFe 375
tel.: 040/25 19 200                 20537 Hamburg

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

From: "mikes" <[EMAIL PROTECTED]>
Subject: Re: Respawning too fast
Date: Mon, 9 Aug 1999 21:10:52 -0500
Reply-To: "mikes" <[EMAIL PROTECTED]>

I have a solution that worked for at least one of my Linux machines (my
modemless SMB server). I found out that that getty (or is it uugetty?) had a
problem with case sensitivity.

In Paul Sery's Linux Network Toolkit (ISBN 0-7645-3146-8) page 498 says to
add:
s0:3456:respawn:/sbin/uugetty ttyS0 3840 vt100

That line will cause respawning errors until you  correct it. It should
read:

s0:3456:respawn:/sbin/uugetty ttyS0 3840 VT100

Note the caps in VT100.

According to the Howto:
http://www.yggdrasil.com/bible/HOWTO-src/Serial-HOWTO.html#toc1 It suggests
in part 15.3 that "Using the wrong syntax or device names will cause serious
problems"


Now.. if I can only get the same solution worked out for my firewall. My
firewall is a 486/DX2-66 w/ 510M HDD 32M RAM, and an internal USR 28800
modem. Even though I correct the line in the /etc/inittab file, I still get
respawn errors Section 15.3 of the aforementioned Howto suggests "Make sure
your modem is configured correctly"

Any suggestions here? Can I initialize a modem during boot???

-Mike



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

From: [EMAIL PROTECTED] (Patrick)
Subject: upgrade apache on redhat5.2
Date: 10 Aug 1999 10:29:30 GMT

Hello, I am using Redhat 5.2
I would like to upgrade to apache 1.3.6
After installation, httpd is installed in /usr/local/apache/bin/
I need to modify S85httpd so that the machine runs httpd each time booted
up
but i find that S85httpd contains "daemon httpd",
i believe this statement start the apache server
but how can I modify S85httpd so that it runs my
/usr/local/apache/bin/httpd
instead of running /usr/sbin/httpd


--

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

From: "Jonathan Wilson" <[EMAIL PROTECTED]>
Subject: Anyone who's successfully used kppp -Please help me!
Date: Tue, 10 Aug 1999 10:46:13 GMT

I've posted various forms of this question on 5 groups, but no one has
answered yet. I need someone to help me get Linux-Mandrake running KDE or
GNOME on the Internet. They say L-M is very much like RH so please don't
think you can't help just because you don't run Mandrake!

(this is copied from comp.os.linux.networking)

Hi,
I need some assistance with kppp. I set my connections up using linuxconf.
Kppp will dial the modem (Creative Labs Modem Blaster) and start to log in,
but in the end it reports:

"Error
    Timeout expired while waiting for the PPP interface to come up!"

Additionally, I think it's a problem with kppp (I'm not sure though),
because when I use the connect in linuxconf it doesn't complain. But I don't
know how to test that to make sure (I've only had it installed for 3 days)

I'm using Linux-Mandrake 6.0

I don't have to use kppp, but what else am I going to do? I tried using
minicom, and I think it worked, but I couldn't get Netscape or any thing
else to work.

I'm also having trouble with floppies. When I try to mount one (or do
anything with it, for that matter) I get the message "Error: you must
specify a filesystem type" but Linux mandrake comes with controls that are
supposed to auto mount and auto detect the filesystem type.

If there's any one who has successfully used Linux-Mandrake or Red Hat (or
just KDE or GNOME) to connect to the Internet and other basic things
(mounting floppies, CD, zip
drives, setting up Ethernet (Samba), adding and removing programs), that
would be willing to correspond with me, I'd REALLY appreciate it.

Thank in advance.
  JW
[EMAIL PROTECTED]






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

From: hawkwynd <[EMAIL PROTECTED]>
Subject: Re: Linux and Win98 e-mails
Date: Tue, 10 Aug 1999 10:43:31 GMT


I have a small network, which has my Win98 webserver connected to the
internet through a 1-way dialup cablemodem. I was not sure I could get the
cablemodem working in Linux, so I opted for the long route.

Using fetchpop, I am able to get my mail with some pretty fancy help from
Wingate. With this, I am able to send/recieve email and news on my Linux
workstation, without bogging the windows machine down handling the mail.

Perhaps this method would suit your needs?

To my knowledge, I know not of a solution that will download and forward
mail to the linux machine, without using an NT Exchange server.


On Tue, 3 Aug 1999, KiloMan wrote:

> We have a RED-HAT 6.0 Machine and A windows 98 machine connected together.
> We have only ONE POP account and we like to have the setup like following:
> 
> 1. though not online all the messages sent from WIN98 machine to be sent to
> Linux machine and spooled. When the linux machine goes online all the
> messages must be sent.
> 
> 2. when downloading mails , all the mails must be stored in the linux
> machine and later the mails should be seen by win98 offiline.
> 
> 3. internal E-Mail messages from  linux to win98 and win98 to linux must be
> sent/reecived.
> 
> Please send us the methods and codes by which this can be done .
> 
> 
> 
> 


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

From: Alexander Atkin <[EMAIL PROTECTED]>
Subject: IP Masq and ICQ Chat
Date: Tue, 10 Aug 1999 11:59:15 +0100

I am running a router with IP masquerading on my LAN.  I know it doesnt
work with ICQ filetransfer (downloading to me) but I am also having
problems sometimes with the ICQ chat system especially if its with more
than one person.
It seems to timeout and so tells me people have gone off the chat when
they have not.  Other times when joining or starting a chat some people
will NEVER show up yet other people on the chat can see them.  If I
cannot see someone they cannot see me either and it appears to be
trouble with the way ICQ does a direct connection.
Other times it works fine though and recently and had a chat with 7
other people (the most I ever I have done) and it worked perfectly.

Is this a problem with my router setup or with my ISP being too slow as
it often lags and stalls doing normal Internet stuff like Web Surfing or
FTP.

If its a problem with my router could you give me some suggestions on
how to fix it, the ICQ kernel patch wouldnt compile for me so thats not
really an option unless you can tell me how to get it working under
Slackware 4.0 (Kernel 2.2.6).

Thankyou for your help,

Alex.


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

From: "Russell D. Mora" <[EMAIL PROTECTED]>
Subject: Re: Anyone seen this /var/log/messages output before?
Date: Tue, 10 Aug 1999 22:45:14 +1200
Reply-To: [EMAIL PROTECTED]

Jan Oosting wrote:

> Just to make sure.
> Did you do 'make modules' and 'make modules_install' in /usr/src/linux
> after compiling the kernel
>
> Greetz,
>
> Jan

Yep, I did those two.  The modules are in the correct place
(/lib/modules/2.2.5-15/net) and are loaded when the ppp starts up (lsmod
reports slhc and ppp), and the ppp connection works fine (I'm using it for
this).  I'm really quite stumped as to what is going on.  Does anyone know
what the significance of the numbers after the "ppp0:" is?  I assume this is
just attempt number.

Maybe I'll just upgrade the kernel to 2.2.10 and see if it goes away....???

BTW, thanks for the reply.

Regards,
Russell Mora.


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

From: "Amanda Cheung" <[EMAIL PROTECTED]>
Subject: routing problem with 3 NICs
Date: Tue, 10 Aug 1999 19:00:04 +0800

I have a RedHat6.0 DNS server with 3 NIC, one to the internet, one to our
web/email servers (sub-class C network) and the other to our private
network. All interfaces come up fine and I've enable ip_forward already.
I also put

ipchains -P forward DENY
ipchains -A forward -s 192.168.1.0/24 -j MASQ

making our private network sees the outside world. No other ipchains
commands added.

223.15.133.126 is the router to our ISP
223.15.133.120 (eth0) is the interface to the internet
223.15.133.62  (eth2) is the interface to our server-subnetwork
192.168.1.80 (eth1) is the interface to the private network

My routing table looks like this,

Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt
Iface
192.168.1.80    0.0.0.0         255.255.255.255 UH        0 0          0
eth1
223.15.133.62   0.0.0.0         255.255.255.255 UH        0 0          0
eth2
223.15.133.120  0.0.0.0         255.255.255.255 UH        0 0          0
eth0
223.15.133.64   0.0.0.0         255.255.255.192 U         0 0          0
eth0
223.15.133.0    0.0.0.0         255.255.255.192 U         0 0          0
eth2
192.168.1.0     0.0.0.0         255.255.255.0   U         0 0          0
eth1
127.0.0.0       0.0.0.0         255.0.0.0       U         0 0          0 lo
0.0.0.0         223.15.133.126  0.0.0.0         UG        0 0          0
eth0

192.168.1.0 network can access the outside world. I have a machine connected
to eth2 with ip 223.15.133.5, it can ping eth0 of the DNS server but not the
outside world and visa vesa.

What have I missed? How do I make our server-subnetwork sees the outside
world ?
Thanks in advance.

Mandy



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

From: "Otto Vorsatz" <[EMAIL PROTECTED]>
Subject: Re: ISDN problem
Date: Tue, 10 Aug 1999 12:33:16 +0200

Try to run Kernel 2.2.10 . 2.2.5 seems to have many bugs. (aha1542 and
isdn.o never work
together ...)

>ISDN subsystem Rev 1.55/1.47/1.55/1.33/1.10/1.2 loaded
>Compaq ISA config port 3c0 already in use
>Card Compaq ISA not installed !
>/lib/modules/2.2.5-15/misc/hisax.o : init_module : Device or resource busy.
>ISDN-subsystem unloaded
>
>If I try changing the io values they are always in use.
>I don't know why, as I say i'm new, but if anybody could help in any way it
>would be much appreciated.
>
>Regards,
>
>Paul



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

From: "Hoey" <[EMAIL PROTECTED]>
Subject: Installing an ethernet card
Date: Tue, 10 Aug 1999 07:12:02 -0400

Greetings -

I am a linux novice trying to install an ethernet card in a linux machine.
The hardware is a "thelinuxstore.com" pre-install machine with Red Hat 6.0.
The network card is an Addtron AEF-360TX (PCI).

I've installed the card, and have a light on both the card and the hub.
During Boot-Up it tries to initialize or recognize the card and reports
"Failed". I've tinkered with ifconfig and some of the control panel-type
utilities, but I'm getting nowhere. I'm blundering around in there like a
bull in a china shop, and something may break soon!

Is that card even supported? Should I be using a certain tool or procedure
to initialize the interface? Do I need some type of driver specific to the
card?  Many thanks in advance!

bill hoey
b0mbshelter industrial technologies
[EMAIL PROTECTED]








  -----------== Posted via Newsfeeds.Com, Uncensored Usenet News ==----------
   http://www.newsfeeds.com       The Largest Usenet Servers in the World!
======== Over 73,000 Newsgroups = Including  Dedicated  Binaries Servers =======

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

From: Paul Black <[EMAIL PROTECTED]>
Crossposted-To: comp.mail.sendmail,demon.ip.support.unix,demon.tech.unix
Subject: Re: Sendmail Delivery Options
Date: Tue, 10 Aug 1999 12:11:07 +0100

Peter McDermott <[EMAIL PROTECTED]> wrote:
> Is it essential to firewall my dns? It's not a service
> I would have thought likely to be accessed by outside
> domains?

The firewall isn't to protect DNS, it's to prevent access by your
internal machine/network. The reason I do it is to speed things up
when I'm not connected to the Internet. If DNS is running all the
time, some applications pause while a DNS lookup times out. By
using the following two commands:
/sbin/ipchains -D input -j REJECT -p udp -d gammon domain
/sbin/ipchains -I input -j REJECT -p udp -d gammon domain
I effectively turn off DNS (it's the same as stopping then
starting, only quicker) and it preserves some cached DNS data which
also speeds things up later on (gammon is the gateway machine).

Paul

[comp.mail.sendmail removed from followups]

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

From: Dan Neacsu <[EMAIL PROTECTED]>
Subject: DHCP and WINS
Date: Tue, 10 Aug 1999 14:24:47 +0300

I use dhcpd from www.isc.org on a Linux box, a NT40 server and a lot of
Win95 clients. Everithing is fine except I don't know how to set WINS
server via DHCP for Win95 clients.


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


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