Linux-Networking Digest #868, Volume #11         Mon, 12 Jul 99 02:13:34 EDT

Contents:
  rt18139 ethernet ([EMAIL PROTECTED])
  Re: pppd error messages during connection - help ("John D. Verne")
  Re: Why won't my modem hang up? ("Daniel Mitchell")
  Broadcast IP config help ([EMAIL PROTECTED])
  Writing program to inspect the header of IP packet (Ng Kok Leong)
  rtl8139 network adaptor ([EMAIL PROTECTED])
  DHCP? ("David A. Ferguson")
  Re: RedHat v6.0 & dhcp client ??? ("Michael D. Schleif")
  Re: Coffee MLM nail this ass (Monte Phillips)
  RH 6.0 and RH SECURE WEB SERVER 2.0 (Dwayne Croteau)
  Re: Networking(Newbie) (Jeff Iverson)
  Re: SMNP (Bryan)
  Re: How to get IP # of eth1 in script?? (Eric Cartman)
  Re: 3Com 3c900B - Compatible ? (Sonny)
  Re: PPP dialer Applet (HOW TO USE IT?) (Todd Knarr)
  Re: Machine disappears till ping? ("Ricky J. Sethi")
  Re: NFS problems in Redhat Linux 6 ("Ricky J. Sethi")
  newbie needs help starting over setting up network/IP masq (bjack)

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

From: [EMAIL PROTECTED]
Subject: rt18139 ethernet
Date: Mon, 12 Jul 1999 03:50:23 GMT

I have just upgradeed to redhat linux 6.0 and also installed a rtl8139
ethernet apaptor.  My problem is that even though this card is
supported, its kernal module does not show up in linux config.  I have
found the file rtl8139.o in the directory /lib/.../module/net.  If
anyone knows how to fix this please help.

Thanks,
JEff Holden


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

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

From: "John D. Verne" <[EMAIL PROTECTED]>
Subject: Re: pppd error messages during connection - help
Date: Sun, 11 Jul 1999 16:12:53 -0400

[EMAIL PROTECTED] wrote:
> 
> I'm running redhat 5.1 and I have been trying to connect to the net
> using xisp and wvdial. Both give errors which I couldn't solve I need
> help.
> 1. xisp disconnects after a few seconds with messages pppd dies
> ///
> 2. When I rum wvdial, It gives me error messages in /var/log/messages
> directory : a. localhost pppd[582]failed to open /dev/ttyS1:
> input/output error. and
>    b. localhost pppd[582] This system lacks kernel support for ppp.
> This could be because the ppp kernel is not loaded or because the
> kernel is not configured for ppp.
> 
> I have tried everything but no luck. I need help....
> 

Ummm, you _do_ have ppp support compiled into the kernel, don't you?

This is a funny one, because your box will do everything up to
connecting with the peer, but then fail upon ppp negotiation.

You _must_ have a kernel compiled with networking support, as well as
any of the network protocols you may want to use, such as ppp, slip
&etc.

John

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

From: "Daniel Mitchell" <[EMAIL PROTECTED]>
Subject: Re: Why won't my modem hang up?
Date: Sun, 11 Jul 1999 22:59:20 -0500

But I *am* using KPPP.  By the way, I don't know if this is useful
information, but if I open minicom with a configuration set other than the
default, the online indicator reads Offline, but when I try to dialout I get
the "your already online ya idiot!" message so something seems to be wrong
with the indicator.  Thanks again for the help,

Daniel

Robert Burnham wrote in message ...
>It does that on mine too....I switched to KPPP and it works fine.
>
>--
>-=Robert Burnham=-
>Homepage=  http://www.bobbb.com
>Check out my live webcam too.
>Daniel Mitchell <[EMAIL PROTECTED]> wrote in message
>news:7m9lpd$h5a$[EMAIL PROTECTED]...
>> Thanks for reading...
>>
>> I just installed Linux-Mandrake 6.0 and am having problems with my modem.
>> For some reason, the modem seems to think that it is "online" even though
>it
>> clearly is not.  This results in "device busy" messages whenever I try to
>> use kppp and the inability to dialout from minicom (as I'm already
>> "connected").
>>
>> When I instruct minicom to hangup the modem, the online/offline indicator
>in
>> the lower right temporarialy changes to Offline, but reverts back to
>Online
>> within a few seconds.  While "online," if I press any of the keyboard
keys
>> the indicator changes to offline and then immediately back to online (it
>> also resets the time spent online value).
>>
>> I've looked around the internet for help, and the two possibilities seem
>to
>> be that A) DCD is incorrectly set (currently set to no DCD) or B) I'm
>having
>> an IRQ problem (possibly a conflict with another device).
>>
>> On a similar topic, I used to have problems of this same nature under
>> windows (I'd love to invest in a new external modem, but I'm leaving for
>> college within a month and don't have a computer to take with me).  My
>modem
>> has 2 ports for a phone line, and I would constantly have to pull the
line
>> out of one and move it to the other because the modem would, upon
>> disconnect, keep the line open.  Only by switching ports would the modem
>> hang up.
>>
>> Can someone please tell me what is happening with my modem and what I can
>do
>> to correct the problem?  Thanks in advance,
>>
>> Daniel
>>
>>
>>
>>
>
>



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

From: [EMAIL PROTECTED]
Subject: Broadcast IP config help
Date: Mon, 12 Jul 1999 03:49:50 GMT

hello all.

I just set up debian 2.1 today to share provide internetaccess to to my
other computer on a home network.  this box has two network cards, an
Intel EtherExpressPro and a Linksys that uses the tulip driver.

the intel card runs the cable modem { eth1 } and the linksys card runs
on the local network { eth0 }

I got the internet access up and modified /etc/init.d/network to start
the second card  On  boot, i get the message, eth0: Broadcast: unknown
host.

I am not sure what I am doing wrong to get this message.  Attached is my
startup script with my internet ip address scratched out.

Thanks for any help, Doug

#file /etc/init.d/network
#! /bin/sh
ifconfig lo 127.0.0.1
route add -net 127.0.0.0
IPADDR=xx.xx.xx.xx
NETMASK=255.255.255.0
NETWORK=xx.xx.xx.0
BROADCAST=xx.xx.xx.255
GATEWAY=xx.xx.xx.xx
ifconfig eth1 ${IPADDR} netmask ${NETMASK} broadcast ${BROADCAST}
route add -net ${NETWORK}
[ "${GATEWAY}" ] && route add default gw ${GATEWAY} metric 1

ETH0_IPADDR=192.168.1.253
ETH0_NETMASK=255.255.255.0
ETH0_NETWORK=192.168.1.0
ETH0_BROADCAST=192.168.1.255
ETH0_GATEWAY=
ifconfig eth0 ${ETH0_IPADDR} netmask ${ETHO_NETMASK} broadcast
${ETH0_BROADCAST}
route add -net ${ETH0_NETWORK}
[ "${ETH0_GATEWAY}" ] && route add default gw ${ETH0_GATEWAY} metric 1


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

From: Ng Kok Leong <[EMAIL PROTECTED]>
Subject: Writing program to inspect the header of IP packet
Date: Mon, 12 Jul 1999 11:43:29 +0800

Hi,

I need to write a program to inspect the headers of the IP packets.
I believe SOCK_RAW in the winsock can be used for the
purpose. I have tried using a TCP and UDP client with SOCK_STREAM
and SOCK_DGRAM sockets in order to connect to the server
whose socket is created using TCP_RAW with IPPROTO_TCP and
IPPROTO_UDP respectively. But the fails to connect to the server.
These clients used have been tested to operate well with their respective
servers with SOCK_STREAM and SOCK_UDP sockets.

I think there is some problem in my setup for the SOCK_RAW server as
I made use of the same procedure used in the case of TCP and UDP.
Can somebody advice me what is the exact way to set up the connection
when SOCK_RAW is to be used.

Thank you in advance.

Kok Leong


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

From: [EMAIL PROTECTED]
Subject: rtl8139 network adaptor
Date: Mon, 12 Jul 1999 03:43:37 GMT

I have just upgraded to redhat 6.0 from 5.2 and
also installed a rtl8139 baseed network adaptor.
THe problem I have is the Kernal Module for the
rtl8139 does not show up in the list in linux
conf.  I can find the rtl8139.o file in the
/lib/.../modules/net directory but can not see it
in linux conf.  If anyone knows how to fix this
please post or give me an email.

Thanks,
[EMAIL PROTECTED]


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

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

From: "David A. Ferguson" <[EMAIL PROTECTED]>
Subject: DHCP?
Date: Mon, 12 Jul 1999 00:21:11 -0400

My RH6.0 system is on a network with a DHCP server.  Everything seems to
work pretty well (IP and default gateway) gets assigned, but the Linux box
complains if I don't put its hostname and IP in the /etc/hosts file.  Well
doesn't this go against the whole idea behind DHCP?  I mean, by putting its
IP address in hosts, it forces me to set the DHCP server to always assign
the same IP to my Linux box.  In addition, the nameserver doesn't seem to
get assigned correctly to the Linux box via DHCP (it works for the
Win98/2000/NT machines on the LAN).

Ideas?  Thanks,
David Ferguson




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

From: "Michael D. Schleif" <[EMAIL PROTECTED]>
Subject: Re: RedHat v6.0 & dhcp client ???
Date: Sun, 11 Jul 1999 23:01:37 -0500

I appreciate the responses; but, this is *not* a cablemodem issue.

The Edge v0.7 router sits between this system and the cablemodem.  This
router serves as dhcp client to the cablemodem (which works OK) and as
dhcp server for all systems on my internal network.  The latter works OK
with all other systems, and works OK with *all* other bootup
instantiations for this test box.  In fact, if I configure the RH6
system for hard-coded IP address, then all is OK -- I have InterNet
access.  So, this is an issue on principle -- I insist on getting this
dhcp stuff to behave as expected ;)

Either there is something misconfigured with RedHat v6.0, or dhcp at
Linux v2.2.5, itself, is misconfigured.  Unfortunately, the HOWTO's
still mostly apply to dhcp of several years ago.  This latest stuff,
from the dhcp-client perspective, appears to be rather poorly
documented.

Or, what am I missing?

Don Hawbaker wrote:
> 
> I agreed with you.  There is a problem with dhcpcd (or the way that one gets
> to it) at least for cable modems.  I had to put dhcpcd in rc.local, turn it
> off of auto to get it to work, absolutely would not work if left in boot up.
> Works great if called from command line.  There is something called pump
> that enters into this, but I have not figured out how all of this works yet.
> In the alt.os.linux.mandrake newsgroup someone said that adding - h
> $HOSTNAME to the line if/sbin/pump -i $DEVICE (then add) -h $HOSTNAME in the
> /sbin/ifup file would solve the problem, but I have not tried that yet.
> Post was dated July 08 2:49 P.M.  I have disconnected the Linux machine from
> the cable modem for now, using it in dialup, with this W98 machine on the
> modem.  I have to change a configuration file at the ISP, the MAC address,
> everytime I switch machines, so it's a little hassle to switch.  I would be
> interested to see if someone has the answer to this.  I would also like to
> know if W98 SE with its local networking will work with boxes besides W98,
> like Linux?  If so, then I want to put them both on the modem.  I am
> thinking of getting a copy anyhow for other reasons.

-- 

Best Regards,

mds
mds resource
888.250.3987

"Dare to fix things before they break . . . "

"Our capacity for understanding is inversely proportional to how much we
think we know.  The more I know, the more I know I don't know . . . "

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

From: [EMAIL PROTECTED] (Monte Phillips)
Subject: Re: Coffee MLM nail this ass
Date: Mon, 12 Jul 1999 03:50:50 GMT

Just forward this crap to his email address.  See what he thinks of
his own spam.


On Mon, 12 Jul 1999 03:35:53 GMT, [EMAIL PROTECTED] wrote:
>A coffee mlm located at
>http://www.odellcoffee.com/drn187.htm
>may make some significant deal Monday
>or Tuesday. Has been operating over 2 years.
>Personally have made only $10.00, and
>was number 187 now there are over  800.
>I never made any attempt to work at
>this so it is no surprize that I have made so
>little. . I actually dislike MLM, but you may want tor just keep track of this one.   
> 


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

From: Dwayne Croteau <[EMAIL PROTECTED]>
Subject: RH 6.0 and RH SECURE WEB SERVER 2.0
Date: Mon, 12 Jul 1999 05:19:35 GMT

Hi, 

I have a problem with RH 6.0 and RH SECURE WEB SERVER 2.0.  

I am setting up a secure web server on a machine hosting multiple name
based virtual domains.  I had this configuration with no ssl working
with no problems.  I installed all the updates for RH 6.0 according to
the information on RH's page about the secure web server.  I then
proceeded to install the secure web server off the cd.  It didn't
succeed because it found newer versions of the programs and libraries it
is dependant on.  So I proceeded to install it with rpm from the command
line.  The installation was successful.  When I restarted apache, it
failed and gave me an error message (forgive me please for not writing
it down) something to the effect that "mod_ssl.c was an invalid
module".  So I uninstalled it to restore it to its original
configuration before I installed the secure web server.  I had to
reinstall apache from the  RH 6.0 cd.  Once I did this, it ran the
default configuration with no problem.  I configured my name based
virtual domains, and when I restarted apache, it failed with no error
message.  I checked it's status by typing "httpd status -S" and it told
me this "httpd dead but subsys locked"  I removed the name based virtual
domains and it started successfully.  Now when I try to browse the web
with netscape, it does not connect to any websites internal or abroad. 
I can not ping this machine, nor can I telnet into it.  Its networking
system is completely screwed.  I could really use some insight into this
from someone who know's what this is all about.

Thanks,
 
Dwayne Croteau

=============================
Prolinux Corporate Consulting
(403)293-2382
http://www.prolinux.to  
[EMAIL PROTECTED]
=============================

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

From: [EMAIL PROTECTED] (Jeff Iverson)
Crossposted-To: 
alt.os.linux,alt.os.linux.caldera,linux.redhat.misc,microsoft.public.win98.networking,redhat.general,redhat.networking.general
Subject: Re: Networking(Newbie)
Date: Sun, 11 Jul 1999 04:41:26 GMT
Reply-To: [EMAIL PROTECTED]

Here's a good book that I think will help:

Linux Network Toolkit
http://www.amazon.com/exec/obidos/ASIN/0764531468/iversonsoftwarecA

On Fri, 9 Jul 1999 10:17:37 -0400, "Jim and Joan"
<[EMAIL PROTECTED]> wrote:

>i am trying to network my RedHat Linux computer to my home network. Can
>anyone suggest a good book to start with or any good web sites to research
>this topic.
>
>Thanks
>
>jim
>

Kind Regards,
Jeff Iverson
-- 
Iverson Software Co.  507-235-9209 - voice
418 N. State St. #7   507-235-8835 - fax
Fairmont MN  56001    http://www.iversonsoftware.com/

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

From: Bryan <Bryan@[EMAIL PROTECTED]>
Subject: Re: SMNP
Date: Mon, 12 Jul 1999 04:42:00 GMT

see:

        http://ucd-snmp.ucdavis.edu


Marcio Lima <[EMAIL PROTECTED]> wrote:
: Thanks for the answer!

: I have a  frame relay card for Linux and I would like to set up some
: parameters remotelly like DLCIs, routes, firewall, etc through OpenView
: (NetView also). Does linux have a SMNP server ? Is there a way to change
: these parameters using the SMNP server ?  I mean, given that the card does
: not have a specific MIB can I create one for it and be able to use from a
: OpenView's workstation ?

: Marcio
: [EMAIL PROTECTED]

: Ratz wrote in message <[EMAIL PROTECTED]>..
: >Marcio Lima wrote:
: >>
: >> I would like to manage my Linux Box through one of the network management
: >> systems (OpenView, NetView, etc). Does anybody have any experience doing
: >> that ?
: >>
: >> Marcio Lima
: >> [EMAIL PROTECTED]
: >
: >Hi
: >
: >Yes, actually. I'm just installing and configuring it on a few Systems
: >(Linux [good] Solaris [bad, could be my bad knowledge]), Switches and
: >Routers. So what do you want to know about it?
: >
: >ratz



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

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

From: [EMAIL PROTECTED] (Eric Cartman)
Subject: Re: How to get IP # of eth1 in script??
Date: Mon, 12 Jul 1999 04:42:11 GMT

Andrey,

Thanks a lot, this was just what I needed.




On Fri, 9 Jul 1999 21:45:58 -0700, "Andrey Smirnov" <[EMAIL PROTECTED]>
wrote:

>Try the following:
>
>ifconfig eth1 | grep addr: | awk -F " " '{print $2}'| awk -F : '{print $2}'
>
>Good luck!
>


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

From: Sonny <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.hardware
Subject: Re: 3Com 3c900B - Compatible ?
Date: Mon, 12 Jul 1999 04:47:34 GMT

It works just fine.  Use the 3com59x driver.
Sonny

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

From: Todd Knarr <[EMAIL PROTECTED]>
Subject: Re: PPP dialer Applet (HOW TO USE IT?)
Date: 12 Jul 1999 04:59:22 GMT

sdyer <[EMAIL PROTECTED]> wrote:
>                 Hi! I am using Redhat 6.0 and I have gotten my network
> to my isp working.
> I am only able to get my connection going via Linuxconfig. I would like
> to be able to
> using the PPP dialer applet but cannot find any information about this.
> Can anyone point
> me to some information about configuring this? Also if it take any more
> configuration to
> get a user to dial up that information would be appriciated also!


If you're talking about the Gnome PPP Dialer applet, you need to
create two scripts ( /etc/ppp/ppp-on and /etc/ppp/ppp-off ) that
contain the commands to bring the interface up and down. I use
these:

/etc/ppp/ppp-on:

        #!/bin/sh
        /sbin/ifup ppp0
        exit 0

/etc/ppp/ppp-off:

        #!/bin
        /sbin/ifdown ppp0
        exit 0

-- 
Collin was right. Never give a virus a missile launcher.
                                -- Erk, Reality Check #8

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

From: "Ricky J. Sethi" <[EMAIL PROTECTED]>
Subject: Re: Machine disappears till ping?
Date: Sun, 11 Jul 1999 21:54:00 -0700

Hi John,

I was just wondering if you're using the tulip driver?  I have the same
problem (it's actually even worse... it was a bear of a problem that many
people seem to have and I'll post my (crappy) solution to it soon) and I
suspect it's my LinkSys EtherFast 10/100 that's the root... do you have the
same card (or at least the driver)?  If so, a upgrade to the latest driver
*might* help (didn't for me :).

Adios,


Rick.

John Coppens <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> Hi...
>
> Strange problem: our web server, www.uccor.edu.ar, at times disappears
> and cannot be reached from the outside (not by www.uccor.edu.ar nor
> by its IP, not by httpd nor other means).
>
> When I connect to another machine on the net there, and do a ping from
> this machine to the webserver, everything wakes up, and the webserver
> is suddenly visible again.
>
> Any suggestions?
>
> Thanks,
> John




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

From: "Ricky J. Sethi" <[EMAIL PROTECTED]>
Subject: Re: NFS problems in Redhat Linux 6
Date: Sun, 11 Jul 1999 21:59:47 -0700


Andreas Metzler <[EMAIL PROTECTED]> wrote in message
news:7ma1b9$2tse$[EMAIL PROTECTED]...
[SNIP]
> hello!
> on some machines its impossible to compile knfsd as module with a
> vanilla 2.2.10 kernel. the redhat 2.2.5 kernelsources are patched
> to allow this.
> three possible solutions:
> 1) switch back to redhat's 2.2.5
> 2) compile knfs into the kernel instead of as module
> 3) apply som patches (eg: alan cox's ac10)
>      cu andreas

Hi Andreas,

Thanks for the help, guys!  As I just told someone else, you guys are
great... MUCH better than Red Hat's tech support (I haven't heard back from
them in over a week and a half about this very problem!).  Compiling knfs
(after turning on the development option... thanks Ken) did the trick
beautifully!  If ya ask me, Red Hat should be kicking in a couple bucks to
all the kind souls on the newsgroups who take time from their busy schedules
to help out fellow linux-ites.

Thanks again!


Rick.





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

From: [EMAIL PROTECTED] (bjack)
Subject: newbie needs help starting over setting up network/IP masq
Date: Mon, 12 Jul 1999 04:53:33 GMT


Ok I'm going to nuke everything and reinstall RH6.0.

Here's my stats:
dual ne2000 NICs
server private IP: 10.0.0.1  eth0
server public IP: 24.x.x.x     eth1

i had added these lines to my rc.local file:
ipchains -A forward -j MASQ -s 10.0.0.0/24 -d 0.0.0.0/0
ipchains -P forward DENY
ipchains -P forward masquerade
echo 1> /proc/sys/net/ipv4/ip_forward

the line 'ipchains -P forward masquerade' returned a generic error
message.

need to know how to set up *everything*!!!

and... am i supposed to recompile my kernel to handle dual NICs better
or something??

thanks!

Brandon


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


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