Linux-Networking Digest #681, Volume #11 Sat, 26 Jun 99 16:14:25 EDT
Contents:
Re: PPP - What can I tell you to help solve my problem? (Bill Unruh)
Re: Why not C++ (Nathan Myers)
Re: Why ppp1 instead of ppp0 (Bill Unruh)
Re: FTP and IPchains\Masquerading (mist)
Re: Could Microsoft Cheat On The New Mindcraft Benchmark? (was: Mindcraft Retest
News (Anthony Ord)
change TcpWindowSize ? (Bio Hazard)
Re: printing on a lan (Marc Mutz)
Administrative accounts ([EMAIL PROTECTED])
Re: Why not C++ (Nathan Myers)
Re: Gaming over a shared internet connection? ("Tony C")
Re: Linux and DSL ("Andrey Smirnov")
Re: Linux and DSL ("Richi")
Re: Strange network configuration ("Andrey Smirnov")
Re: Need examples scripts for ppp (Jose Romeo Vela)
Re: Why ppp1 instead of ppp0 (Andrzej Filip)
Re: Why not C++ (Nathan Myers)
Re: Proxy ([EMAIL PROTECTED])
Re: Why not C++ (Nathan Myers)
Re: reverse name lookup - how 2 in linux?? ("Michael Faurot")
----------------------------------------------------------------------------
From: [EMAIL PROTECTED] (Bill Unruh)
Crossposted-To: comp.os.linux.setup
Subject: Re: PPP - What can I tell you to help solve my problem?
Date: 26 Jun 1999 18:19:15 GMT
In <[EMAIL PROTECTED]> Dusman Lam <[EMAIL PROTECTED]> writes:
]> Well, to make long story short, after installing RH6.0, using the
]> linuxconf tool to set up PPP, getting over the 21/26/24 conf errors
]> (thanks [EMAIL PROTECTED]), printing out if*, ppp*, reading the heck out
]> of them and tailing -f /var/log/messages, I STILL cannot get a
]> successful
]> connection. I think I have two problems:
Try following the steps in
axion.physics.ubc.ca/ppp-linux.html
It is a step by step guide togetting connected, and more importantly for
debugging your situation if you do not get connected.
]>
]> 1) Since my ISP (erols.com) uses dynamic IP addresses, I have set the
]> noipaddress arguement to PPP. After all the pppd negotiation, I get
They "all" do.
]> messages that state that ppp has determined the remote and the local
]> IP addresses. Two lines later, it says it cannot determine the local
]> address!
Without a debug dump it is hard to know what is happening.
]>
]> 2) Since my ISP uses dynamic DNS assignemnts, I use the usedpeerdns
They probably just send the same address each time anyway, so you could
just put them into /etc/resolv.conf
]> argument. I guess that pppd is reading them correctly since
]> a new resolv.conf is created every time I connect. But it's not
]> in /etc, it's in /etc/ppp. Is this a going to be a problem once
Yes, taht is what the documentation says it will do. You have a few
choices. One is use /usr/local/ip-up to copy the contents to
/etc/resolv.conf.
]> So, in order you you to help me solve this, what information should
]> I post? Snippets of /var/log/messages?
]>
]> BTW, I have debug and kdebug 1 set on the pppd.
But are you actually getting debug output? You have to tell syslog
where to put the output ( eg a line like
daemon.* /var/log/messages
in /etc/syslog.conf and then run killall -1 syslogd
(note that kdebug is very
rarely useful and clutters up the log files. Do not post with kdebug
unless asked to.)
------------------------------
From: [EMAIL PROTECTED] (Nathan Myers)
Crossposted-To: comp.os.linux.development.apps,comp.os.linux.development.system
Subject: Re: Why not C++
Date: 26 Jun 1999 11:51:56 -0700
Greg Comeau <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] (Nathan Myers) writes:
>>Ralph Glebe <[EMAIL PROTECTED]> wrote:
>>> Are all the programs in C because: [speculation]
>>
>>There are quite a lot of C++ projects on Linux. C projects (still)
>>outnumber them for several reasons. ...
>>
>>2. It takes substantial extra effort to code C++ libraries that are
>> binary-compatible from one release to the next, so library version
>> problems are incrementally harder.
>
>Luckily Standard C++ is out and at least for now binary compatible issues
>are known and can be addressed by compiler implementors as they upgrade.
>Of course, some compilers have done this more than others. :)
I did not mean releases of the compiler, or releases of the standard
library, both of which break binary-compatibility but will stabilize,
eventually.
I meant releases of other libraries. Any time you change the layout
of a struct, or (e.g.) add a new virtual function in a base class,
you risk breaking code that depends on the library. The same is true
with C libraries, but C lacks some of the language features that create
a dependency, and people already know about those which do.
It is possible to build C++ libraries that are safe for old program
binaries to link to, but it's harder. For example, you have to be
very careful about what inline functions and virtual functions you
expose in the public interface, and be sure not to change anything
between releases that those interfaces depend on.
This is a maturity issue. As people become aware of the problems,
they arrive at the same solution.
--
Nathan Myers
[EMAIL PROTECTED] http://www.cantrip.org/
------------------------------
From: [EMAIL PROTECTED] (Bill Unruh)
Subject: Re: Why ppp1 instead of ppp0
Date: 26 Jun 1999 18:30:50 GMT
In <[EMAIL PROTECTED]> "James" <[EMAIL PROTECTED]> writes:
>I have the problem that when I close a ppp connections and restart it, it
>comes up as ppp1 then ppp2 etc. Why? I don't see any reason.
>I don't have any access to the Internet anymore then.
I suspect that you did not really close your connection. Ie, a ppp0
connection was left up.
When you close your connection check to see if a pppd is still running
(ps aux|grep pppd)
and use ifconfig to see if ppp0 is still up
ifconfig
and look for a ppp0 link
------------------------------
From: mist <[EMAIL PROTECTED]>
Subject: Re: FTP and IPchains\Masquerading
Date: Sat, 26 Jun 1999 16:30:40 +0100
Reply-To: mist <new$[EMAIL PROTECTED]>
Ian <[EMAIL PROTECTED]> scribed to us that -
>Hello I wonder if anyone can help me?
>I have been trying and failing to access a company ftp site that is
>not running on port 21 (the reasons for this are a paranoid IT
>Director who decided it would be best to keep our sensitive data as
>well hidden as possible).
Security through obscurity is no security at all.
>I am am running a small home network using a RH6 machine as my web
>gateway using ipchains\masquerading, everything else works ok just
>the ftp side is giving me hell. I get as far as the LIST -L command in
>my ftp client (Cuteftp) and it just hangs until I stop the process.
>Cute tells me it "couldnt build a data connection".
<snip>
>I have tried adding the ip_masq_ftp module line also including a
>ports=ip_masq_ftp XXX line to my rc.firewall file but it makes no
>difference, it refuses to play ball.
The error message certainly sounds like the one that you get when the
ftp masquerading module hasn't been loaded. Have you done
insmod pathtowhateverthatftpmasqmoduleiscalled
as root?
--
Mist.
------------------------------
From: [EMAIL PROTECTED] (Anthony Ord)
Crossposted-To:
omp.os.ms-windows.nt.advocacy,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: Sat, 26 Jun 1999 18:15:46 GMT
On Sat, 26 Jun 1999 11:56:07 +0100, Robin Becker
<[EMAIL PROTECTED]> wrote:
>In article <7l280k$1d9i$[EMAIL PROTECTED]>, John Hughes
><[EMAIL PROTECTED]> writes
>>How about these? Did MS cheat also? ;)
>>
>>http://www.zdnet.com/pcmag/stories/reviews/0,6755,2256617,00.html
>>
>>http://www.zdnet.com/pcweek/stories/jumps/0,4270,401961,00.html
>>
>>
>...
>a bit off topic, but an article in my paper, the Independent, states
>that M$'s encarta has different versions for different countries. If M$
>can claim in the US that Edison (October 1879) invented the electric
>light bulb before Swan (February 1879) then a few adjustments to
>benchmark results seem minor. Apparently the M$ mouthpiece says these
>sort of 'facts' aren't always black and white etc etc.
It's just to appease the American public. Just like the
Second World War went from 1941 (when the Americans joined)
to 1945. What was it before that? A bun fight?
>It was Orwell's 1984 that had the 'Ministry of Truth', but I wonder if,
>now that we have the technology, it's becoming a reality.
We've had the Ministry of Truth for quite a while. Notice
how it's called "education". In the old days it was called
propaganda.
The old days were a lot more honest in the language than we
are now - in a lot of ways.
Regards
Anthony
--
=========================================
| And when our worlds |
| They fall apart |
| When the walls come tumbling in |
| Though we may deserve it |
| It will be worth it - Depeche Mode |
=========================================
------------------------------
From: [EMAIL PROTECTED] (Bio Hazard)
Subject: change TcpWindowSize ?
Date: Sat, 26 Jun 1999 18:07:58 GMT
On my NT machine, I read about how I can improve my TCP/IP network
performance by changing the MTU size and TcpWindowSize. The changes I
made actually tripled my network performance! Now I'd like to do the
same to my Linux machine, if possible.
I did find out how to change the MTU from within ifconfig, but I'm
wondering if it's possible to change the TcpWindowSize on Linux. Is
it even necessary to modify these settings?
Also, any good URL's for info like this?
------------------------------
Date: Sat, 26 Jun 1999 19:42:49 +0200
From: Marc Mutz <[EMAIL PROTECTED]>
Subject: Re: printing on a lan
Wally\"Equinox\" wrote:
> It doesn't have to be a "state of the
> art" machine. A simple pentium 75 with 32 mb, 2 GB HDD will do the job
> perfectly.
An even 'simpler' 386 w/ 4Mb Ram and 40M + sizeof(spoolspace_needed) HD
capacity will do the job if you send it raw print data instead of
PostScript.
Marc
------------------------------
From: [EMAIL PROTECTED]
Subject: Administrative accounts
Date: Sat, 26 Jun 1999 18:58:57 GMT
I have a question about how to set up administrative accounts. I have
no idea how to do this. What I want to do is allow someone to add,
remove and modify users and do other system tasks. I also want to keep
them from doing such things as rebooting the system remotely. Can
someone please tell me how to do this.
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: [EMAIL PROTECTED] (Nathan Myers)
Crossposted-To: comp.os.linux.development.apps,comp.os.linux.development.system
Subject: Re: Why not C++
Date: 26 Jun 1999 12:02:38 -0700
Andi Kleen <[EMAIL PROTECTED]> wrote:
>Well, the theory is that:
> int f(vector<vector<float> > array)
>is easier than
> int f(float **array)
>to handle for a beginner.
No. The theory is that
vector<float> vec;
vector<vector<float > > array;
array.pushback(vec);
is easier for a beginner to handle than
int nelems;
float *vec;
float **newarray = realloc(array, ((nelems+1) * M) * sizeof(float));
if (!newarray) {
abort(); /* ? */
} else {
memcpy(&newarray[nelems][0], vec, M * sizeof(float));
array = newarray;
++nelems;
}
This theory is correct.
--
Nathan Myers
[EMAIL PROTECTED] http://www.cantrip.org/
------------------------------
From: "Tony C" <[EMAIL PROTECTED]>
Subject: Re: Gaming over a shared internet connection?
Date: Sat, 26 Jun 1999 10:51:07 -0700
I am currently doing this. I have an old Gateway P5-200MMX as my Linux
server/IP Masquerader. There are 2 Celeron 400 Win98 PCs connected to a
10/100 hub which is also connected to one of the two lan cards in the Linux
PC. The second lan card is attached to a DSL 'modem' setup for 384K/384K
speeds.
I am running RH 5.2 straight out of the box, though I recently downloaded
most of the upgrades for 5.2 from the RH support site. I am using IPFWADM
for masquerading and it seems to work just fine. I play mostly EQ which is a
FP 3D role playing online game. There is occasional lag but it is never due
to the local private network or the Linux box. It is usually either the game
server or heavy internet traffic between you and the game server.
I was able to scavenge most of the parts for the Linux server. Gateway
contriubted a motherboard and processor. I had kept the original Matrox card
when I upgraded to a 3Dfx Banshee video card. The Banshee was moved to my
new PC and the Millenium is working just great with Linux and X Windows. The
lan cards are Linksys 10/100 PCI cards. The hub is also a Linksys that
supports either 10 or 100 Mbps on a per port basis. The Windows PCs also use
Linksys 10/100 lan cards. I bought a cheap 15" CTX monitor for the Linux
server and moved the 17" over to the new PC.
I basically followed the HOWTOs on networking and IP Masquerading. I am not
using Samba to share files between Linux and Windows, but I am using IPX on
the local net to share between the Windows PCs. I also have ftp setup across
the local net so I can easily move files from the Linux box to the Win PCs.
With this setup I can surf the net from any of the 3 machines. I can read
email, news or browse web sites. The Linux box also keeps my Win PCs private
from the internet.
All in all I would say it's a pretty clean setup. I didn't have any real
problems, but I would recommend that you read up on all the details before
you jump into it. There are many factors to consider and many ways to shoot
yourself in the foot.
Good luck to you.
Cheers
TC
Andrew Corrigan wrote in message <[EMAIL PROTECTED]>...
>Hi,
>
>I am interested in trying out linux and was thinking of setting up a
>relatively cheap linux box as a gateway using IP Masquerade. Two
>Windows 98 SE boxes would be connected to the linux gateway (I figure
>using a router?) over a cable modem. Anyways, I was wondering if anyone
>had done a similar setup and used it for multiplayer gaming over the
>net, primarily Halflife, Forsaken, some RTS games. I haven't seen any
>mention of games over this setup.
>
>Also, what should I be looking for in hardware. I mainly plan on using
>it for just this purpose and some fiddling around with linux every now
>and then (when it's not being used as the gateway). I'm thinking I can
>save some money on a monitor but using some remote access software from
>my Win98 computer (the other will be my roommates). Please cc any
>replys to my email address as well. Thanks.
>
>Andrew
>
------------------------------
From: "Andrey Smirnov" <[EMAIL PROTECTED]>
Subject: Re: Linux and DSL
Date: Sat, 26 Jun 1999 11:52:03 -0700
Hello,
I don't understand the purpose of the second net card. Looks like the first
card is on the subneted part of the network on which your second card is.
But in general what is exactly your problem?
Richi wrote in message ...
>I have some new info and I will recap some of the old for any newcomers. I
>still haven't got it to talk yet, but learned some valuable info.
>
>First the Linux box has two network cards (eth0 and eth1)
>
>The eth0 card is configured as 192.168.1.1 with a netmask of 255.255.255.0
>The eth1 card is configured as 192.168.1.2 with a netmask of
>255.255.255.128
>
>All other windows machines on the LAN are 192.168.1.X and 255.255.255.128
>
>The router is set up as defualt. The only items I have entered into the
>router are:
>set ppp wan0-0 ipcp 0.0.0.0
>set ppp wan0-0 dns 0.0.0.0
>set ppp restart enabled
>set dhcp server enabled
>set nat enabled
>and login and passwords.
>
>This is what USWEST has in the book. This setup is currently working
plugged
>into my hub.
>
>What I just realized doing a winipcfg in windows was the Cisco 675 router
>has the following. I am going to add all info beacuse I am not sur if it is
>relevent.
>
>Host name Rich
>DNS servers 207.108.32.1 and 204.147.80.5
>Node type =broadcast
>IP address 10.0.0.2
>Subnet Mask 255.255.255.0
>Default gateway 10.0.0.1
>DHCP server 10.0.0.1
>
>
>I am thinking that this info needs to be entered under routing in netcfg
>
>Under router I have :
>
>default gateway____________
>default gateway device__________
>
>And then if I click add I get
>
>Device_________________
>Network_______________
>Netmask_______________
>Gateway_______________
>
>
>I tried a few combinations but haven't hit the right one.
>
>Any help is appreaciated. I hope to get this thing online this weekend.
>
>Thanks
>
>Rich
>
>
>
>
------------------------------
From: "Richi" <[EMAIL PROTECTED]>
Subject: Re: Linux and DSL
Date: Sat, 26 Jun 1999 14:21:24 -0500
Hi Andrey,
I have tow ethernet cards because one is supposed to be for the LAN and the
other is to connect the Cisco router. I currently have the router hub
connected to the hub which is only temporary. I want the router to be
connected to the Linux machine and use IP masquerading and a firewall.
I cant get the Linux box to work on the internet with DSL.
I am really new at this and have tried everything. I would think with the
router connected to the eth0 card, I should be able to ping the router at
10.0.0.1 or .2. But I cat seem to do it. I am a little lost on what to put
on the routing portion of netcfg.
Thanks for the reply.
Rich
Andrey Smirnov <[EMAIL PROTECTED]> wrote in message
news:7l377h$rpq$[EMAIL PROTECTED]...
> Hello,
>
> I don't understand the purpose of the second net card. Looks like the
first
> card is on the subneted part of the network on which your second card is.
>
> But in general what is exactly your problem?
>
>
> Richi wrote in message ...
> >I have some new info and I will recap some of the old for any newcomers.
I
> >still haven't got it to talk yet, but learned some valuable info.
> >
> >First the Linux box has two network cards (eth0 and eth1)
> >
> >The eth0 card is configured as 192.168.1.1 with a netmask of
255.255.255.0
> >The eth1 card is configured as 192.168.1.2 with a netmask of
> >255.255.255.128
> >
> >All other windows machines on the LAN are 192.168.1.X and 255.255.255.128
> >
> >The router is set up as defualt. The only items I have entered into the
> >router are:
> >set ppp wan0-0 ipcp 0.0.0.0
> >set ppp wan0-0 dns 0.0.0.0
> >set ppp restart enabled
> >set dhcp server enabled
> >set nat enabled
> >and login and passwords.
> >
> >This is what USWEST has in the book. This setup is currently working
> plugged
> >into my hub.
> >
> >What I just realized doing a winipcfg in windows was the Cisco 675 router
> >has the following. I am going to add all info beacuse I am not sur if it
is
> >relevent.
> >
> >Host name Rich
> >DNS servers 207.108.32.1 and 204.147.80.5
> >Node type =broadcast
> >IP address 10.0.0.2
> >Subnet Mask 255.255.255.0
> >Default gateway 10.0.0.1
> >DHCP server 10.0.0.1
> >
> >
> >I am thinking that this info needs to be entered under routing in netcfg
> >
> >Under router I have :
> >
> >default gateway____________
> >default gateway device__________
> >
> >And then if I click add I get
> >
> >Device_________________
> >Network_______________
> >Netmask_______________
> >Gateway_______________
> >
> >
> >I tried a few combinations but haven't hit the right one.
> >
> >Any help is appreaciated. I hope to get this thing online this weekend.
> >
> >Thanks
> >
> >Rich
> >
> >
> >
> >
>
>
>
------------------------------
From: "Andrey Smirnov" <[EMAIL PROTECTED]>
Subject: Re: Strange network configuration
Date: Sat, 26 Jun 1999 11:58:56 -0700
They use NAT (network address translation). Your router has Nat software
running on it so when somebody is trying to get to your web server, router
knows to redirect the request to your internal server using Nat map (uses
MAC address and works on lower level of network communications then TCP/IP).
This approach is used in many networks now days due to the shortage of real
IP addresses and security issues.
Good luck!
Terence Parker wrote in message <7l2e1g$[EMAIL PROTECTED]>...
>We have a direct connection to our local telephone company Frame Relay,
>through which we get our Internet access. Because I don't know too much
>about networking at that level, I am a bit puzzled as to what is going on.
>
>Although we are registered by 'whois' as having two blocks of IP addresses,
>we were only informed of having one direct IP address - the one the router
>uses. All machines on the network use internal IP addresses - fair enough,
a
>fairly normal thing. Problem is, we now need to setup a Web Server. Having
>phoned the telephone company and waited several days (you know how they
>are!) we were given instructions:
>The Web Server was to remain on an Internal IP address, then the phone
>company would map the router so that a real IP address pointed to that
>internal one. I found this rather strange because on a separate network we
>have (an entirely different system) we have 8 IP address which require no
>configuration other than simply tapping the numbers into the individual
>workstations. So why this strange mapping?
>
>Secondly - I am a bit confused with the configuration of the computer.
>Understandably, using the internal IP and internal subnet renders the
>machine unviewable to the outside world even after the telephone company
>have done their 'tweaking' (subnet maybe?). But using the real IP address,
>that doesn't work either. What I was told is to use the internal one, but
to
>map the real one onto the same card - so I am running two IP's and two
>Subnets on one card. That works - but can someone please explain why? I get
>curious when I do things and I don't know why I'm doing them!
>
>Thanks for your help
>Terence Parker
>
>
------------------------------
From: Jose Romeo Vela <[EMAIL PROTECTED]>
Subject: Re: Need examples scripts for ppp
Date: Sat, 26 Jun 1999 01:20:04 -0400
Carlos Villegas wrote:
> It was very exciting to get into the internet with my Linux OS. Great
> feeling. Now I want to learn about all this ppp-on, ppp-up, scripts etc.
> Where can I find the scripts. Can anybody send me an example of scripts
> to dial and disconnect from their ISPs? Also how can you give non-root
> users access to use these root-owned scripts.
I've used modified versions of scripts that I found at this site:
http://www.wurd.com/wurd/software/dialers/linux.html
I was able to get the ppp-on to work from a non-root account.
------------------------------
From: Andrzej Filip <[EMAIL PROTECTED]>
Subject: Re: Why ppp1 instead of ppp0
Date: Sat, 26 Jun 1999 20:47:33 +0200
James wrote:
> I have the problem that when I close a ppp connections and restart it, it
> comes up as ppp1 then ppp2 etc. Why? I don't see any reason.
> I don't have any access to the Internet anymore then.
>
> I appreciate your help
Configuration below is quite frequent:
When ppp connection is finished its number is given to free
ppp devices pool. If the pool is not empty you get highest
device number from the pool.
AFAIK redhat 5.0 multi ppp support has some "random features"
e.g. if you configure your default route via ppp0
than if you have anytime more than one ppp device active
you have big chance that "logical" ppp0 (in configuration
files) will be run on "system" ppp1 but default route will
be added for "system" ppp0 :-)
I had to fix it myself in my startup scripts.
--
Andrzej (Andrew) A. Filip fax: +1(801)327-6278
mailto:[EMAIL PROTECTED] http://bigfoot.com/~anfi
Postings: http://deja.com/profile.xp?author=Andrzej%20Filip
------------------------------
From: [EMAIL PROTECTED] (Nathan Myers)
Crossposted-To: comp.os.linux.development.apps,comp.os.linux.development.system
Subject: Re: Why not C++
Date: 26 Jun 1999 10:50:07 -0700
Bruce Hoult <[EMAIL PROTECTED]> wrote:
> "Thomas Steffen" <[EMAIL PROTECTED]> wrote:
>> apart from that, C++ might not be a very elegant language, but it is
>> fast. at least compared to other OO languages. and still has about
>> every feature you can expect.
>
>You might want to check out Dylan. It's much simpler and easier to learn
>than C++, and yet is more powerful than C++ ...
> Plus Dylan is designed to be as fast as C++. ...
> Dylan is much better than C++ and Java.
Nonsense. If you think Dylan is as fast as C++, you really
don't know C++ at all, and should know better than to compare
the languages so glibly. Anyway, this is not a languages list.
--
Nathan Myers
[EMAIL PROTECTED] http://www.cantrip.org/
------------------------------
From: [EMAIL PROTECTED]
Subject: Re: Proxy
Date: Sat, 26 Jun 1999 19:38:46 GMT
I tried that last night and it worked for me too. It's all good now.
JJ
In article <OqWc3.6087$[EMAIL PROTECTED]>,
"dpc" <[EMAIL PROTECTED]> wrote:
> OK - Just finished doing this myself, so I'll contribute what I did
but I
> can't guarantee it'll work. Make sure you've got ipchains
installed. Read
> the info on ipchains, what it is, how to use it etc. Here's my
config:
>
> Linux IP: 192.168.0.99
> Win IP: 192.168.0.1
> On the windows box, I set DNS, WINS, and Gateway to the ip of the
Linux box.
> Then on the linux box, with ipchains installed I typed the following
lines.
> (Note :> resembles the prompt, don't type that in. ;o)
> :>ipchains -P forward DENY
> :>ipchains -A forward -s 192.168.0.1/24 -j MASQ
>
> After discovering those worked, I put those two lines into my pppon
script
> which dials the modem. Good luck, I hope this helped somewhat!
>
> dpc
>
> `==========================================
> http://www.deja.com
> Chances are your question
> has been asked before. ;o)
>
> <[EMAIL PROTECTED]> wrote in message news:7kp78f$nht$[EMAIL PROTECTED]...
> > I linux box(198.168.200.1) doing PPP. How do I get WIN95
> > (198.168.200.2) Browser to connect to the internet through the linux
> > box?
> > I can telnet from win95 to linux.
> >
> > JJ
> >
> >
> > Sent via Deja.com http://www.deja.com/
> > Share what you know. Learn what you don't.
>
>
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: [EMAIL PROTECTED] (Nathan Myers)
Crossposted-To: comp.os.linux.development.apps,comp.os.linux.development.system
Subject: Re: Why not C++
Date: 26 Jun 1999 12:20:00 -0700
Thomas Steffen <[EMAIL PROTECTED]> wrote:
> C++ might not be a very elegant language, but it is
>fast, at least compared to other OO languages.
Its syntax isn't very elegant, but where did that come from?
It's fast compared to _any_ language, period. People who say
it's slower than (e.g.) C are just spreading FUD.
--
Nathan Myers
[EMAIL PROTECTED] http://www.cantrip.org/
------------------------------
From: "Michael Faurot" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.help,alt.os.linux
Subject: Re: reverse name lookup - how 2 in linux??
Date: 26 Jun 1999 04:07:08 GMT
Bob <[EMAIL PROTECTED]> wrote:
: how do you get the system name from an ip address?
: iow : reverse dns lookup
nslookup.
--
==============================================================================
Michael | mfaurot | Why do seagulls live near the sea? 'Cause if they
Faurot | atww.org | lived near the bay, they'd be called baygulls.
------------------------------
** 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
******************************