Linux-Networking Digest #745, Volume #11 Thu, 1 Jul 99 14:13:39 EDT
Contents:
Re: How reset network card setting on the fly? ([EMAIL PROTECTED])
Re: Kernel 2.2.x, very slow networking (John Stevens)
Davicom DM9102 NIC 2.2 Level Driver ("Karl McMurdo")
Re: D_Link ethernet cards and linux ([EMAIL PROTECTED])
Perl Script ([EMAIL PROTECTED])
Re: Could Microsoft Cheat On The New Mindcraft Benchmark? (was: Mindcraft Retest
News ("Stuart Fox")
Boca Stuff ([EMAIL PROTECTED])
Re: Why not C++ (Timo Tossavainen)
Re: How reset network card setting on the fly? ("John Hardin")
Re: VPN across a Linux Firewall ("John Hardin")
Re: Possible to direct connect NT Wks and RH6 with crossover cable? (Mike)
Re: Perl Script ([EMAIL PROTECTED])
Re: Perl Script ([EMAIL PROTECTED])
Re: External ISDN Modem (Chris Harshman)
Good Homepage ("netboss")
Re: Newbie network question. ("Markus Jahn")
hangs after appletalk ("Serge Dutremble")
Re: Problem configuring PCMCIA Network card ("Max Barawid Jr.")
Re: Linux FTP install via Wingate on 98 (Jonathan Guthrie)
Re: Perl Script (Michael Kelly)
Re: External ISDN Modem (Mark Evans)
----------------------------------------------------------------------------
From: [EMAIL PROTECTED]
Subject: Re: How reset network card setting on the fly?
Date: Thu, 01 Jul 1999 13:57:23 GMT
On Wed, 30 Jun 1999 18:04:09 GMT, [EMAIL PROTECTED] wrote:
>I am using Red hat 6.0. If I change the network card settings
>in /etc/sysconfig/network-scripts/ifcfg-eth0 and, say, change the IP
>address. Is there anyway to make Linux reset my newly changed
settings
>without rebooting?
You could also switch to runlevel 1 and then back:
init 1
init x (where x is the previous runlevel; on my machine - without X -
it's 2)
Greetinx,
Albert
------------------------------
From: [EMAIL PROTECTED] (John Stevens)
Subject: Re: Kernel 2.2.x, very slow networking
Date: Thu, 01 Jul 1999 16:22:41 GMT
On Thu, 01 Jul 1999 05:22:46 GMT,
Reality is a point of view <[EMAIL PROTECTED]> wrote:
>Have you tried this?
>
>echo 0 > /proc/sys/net/ipv4/tcp_timestamps
>echo 0 > /proc/sys/net/ipv4/tcp_window_scaling
Yup. Thanks for the suggestions, but this did nothing to change the
situation. Still running about 24 KBytes/s on a large (48 MBytes)
FTP transfer.
The hardware hasn't changed since both boxes were running 2.03x kernels
(RH 5.2), so I don't suspect hardware problems, or MAC or IP collisions.
Any more suggestions, any one?
John Stevens.
------------------------------
From: "Karl McMurdo" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.hardware
Subject: Davicom DM9102 NIC 2.2 Level Driver
Date: Thu, 1 Jul 1999 10:15:13 -0600
Has anyone come across a a driver for this Network Card(Chipset, whatever) I
have a driver that works reliably with a 2.0.35 kernel, but when I try
compiling it under 2.2 I get a few errors (dev_tint, dev_kfree
incompatabilities) after examining a couple 2.2 drivers I was able to make
the changes to get it to compile and it works, but it is far from reliable
causing system crashes whenever network traffic gets too high. I tried
changing the mode from Full Duplex to Half Duplex with no better results.
It's been years since I did any device driver programming, and that was for
speech synthesis not networking so any help would be appreciated.
------------------------------
From: [EMAIL PROTECTED]
Crossposted-To: comp.os.linux.setup
Subject: Re: D_Link ethernet cards and linux
Date: Sun, 20 Jun 1999 04:33:37 GMT
Hello,
I'm trying to setup a Dlink DE220PT 10BaseT ISA card in Redhat Linux 5.2
and I don't seem to be able to use the NE2000 driver as you've descibed
in your post. The installation program reports that it's "unable to find
the hardware anywhere in your system". I've used the D-link setup
program to turn off the PnP feature, and to set the IRQ and Base I/O
values but still, the installation program fails to detect my card.
Could you tell me how you managed to get your card to work? Thanks a
lot.
Devon.
In article <01beb989$9468b220$c2818ea1@wpng>,
"MicroNg" <[EMAIL PROTECTED]> wrote:
>
>
> Well, they is a problem on detecting the card during the installation
if
> you're using RH5.2 ( RH 6.0 and
> other linux distribution I havent test it yet with dlink)
>
> what I did is using another "more" ne2000 compatible card, the best is
ISA
> card for the installation
> process to detect, & then after that replace back card with DLink, &
It
> work fine.
>
> Note that the dlink card I have disable the PnP and setting the
> corresponding IRQ and IO address.
>
> Rgds
>
> MicroNg
>
>
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: [EMAIL PROTECTED]
Subject: Perl Script
Date: Thu, 01 Jul 1999 13:52:42 GMT
My ISP, worldnet.att.net gave me a ppp-on script written in Perl. So I
typed it all in and i'm assuming it's Perl because the first line is
#!/usr/bin/perl as a matter of fact, here's the file:
#!/usr/bin/perl
#
# Script to establish connection from a Linux system to
# worldnet via PPP.
#
$DOMAIN="worldnet.att.net";
$SEARCH=$DOMAIN;
$NAMESERVER1="204.127.160.1";
$NAMESERVER2="204.127.129.1";
$NAMESERVER3="204.127.129.2";
$NAME="999999999\@worldnet.att.net";
$PHONE="6213400"; # Cambridge, MA
$MODEM="/dev/modem";
$resolv = '>/etc/resolv.conf';
open(CONF,$resolv)|| die "Cannot open file: $resolv.\n
$! \n";
print CONF "\#resolv.conf - created by ".$ARGV."\n";
print CONF "domain ".$DOMAIN."\n";
print CONF "search ".$SEARCH."\n";
print CONF "nameserver ".$NAMESERVER1."\n";
print CONF "nameserver ".$NAMESERVER2."\n";
print CONF "nameserver ".$NAMESERVER3."\n";
$command="/usr/sbin/pppd name \"".$NAME."\"".
" -d connect \'/usr/sbin/chat -t 45 -v ABORT BUSY
\"\" ATDT".
$PHONE." CONNECT \"\"\' ".$MODEM.
" 57600 noipdefault modem defaultroute crtscts";
$ENV{'PATH'} = ''; # Make $ENV{'PATH'} untainted
system($command);
But when i execute it, it gives me errors like it is incorrect Perl
syntax. For example i get errors on the variable lines that say for
example:
="worldnet.att.net"; : not a valid command
="204.127.160.1"; : not a valid command
So i thought maybe Perl wasnt installed because i did not select it
during my Linux installation. So i went to my Linux CD and tried to
unpack two RPM's that said PERL at the beginning. But it said something
to the effect of, Its already installed. So i tried to take out all of
the $ signs, that cut down on the errors and it got rid of some of the
errors. So then I tried to issue the command that it was obiviously
trying to issue by typing : /usr/sbin/pppd name
"999999999\@worldnet.att.net" -d connect '/usr/sbin/chat -t 45 -v ABORT
BUSY ""ATDT*70,6812288 CONNECT""' /dev/modem 57600 noipdefault modem
defaultroute crtscts
But still i can't get it to dial out it waits for the ATDT line instead
of waiting for something else so it can issue the ATDT command. I know
my modem works and i used another ppp-on script that dialed out but
didnt work, because of the way my ISP account is setup. What is the
problem? Input would be greatly appreciated, THANX!
Very Frustrated,
--Dave
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: "Stuart Fox" <[EMAIL PROTECTED]>
Crossposted-To:
comp.os.linux.advocacy,comp.infosystems.www.servers.unix,comp.os.linux.misc
Subject: Re: Could Microsoft Cheat On The New Mindcraft Benchmark? (was: Mindcraft
Retest News
Date: Sun, 20 Jun 1999 17:30:19 +1200
Scott MacDonald <[EMAIL PROTECTED]> wrote in message
news:6EGa3.299$[EMAIL PROTECTED]...
>
> Stuart Fox <[EMAIL PROTECTED]> wrote in message
> news:7keqqo$7gk$[EMAIL PROTECTED]...
> >
> > Jason O'Rourke <[EMAIL PROTECTED]> wrote in message
> > news:7kemol$sr0$[EMAIL PROTECTED]...
> > > Stuart Fox <[EMAIL PROTECTED]> wrote:
> >
> > >
> > > >It isn't MS's problem if someone exploits the tools provided in an
> Office
> > > >app. However it might be if a product didn't work as advertised -
win
> > 3.1
> > > >on DR-DOS for instance.
> > > >Does this mean that if I wrote a virus in VB that MS would be
> > responsible?
> > >
> > > In my mind, yes. They created a 'feature' that has brought IS
> departments
> > > using Office to their knees. This started with the tame but annoying
> word
> > > macro virus and has now gotten quite dangerous.
> > >
> > > >>and the knowledge
> > > >> that anyone could exploit IIS with a single line of code.
> > > >Are you suggesting that *nix has no bugs? Or requires no patches to
> get
> > > >running securely? ALL operating systems have bugs that must be
> patched,
> > I
> > > >don't care if it's linux, NT, Solaris etc. And why has no-one found
> this
> > > >bug until now - IIS 4.0 has been out for quite a while now...
> > >
> > > Unix certainly has had its troubles, especially with sendmail. But at
> > > this point, most of the issues have been resolved.
> >
> > Excluding of course every new app that is released, or every new
update...
> >
> > Open source code and
> > > 20 years of release time have been helpful. Meanwhile, Windows and NT
> > > have been used for networking for but a few years and it's pretty
clear
> > > that this is going to continue for quite some time. MS won't get sued
> > > over it, they'll make a killing selling fixes instead. Or perhaps
> people
> > > will start to realize the costs and move on.
> >
> > They don't sell fixes - they are free.
> >
> Win 98 was a fix for Win95 don't try to tell me they don't sell them.
>
>
Your opinion only. Heard of service packs - they are fixes. And also free.
------------------------------
From: [EMAIL PROTECTED]
Subject: Boca Stuff
Date: Thu, 01 Jul 1999 04:22:48 GMT
Can RedHat 6.0 handle Boca LANcard 100 ? Thanks.
------------------------------
From: Timo Tossavainen <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.development.apps,comp.os.linux.development.system
Subject: Re: Why not C++
Date: Thu, 01 Jul 1999 20:34:24 +0300
Nathan Myers wrote:
>
> Still, rigorous engineering is needed in many places, and languages
> that support it are needed in those places. C++ is currently the
> most powerful of such languages.
Rigorous engineering does not require static typing, strong typing
is what is needed for rigorous engineering, and that is what C++
doesn't have. Granted, if you write programs in a certain style you
can get the equivalent in C++ but C++ does not enforce this. How
about array bounds checking, built-in garbage-collection ? For larger
and more complex programs they are truly useful.
Your Lisp-bashing has gone a bit too far. Common Lisp has strong
typing with the proper safety declarations, array bounds-checking
and all the other stuff truly important for robust programs, that
are missing from C++. If you want a robust language like C++ then
try Eiffel.
Have you ever seriously used any of the more advanced languages
(Common Lisp, Scheme, Dylan, Prolog, etc.) in large programs ?
If you haven't, I suggest that you try them and learn them properly
and then try to make that statement again. In the future programs
will (hopefully) be more dynamic and dynamic languages are better
suited to the task.
Timo
------------------------------
From: "John Hardin" <[EMAIL PROTECTED]>
Subject: Re: How reset network card setting on the fly?
Date: Thu, 1 Jul 1999 09:03:25 -0700
[EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote in message
<[EMAIL PROTECTED]>...
>On Wed, 30 Jun 1999 18:04:09 GMT, [EMAIL PROTECTED] wrote:
>
>>I am using Red hat 6.0. If I change the network card settings
>>in /etc/sysconfig/network-scripts/ifcfg-eth0 and, say, change the IP
>>address. Is there anyway to make Linux reset my newly changed
>settings
>>without rebooting?
>
>You could also switch to runlevel 1 and then back:
>init 1
>init x (where x is the previous runlevel; on my machine - without X -
>it's 2)
Kack. That's close enough to rebooting to make no difference.
Try reading "man ifconfig", or for Redhat you can go into the
configuration GUI and bring the interface down and back up, or run the
ifdown and then ifup scripts that are in
/etc/sysconfig/network-scripts.
--
John Hardin KA7OHZ [EMAIL PROTECTED]
pgpk -a finger://gonzo.wolfenet.com/jhardin PGP key ID: 0x41EA94F5
PGP key fingerprint: A3 0C 5B C2 EF 0D 2C E5 E9 BF C8 33 A7 A9 CE 76
======================================================================
-
In the Lion
the Mighty Lion
the Zebra sleeps tonight...
Dee de-ee-ee-ee-ee de de de we um umma way!
------------------------------
From: "John Hardin" <[EMAIL PROTECTED]>
Subject: Re: VPN across a Linux Firewall
Date: Thu, 1 Jul 1999 09:09:06 -0700
Andrzej Filip wrote in message <[EMAIL PROTECTED]>...
>Dan Reaka wrote:
>
>> I am trying to set up VPN (PPTP) on our network. We are currently
using
>> a Linux Firewall using ipfwadm and ipporfw. PPTP uses port 1723
which has
>> been redirected with ipportfw. The documentation on PPTP talks
about
>> protocol 47 which needs to be enabled on all routers and firewalls.
I'm not
>> for sure how to turn protocols on and off with Linux. Can anyone
help me
>> with this matter or direct me to documentation on the subject. Any
help
>> would be greatly appreciated. Thanks
>
>If you use ipfwadm than you may specify the following protocols:
>* ICMP
>* TCP
>* UDP
>* all protocols
>
>Which means that if you want to allow protocol 47 you must allow
>all protocols (you can make it all other than icmp, udp, tcp)
Please take a look at the Linux VPN Masquerade HOWTO available via:
ftp://ftp.rubyriver.com/pub/jhardin/masquerade/ip_masq_vpn.html
It includes example firewall setups.
--
John Hardin KA7OHZ [EMAIL PROTECTED]
pgpk -a finger://gonzo.wolfenet.com/jhardin PGP key ID: 0x41EA94F5
PGP key fingerprint: A3 0C 5B C2 EF 0D 2C E5 E9 BF C8 33 A7 A9 CE 76
======================================================================
-
In the Lion
the Mighty Lion
the Zebra sleeps tonight...
Dee de-ee-ee-ee-ee de de de we um umma way!
------------------------------
From: [EMAIL PROTECTED] (Mike)
Subject: Re: Possible to direct connect NT Wks and RH6 with crossover cable?
Date: Sat, 19 Jun 1999 22:41:18 GMT
I have my linux machine and my NT machine connected with a cross-over
cable, so yes it's possible. You'd need to go through a hub to use a
straight through cable.
Can you ping your NT box, or vice versa? Ping is the best way to test
network connections. That will tell you if the interface and subnet
mask, etc is ok. Mounting a drive share involves more than just
network settings, i.e. passwords, workgroup name etc etc.
HTH
mike
On Sat, 19 Jun 1999 12:35:16 -0400, "Chris" <[EMAIL PROTECTED]>
wrote:
>I've been working on this 486 linux box that's destined to be a
>firewall/gateway. I got 2 3com 3c509b's installed and I believe
>they are functioning. (At least they show up as "OK" when I boot)
>
>For now, I just want to test the eth0 and eth1 to see if they are ok.
>I figure the best way would be to try and mount some shared NT
>drives. But for now, I have nothing but a x-over cable to connect
>the 2 systems. I've been fooling around with samba and I believe I've
>made all the necessary adjustments to /etc/smb.conf. But whenever
>I try to run smbclient -L hostname I get this:
>
>added interface ip=192.168.1.100 bcast=192.168.1.255 nmask=255.255.255.0
>
>and then nothing. I do have some activity on the led's (and if I'm playing
>an mp3 in NT
>it stutters for a second). Otherwise nothing happens after that.
>
>Anyways I'm looking for some pointers on what I'm missing. Thanks!
>
>[EMAIL PROTECTED]
>
>
>
------------------------------
From: [EMAIL PROTECTED]
Subject: Re: Perl Script
Date: Thu, 01 Jul 1999 16:19:11 GMT
I have already wrote my own resolv.conf, it is not that that i am
worried about. I can't get it to dial, thats the problem i need to
solve. Thanx for the input though!
In article <7lfu9k$13r8$[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (Michael Kelly) wrote:
> In article <7lfrr4$e1s$[EMAIL PROTECTED]>,
> [EMAIL PROTECTED] writes:
> > My ISP, worldnet.att.net gave me a ppp-on script written in Perl.
So I
> > typed it all in and i'm assuming it's Perl because the first line is
> > #!/usr/bin/perl as a matter of fact, here's the file:
>
> [snip]
>
> Have you tried
> ls -l /usr/bin/perl
> to see if perl is there and is executable?
>
> If so try running a simpler perl script and see if it
> works. Don't try editing the perl script. It should
> work as is. The dollar signs designate a type of perl
> variable(a scalar) so you need them. :)
>
> Also check the perl version you're running. It may be
> outdated. Perl v 5 or higher should work.
>
> If you can't get perl working on your machine then you
> can create the files by hand. Put the lines in the
> /etc/resolve.conf file with an editor like emacs
> instead of through the program.
>
> IOW, in the file /etc/resolv.conf type
>
> domain worldnet.att.net
>
> in place of: $DOMAIN="worldnet.att.net";
> search domain
>
> in place of: $SEARCH=$DOMAIN;
>
> and so on down the list.
> You only have to set these files up once, so then you just
> need to run your chat command. Worldnet has local newgroups
> on usenet and somebody there who is using Linux to log in
> should be more helpful.
>
> > $NAMESERVER1="204.127.160.1";
> > $NAMESERVER2="204.127.129.1";
> > $NAMESERVER3="204.127.129.2";
> > $NAME="999999999\@worldnet.att.net";
>
> --
>
> Mike
>
> "Genius gives birth, talent delivers."
>
> - Jack Kerouac
>
>
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: [EMAIL PROTECTED]
Subject: Re: Perl Script
Date: Thu, 01 Jul 1999 16:19:47 GMT
I have already wrote my own resolv.conf, it is not that that i am
worried about. I can't get it to dial, thats the problem i need to
solve. Thanx for the input though!
In article <7lfu9k$13r8$[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (Michael Kelly) wrote:
> In article <7lfrr4$e1s$[EMAIL PROTECTED]>,
> [EMAIL PROTECTED] writes:
> > My ISP, worldnet.att.net gave me a ppp-on script written in Perl.
So I
> > typed it all in and i'm assuming it's Perl because the first line is
> > #!/usr/bin/perl as a matter of fact, here's the file:
>
> [snip]
>
> Have you tried
> ls -l /usr/bin/perl
> to see if perl is there and is executable?
>
> If so try running a simpler perl script and see if it
> works. Don't try editing the perl script. It should
> work as is. The dollar signs designate a type of perl
> variable(a scalar) so you need them. :)
>
> Also check the perl version you're running. It may be
> outdated. Perl v 5 or higher should work.
>
> If you can't get perl working on your machine then you
> can create the files by hand. Put the lines in the
> /etc/resolve.conf file with an editor like emacs
> instead of through the program.
>
> IOW, in the file /etc/resolv.conf type
>
> domain worldnet.att.net
>
> in place of: $DOMAIN="worldnet.att.net";
> search domain
>
> in place of: $SEARCH=$DOMAIN;
>
> and so on down the list.
> You only have to set these files up once, so then you just
> need to run your chat command. Worldnet has local newgroups
> on usenet and somebody there who is using Linux to log in
> should be more helpful.
>
> > $NAMESERVER1="204.127.160.1";
> > $NAMESERVER2="204.127.129.1";
> > $NAMESERVER3="204.127.129.2";
> > $NAME="999999999\@worldnet.att.net";
>
> --
>
> Mike
>
> "Genius gives birth, talent delivers."
>
> - Jack Kerouac
>
>
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: Chris Harshman <[EMAIL PROTECTED]>
Subject: Re: External ISDN Modem
Date: Thu, 01 Jul 1999 12:25:42 +0000
Quick question - what's an ISDN "modem?"
I've heard of ISDN terminal adapters, but
never modems.
Um, about the .signature...
Davide Dozza wrote:
>
>
> Does any know where I can find documentation about to configure an
> external ISDN modem to connect
> to an ISP??
>
> Thanks
>
> Davide
>
> --
>
> /\ /-+-/
> / \ |
> || (------------------------------|---------)
> || | Ing. Davide Dozza /~\ |
> o o ===| D.E.I.S. Universita' di Bologna | | |
> \_____/ | Viale Risorgimento, 2 \_/ |
> /=O=O=\ _______ | I-40136 Bologna, Italy |
> / ^ \ /\\\\\\\\ | Phone: 051-6443049 Fax: 051-6443073 |
> \ \___/ / /\ ___ \ | e-mail: [EMAIL PROTECTED] |
> \_ V _/ /\ /\\\\ \==| |
> \ \__/\ /\ @_/ / (----------------------------------------)
> \____\____\______/ (*) (*) (*)
> =====^==^=====^=====^======^===^===^=======^=^==^=====^====^=^======
>
>
------------------------------
From: "netboss" <[EMAIL PROTECTED]>
Crossposted-To:
comp.dcom.sys.bay-networks,comp.graphics.apps.lightwave,comp.mail.list-admin.software,comp.networks.noctools.bugs,comp.networks.noctools.submissions,comp.networks.noctools.wanted,comp.os.ms-windows.networking.misc,comp.os.
Subject: Good Homepage
Date: Fri, 2 Jul 1999 01:22:02 +0800
�o�O�@�ӫܦn������ !!!!
�����j����� , ���\���D , �q����T
Webcam , �n��U�� , �Ѥ���
���K�ɮ� , �������� , ½���S�u
�w��U���ͤJ���s��
�h�¦U�� !!!
http://www.netboss.hkc.st
http://fly.to/netboss
http://dreamer.to/netboss
------------------------------
From: "Markus Jahn" <[EMAIL PROTECTED]>
Subject: Re: Newbie network question.
Date: Thu, 1 Jul 1999 16:29:23 +0200
> can you ping linux to itself?(loopback,adress,name?)
yes
> do you ping win-box with adress or name?
i ping the win box with its address
>
>
> Sent via Deja.com http://www.deja.com/
> Share what you know. Learn what you don't.
------------------------------
From: "Serge Dutremble" <[EMAIL PROTECTED]>
Subject: hangs after appletalk
Date: Thu, 01 Jul 1999 17:31:39 GMT
Thismay not be the right forum for this but I am at a loss here:
My RedHat 5.2 PC hangs after printing the line:
Appletalk 0.17 for linux NET3.035
I do not use appletalk but it has always printed this line in the past with
no problem.
I am currently trying to setup my box with 2 3comNIC (3c509) and one modem
on com4. It was locading fine but after a reboot, it stoped after the
appletalk line. It does not go any further so I can't even get in the
system and find out more.
Has anyone ever encountered this?
Help!
Serge.
------------------------------
From: "Max Barawid Jr." <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.hardware
Subject: Re: Problem configuring PCMCIA Network card
Date: Thu, 01 Jul 1999 17:19:11 +0400
Rick,
Read PCMCIA HOWTO by David Hinds. It got lots of informations in there. I
am using Mandrake 5.3 with 2.2.7 kernel on a Toshiba 320CDT and I am having
a 3Com Cardbus Ethernet card and a Global 56K Modem and both are working.
You may have to install the latest pcmcia-cs-xxx driver. Good luck.
Max
Richard A. Bilonick wrote:
> Robert,
>
> I'm in the same (or at least similar) boat. I have a Linksys Combo
> PCMCIA EthernetCard which is a supported card. I have looked everywhere
> for info on how to set up PCMCIA cards for networking but nothing I have
> read has helped. I also have the strange problem that the cardinfo
> command cannot be found anywhere. Both cardctl ident and cardctl status
> give similar info to yours.
>
> When I try to connect eth0 to a driver, no reasonable driver appears in
> the list (I'm using Red Hat 6.0, BTW, on a Toshiba 2535 laptop.) From
> what I've been able to gather, something called pcnet_cs is involved but
> I don't know if this is a driver or not. It never shows up in the list
> of drivers. My PCMCIA modem card works just fine so I know PCMCIA is
> installed and working.
>
> It doesn't seem that anyone else knows or if they know they are keeping
> it secret. Why does it have to be this hard? I've gotten nowhere with
> support at Red Hat so far.
>
> I just got sound working. But to get it working I had to buy drivers
> from 4Front ($20) but it was worth it! I'd surely pay $20 to get
> networking through the PCMCIA card working!
>
> If you find out anything useful, I would appreciate hearing about it.
>
> Rick Bilonick
>
> Robert Chung wrote:
>
> > I am having trouble getting my PCMCIA ethernet card to work in Linux.
> > It is EPX-10BT PC Card Ethernet 10BT from Eiger labs,Inc., and it is
> > working well in Windows 95 and Windows NT. I am trying to add IP
> > address to this device, and "ifconfig" is telling me there is no
> > interface (I tried "eth0" for this device). I do not think my PCMCIA
> > card has an interface name assigned to it. What should I do? Thank
> > you in advance.
> >
> > PS: Below is output from "cardctl ident".
> > This card is taking up Socket 1.
> > Socket 0:
> > product info: "SMS", "MM510 56K", "021", "A"
> > manfid: 0x0013, 0x0000
> > function: 2 (serial)
> > Socket 1:
> > product info: "Eiger labs,Inc.", "EPX-10BT PC Card Ethernet 10BT",
> > "01"
> > manfid: 0x0004, 0x2000
> > function: 6 (network)
> >
> > ==============================================================
> >
> > Below is output from "cardctl status"
> >
> > Interface type is memory and I/O
> > IRQ 3 is exclusive, level mode, enabled
> > Speaker output is enabled
> > Function 0:
> > Config register base = 0x0200
> > Option = 0x61, status = 0x08, pin = 0000, ext = 0000
> > I/O window 1: 0x02f8 to 0x02ff, 8 bit
> > Socket 1:
> > Vcc = 5.0, Vpp1 = 5.0, Vpp2 = 5.0
>
> --
> --------------------------------------------------------------
> Rick Bilonick - mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
> Statistical Consulting for Business & Industry
> --------------------------------------------------------------
> "Where statistics help is as close as the Internet."
> http://www.nauticom.net/users/rab/consult.htm
> http://www.nauticom.net/users/rab/tutor.htm
> http://www.nauticom.net/users/rab/bookstor.htm
------------------------------
From: Jonathan Guthrie <[EMAIL PROTECTED]>
Subject: Re: Linux FTP install via Wingate on 98
Date: 1 Jul 1999 13:50:54 GMT
Bill Tkach <[EMAIL PROTECTED]> wrote:
> Is it possible to do, in my instance, a Debian or FreeBSD install of Linux
> through a Wingate 3.0 server being run on a Windows 98 machine?
FreeBSD is not Linux so you can't do a "FreeBSD install of Linux". I
believe that you can do a FreeBSD install through the Wingate, but I don't
know how. To do a Debian FTP install, FTP the two boot disk images, and
the whole base disk set. After the computer reboots, select the "ftp"
method from dselect. I believe that you will need to select passive mode.
--
Jonathan Guthrie ([EMAIL PROTECTED])
Brokersys +281-895-8101 http://www.brokersys.com/
12703 Veterans Memorial #106, Houston, TX 77014, USA
------------------------------
From: [EMAIL PROTECTED] (Michael Kelly)
Subject: Re: Perl Script
Date: 1 Jul 1999 14:34:28 GMT
In article <7lfrr4$e1s$[EMAIL PROTECTED]>,
[EMAIL PROTECTED] writes:
> My ISP, worldnet.att.net gave me a ppp-on script written in Perl. So I
> typed it all in and i'm assuming it's Perl because the first line is
> #!/usr/bin/perl as a matter of fact, here's the file:
[snip]
Have you tried
ls -l /usr/bin/perl
to see if perl is there and is executable?
If so try running a simpler perl script and see if it
works. Don't try editing the perl script. It should
work as is. The dollar signs designate a type of perl
variable(a scalar) so you need them. :)
Also check the perl version you're running. It may be
outdated. Perl v 5 or higher should work.
If you can't get perl working on your machine then you
can create the files by hand. Put the lines in the
/etc/resolve.conf file with an editor like emacs
instead of through the program.
IOW, in the file /etc/resolv.conf type
domain worldnet.att.net
in place of: $DOMAIN="worldnet.att.net";
search domain
in place of: $SEARCH=$DOMAIN;
and so on down the list.
You only have to set these files up once, so then you just
need to run your chat command. Worldnet has local newgroups
on usenet and somebody there who is using Linux to log in
should be more helpful.
> $NAMESERVER1="204.127.160.1";
> $NAMESERVER2="204.127.129.1";
> $NAMESERVER3="204.127.129.2";
> $NAME="999999999\@worldnet.att.net";
--
Mike
"Genius gives birth, talent delivers."
- Jack Kerouac
------------------------------
From: Mark Evans <[EMAIL PROTECTED]>
Subject: Re: External ISDN Modem
Date: Thu, 1 Jul 1999 14:52:37 +0100
Davide Dozza <[EMAIL PROTECTED]> wrote:
> Does any know where I can find documentation about to configure an
> external ISDN modem to connect
As no such device exists you are going to have a hard time finding
such information.
If you mean an external TA which understands Hayes commands then you
operate it in exactly the same way as you would a modem.
--
Mark Evans
St. Peter's CofE High School
Phone: +44 1392 204764 X109
Fax: +44 1392 204763
------------------------------
** 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
******************************