Linux-Networking Digest #305, Volume #12 Fri, 20 Aug 99 18:13:47 EDT
Contents:
Re: ipchains and forwarding. ("Cedric Blancher")
Recursive queries with BIND (Chris Parker)
Who has the Best Tale of Networking Woe? (sean messenger)
Re: eth0 in promiscuous mode (Vidar Andresen)
WAN via Internet Backbone ("Don Prouty")
Re: IP Masquerading Question (QuestionExchange)
Re: Problems with Port&Adress-Translation (ipmasqadm) (QuestionExchange)
Re: IP Forwarding - What happens without it? (QuestionExchange)
Re: SN3200 and SN2000 network cards - newbie ("sago")
Re: DNS server won't start. (Stephen Torri)
Modem Dialup from Windows via Linux? (Michael Ruebner)
Re: WhereToFind? Socket 7 motherboard with onboard ethernet, sound, and video?
Re: Linux as seocondary DNS of a Microsoft primary DNS? (Raymonds Doetjes)
Re: telnet as root (sean messenger)
RH6, TP600 and PCMCIA IBM TR 16/4 Turbo (Christopher)
Re: CNet's PRO120 and Linux? (Peter Buelow)
sharing a modem on a win95 system and login in with linux (Martin)
Re: Ping Timeout? ("Bradley Dunn")
Re: IPCHAINS forwarding and/or 2nd nic slowing down Internet access (Eric deRiel)
Re: Samba's last stand! ("Kerry J. Cox")
Re: gateway: What am I doing wrong? (Chris Butler)
----------------------------------------------------------------------------
From: "Cedric Blancher" <[EMAIL PROTECTED]>
Subject: Re: ipchains and forwarding.
Date: Fri, 20 Aug 1999 19:25:56 +0200
Davide Marzaloni <[EMAIL PROTECTED]> a �crit dans le message :
7pjtto$8bg$[EMAIL PROTECTED]
> my linux box has two NICs: internal (eth0=172.16.255.254/16) and
external
> (eth1=X1.X2.X3.X4/Y).
>
> First forwarding was disabled (cat /proc/sys/net/ipv4/forward = 0)
>
> Should I activate it? I think ipchains should do the work for it.
Isn't it?
No, you have to do it by yourself after having setting ipchains forward
rules
> I could not build a firewall in such condition, so I actived it.
Good thing...
> Now (forwarding ON) I cannot build a "deny all except" firewall system
with
> ipchains: I only can do "accept all except".
No, you can. Just have a look at the ipchains HOWTO.
You can set the policy of a rule. By setting input policy to DENY, you
can build a "deny all except" firewall.
> I tryied this script to activate firewalling with ipchains:
> _____________________________
> ipchains -F
> ipchains -P input DENY
> ipchains -P output DENY
> ipchains -P forward DENY
These rules are setting policy to DENY, so are denying all paquets.
> How can I build a list for web client (80), fto (20 and 21) and so on?
I will assume you filter with the forward rule because you're
masquerading your network. Now your firewall is denying all paquets. The
only thing you have to do is to allow protocols you want to.
For exemple :
ipchains -A forward -s $in_network -p TCP -d 0/0 20 -j MASQ
#ftp-data, useful for active FTP ;)
# Don't forget to load ip_masq_ftp module
ipchains -A forward -s $in_network -p TCP -d 0/0 21 -j MASQ #ftp
ipchains -A forward -s $in_network -p TCP -d 0/0 80 -j MASQ #www
and so on.
All you have to do is to masquerade all ports you want to reach, that's
all.
If you want to masquerade all connections from your network with the
usual :
ipchains -A forward -s $in_network -j MASQ
you will have to filter with the input rule which is much more
complicated as you must specify rules for answers. Moreover, to make
your firewall efficient, you will have to look at source port and ACK
bit.
For FTP, you will have to make thoses rules :
ipchains -A input -p TCP -s $in_network 1204:65535 -d 0/0 21 -y -j
ACCEPT # FTP SYN
ipchains -A input -p TCP -s 0/0 21 -d $gateway 1024:65535 ! -y -j
ACCEPT # reply
ipchains -A input -p TCP -s 0/0 20 -d $gateway 1024:65535 -y -j
ACCEPT # FTP_DATA active SYN
ipchains -A input -p TCP -s $in_network 1024:65535 -d 0/0 20 ! -y -j
ACCEPT # reply
ipchains -A input -p TCP -s $in_network 1024:65535 -d 0/0
1024:65535 -y -j ACCEPT # FTP-DATA passive SYN
ipchains -A input -p TCP -s 0/0 1024:65535 -d $gateway 1024:65535
! -y -j ACCEPT # reply
As you can see, you have to implement 6 rules instead of 2, but it is
more secure, as you can filter services available on your gateway (even
if opening services on gateway is a bad idea).
Notice that FTP server is communicating with the gateway in case of
masquerading and always remember that input chains applies to both
interfaces :)
------------------------------
From: Chris Parker <[EMAIL PROTECTED]>
Subject: Recursive queries with BIND
Date: Fri, 20 Aug 1999 20:11:05 GMT
I am having problems with a Lunix box doing recursive queries, it's not.
Any suggestions?
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: sean messenger <[EMAIL PROTECTED]>
Subject: Who has the Best Tale of Networking Woe?
Date: Thu, 19 Aug 1999 17:09:47 GMT
Looking for writers!
Yes, if you have a real life horror story about your Network, case study
or any product review you would like to publish, post a message at
TelekomTalk, the Networker's Discussion, at
http://www.telekomnet.com/cgi-bin/WebX?14@@.ee7dccb, and we'll contact
you about publishing it as a feature story on our home site,
telekomnet.com. We may even award some hardware to the winners (palm
V's, anyone?).
The field of play is wide-open, so begins the test.
Who has the Best Tale of Networking Woe?
(I am always partial to terrifying encounters with NT that sent you
running into the arms of LI/U/NIX, but anything will do. Praise,
excoriation, and anything in-between. We want to publish what happens in
the trenches.)
sean messenger
webmaster
telekomnet.com
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: [EMAIL PROTECTED] (Vidar Andresen)
Subject: Re: eth0 in promiscuous mode
Date: Thu, 19 Aug 1999 17:25:23 GMT
In article <MPG.122547cd287e97fd989692@news>,
[EMAIL PROTECTED] (thebrownhighlander) wrote:
>In article <[EMAIL PROTECTED]>,
>[EMAIL PROTECTED] says...
>> promiscous mode means that the card will capture every frame on the network
>> & pass it up to a higher layer, where it willl be discarded. This mode is
>> normally only useful for running network sniffer programs, so disabling it
>> may improve your performance.
>sorry for the bother but how would i disable this sniffer? i don't even
>know what it is.
Dont know if there is a sniffer there, it might have some purpose,
but:
man ifconfig.
('ifconfig eth0 -promisc') maybe.
Mvh Vidar Andresen
------------------------------
From: "Don Prouty" <[EMAIL PROTECTED]>
Subject: WAN via Internet Backbone
Date: Thu, 19 Aug 1999 10:39:36 -0700
Anybody connected 2 offices using the Internet/Linux IPfwding/IPsec
rather than leased lines? How is result?
------------------------------
From: QuestionExchange <[EMAIL PROTECTED]>
Subject: Re: IP Masquerading Question
Date: 19 Aug 1999 18:1:34 GMT
> I am using a Linux box (kernel 2.0.34). Currently running IP
>
> masquerading with some firewall filters.
> My question, is it possible to setup the box to monitor
multiple
> external IP addresses and if traffic is destined for a
specific one to
> forward the traffic to a specific internal ip address? For
instance,
> if I wanted to hide my email server behind the "firewall",
could the
> Linux box forward SMTP (port 25) and POP3 (port 110) to a
specific
> internal machine, if requested at a specific external
address?
>
For the latter question about port forwarding,
upgrade to a 2.2.x kernel, grab the ipmasqadm tool
and compile in autofw support. (ipmasqadm is
in the netbase package in my distribution).
Once you've done that, run 'ipmasqadm portfw', the
help is extremely straightforwa
--
This answer is courtesy of QuestionExchange.com
http://www.questionexchange.com/servlet1/showUsenetGuest?ans_id=2862&cus_id=USENET&qtn_id=2224
------------------------------
From: QuestionExchange <[EMAIL PROTECTED]>
Subject: Re: Problems with Port&Adress-Translation (ipmasqadm)
Date: 19 Aug 1999 18:1:44 GMT
Try this example. I've replaced the
IP numbers with more general ones to
make it less confusing (at least to me).
Network A: 1.0.0.0
Sample FTP client: 1.0.0.1
Network B: 2.0.0.0
IP Masquerading box: 2.0.0.1
FTP server: 2.0.0.2
You want machines on the 1.0.0.0 network
to be able to get to 2.0.0.2, correct?
A little bit of FTP info:
when you FTP from a to b, two connections
are established, one from a to b on
port 21, and another from b to a on
port 20.
2.0.0.1 needs to be told that
2.0.0.1 on port 21 should be transparently
forwarded to 2.0.0.2 on port 21.
On the machine that is 2.0.0.1:
ipmasqadm portfw -a -P tcp -L eth0 21 -R 2.0.0.2 21
should do the trick (you will need to change eth0
to the ethernet card that gets packets from 1.0.0.1 and
2.0.0.2 to the FTP server)
so that you can
instruct 1.0.0.1 to connect to 2.0.0.1
and it will be transparently connected
to 2.0.0.2
--
This answer is courtesy of QuestionExchange.com
http://www.questionexchange.com/servlet1/showUsenetGuest?ans_id=2869&cus_id=USENET&qtn_id=2227
------------------------------
From: QuestionExchange <[EMAIL PROTECTED]>
Subject: Re: IP Forwarding - What happens without it?
Date: 19 Aug 1999 18:2:2 GMT
> Hi,
>
>
> I am having this setup of a PC with a Ethernet card for the
LAN network. And at
> regular interval, this machine will connect up to my ISP
using an external
> modem.
>
> Does this means that I must include ip forwarding in my
kernel? Can anyone tell
> me what happens if this is not done? Will the speed of either
networks get
> affected?
>
> THanx for any feedback :-)
>
You only need IP forwarding if other machines
will be accessing the internet through your
computer and modem.
--
This answer is courtesy of QuestionExchange.com
http://www.questionexchange.com/servlet1/showUsenetGuest?ans_id=2864&cus_id=USENET&qtn_id=2242
------------------------------
From: "sago" <[EMAIL PROTECTED]>
Subject: Re: SN3200 and SN2000 network cards - newbie
Date: Thu, 19 Aug 1999 14:41:38 -0400
I think I have tried both cards with linux and they work fine. SN3200 with
2.0.36 onwards and SN2000 as NE2000 compatible. If you want drivers for
SN3200 ( win98 ) you can write to [EMAIL PROTECTED] He runs a BBS and keeps
it.
Sagolsem
Karen Pilot wrote in message <3yPu3.4881$[EMAIL PROTECTED]>...
>Hi,
>
>Does anybody know anything at all about these 2 network cards
>SN3200 is a RTL8029 chipset (pci ne2000 clone)
>SN2000 is unknown (isa says its compatible with all ne2000 drivers but
>isn't)
>
>If i could find an update for the drivers for this card it would be much
>appreciated, win98 and linux platform would be desired
>
>Thanks
>
>
------------------------------
From: Stephen Torri <[EMAIL PROTECTED]>
Subject: Re: DNS server won't start.
Date: Thu, 19 Aug 1999 14:53:17 -0400
Yes. I did "ndc stop" then "ndc start". Yet I still got the same error
message.
[EMAIL PROTECTED] wrote:
>
> Have you tried killing and restarting named?
>
> Stephen Torri wrote:
> >
> > Yes it is. named is running.
> >
> > Stephen
------------------------------
From: [EMAIL PROTECTED] (Michael Ruebner)
Subject: Modem Dialup from Windows via Linux?
Date: 20 Aug 1999 21:03:15 GMT
Hi,
I finally convinced the Big Boss to give a Debian/Samba combo a try as
PDC for our small business network (2xNT4WS, 2xWin3.11). It will also
serve as a dialin server for some of our people to access some of the
shares.
However, since t.B.B. does not agree on a permanent connection to the
Internet, I must find a way to let users on the Win boxes fire up a
modem ppp connection on the Linux machine--kind like DUN.
The only thing I can think of is a script that will automatically initiate
a ssh connection from one of the Win boxes to the Linux machine. Since
I am not familiar with Win scripting, and the output has to be a bit more
verbose, I'd like to know if anybody out here has tried the same?
Any input greatly appreciated.
Mike
------------------------------
From: [EMAIL PROTECTED] ()
Crossposted-To: comp.os.linux.portable,comp.os.linux.hardware
Subject: Re: WhereToFind? Socket 7 motherboard with onboard ethernet, sound, and
video?
Date: 19 Aug 1999 18:53:37 GMT
On Thu, 19 Aug 1999 11:33:56 -0500, David Scott Copus
<[EMAIL PROTECTED]> wrote:
>Exactly Jon. and thanks for the "support". :>
>
>I have an LCD output module that is working great. I am working
>on an input device. I don't know what to go with... infrared remote
>style or a custom serial keypad interface. And I'm looking for a
>slim case now.
how about using the Matrix Orbital serial interface LCD module with
the keypad option? this $100 device (which i snagged at LinuxWorld as
soon as i saw it) uses a serial port for display, 5-volt to drive the
display, and includes a 10-pin keypad connector (or you can use the
serial port)... i slapped this baby on my headless server so i can see
who's logged in, the CPU load, uptime, and disk statistics... you can
use this with a little keypad to create a menu-driven selection
routine (the device is easily programmable)...
http://www.matrix-orbital.com
(i bought mine through LinuxCentral)... there are several units:
16x2 LCD
20x2 LCD
20x2 Fluorescent w/keypad support
20x4 LCD
20x4 Fluorescent w/keypad support
40x2 etc.
40x4 etc.
the 20x4 LCD w/wo keypad seems most popular... prices range from
$61.95 to $124.95 (US)...
i don't work for 'em... just wanted another neat Linux toy!
BTW, the units come with a programming manual and a diskette with a
Win9x (ugh!) demo and the LCDproc Linux driver (with source, of
course!)
just a thought!
willie
>
>I don't know if this is feasable yet, but I think I may try to use DOS
>for the operating system and place it on a bootable CD-ROM with
>all the MP3s on it--to avoid using a hard drive which might be
>susceptable to the heat. I'll probably have to make a large RAM drive
>if any of my programs will need it.
>
>I didn't know if it is even possible to *run* Linux from a read-only
>media and just let it use a RAM drive for it's logging, etc. If anybody
>knows if Linux can be ran on read-only medium... let me know!
>
>thanks all!
>Scott.
>[EMAIL PROTECTED]
>
>Jon Akers wrote:
>
>> Simple. He probably wants to build an mp3 player for his car, and this sort
>> of board would work quite well for playing and updating the mp3's.
>>
>> As for boards, I know that PC-100 is notorious for making these kinds of
>> boards. I know that right now they also have a board that you can use
>> either a Sockey 370 or Slot 1 chip in that has all of these features. I
>> would go with a low end Socket 370 chip and go to town for this sort of
>> application.
>>
>> Shawn Green wrote:
>>
>> > OK, I need to ask. Why/how are you going to put a computer in your car?
>> >
>> > BTW, go to www.atacom.com or www.astak.com. You may be able to find the
>> > board at one of those places.
>> >
>> > Shawn
>> >
>> > David Scott Copus wrote:
>> >
>> > > I'm looking for a Socket 7 (preferable Super 7) that has *onboard*
>> > > sound, ethernet, and video. Does anybody recommend any
>> > > motherboards that have all these features... and can work
>> > > with Linux?
>> > >
>> > > Or... if you know where I can look to find motherboards with all
>> > > these features... I will gladly accept any suggestions!!
>> > >
>> > > Just curious... but would an Intel 166 MMX (socket 7) run _cooler_
>> > > or _warmer_ than any Pentium II chip? I want to put a computer
>> > > in my car... and am concerned about heat. :>
>> > >
>> > > thanks!
>> > > Scott.
>> > > [EMAIL PROTECTED]
>
------------------------------
From: Raymonds Doetjes <[EMAIL PROTECTED]>
Subject: Re: Linux as seocondary DNS of a Microsoft primary DNS?
Date: Thu, 19 Aug 1999 23:38:41 +0200
Yes this should work.
I only run it the otherway around since the NT DNS server is incomplete and is
not stable enough. Sometimes the service just dies.
Raymond
Rui Mendes wrote:
> Hello,
>
> I would like to configure my DNS (running with BIND and LINUX RedHat
> 6.0)secondary for a domain whos primary DNS is running under Microsoft.
> I tried to configure my named.conf file, but it doesn't work.
>
> My question is: Is it possible to have a Linux DNS secondary for a Microsoft
> DNS?
>
> Regards
>
> Rui
------------------------------
From: sean messenger <[EMAIL PROTECTED]>
Subject: Re: telnet as root
Date: Thu, 19 Aug 1999 21:20:28 GMT
yup.
you should be able to control all the root functionality by simply
su'ing over to the user profile of root (w/ appropriate password), but
i've not been able to scan root mail from that profile, as su'ing seems
to change only permissions profiles but not user i.d.
any way to telnet in, su to root, and scan system mail messages with
native mail readers?
In article <[EMAIL PROTECTED]>,
Bob James <[EMAIL PROTECTED]> wrote:
> On 8/19/99, 1:06:34 PM, [EMAIL PROTECTED] (Wlmet) wrote regarding
telnet=20=
>
> as root:
> > I have two Slackware 4.0 machines connected over
> > a telephone line using mgetty. I cannot telnet in
> > as root. How does one get around this problem?
>
> That's not a problem, that's a security feature. Allowing root to=20
> telnet in is dangerous, as it presents only one layer of security=20
> between a potential cracker and the guts of your box. It's
recommended=20=
>
> that you telnet as a regular user, and su to root if needed.
>
> --=20
> Bob James |mailto:[EMAIL PROTECTED]
> IS Manager |http://www.orielinc.com
> Oriel Incorporated |(608) 238-8134 x223
>
>
--
======
Need advice on products? Implementations? Installations?
Ask and Answer at
TelekomTalk, the Networker's Discussion, at
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: Christopher <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.portable,redhat.networking.general
Subject: RH6, TP600 and PCMCIA IBM TR 16/4 Turbo
Date: Thu, 19 Aug 1999 21:30:59 GMT
I have recently reloaded RH6.0 on an IBM Thinkpad600, compiled 2.2.10
kernel, and added the PCMCIA 3.0.14 drivers, lib, utils, and teh tr225.gz
files to teh /pcmcia_3_0_14/clients directory.
When I boot, the Delaying tr0 fails, but PCMCIA starts sucessfully with two
beeps. When I issue a ifconfig -a , I see both lo and tr0, but when I use
netconf to set the ip, netmask, gw, etc., the mahcine hangs during shutdown
while trying to stop tr0.
Any idea's? When I ping now, I get "network unreachable"
Thanks much!
Christopher
================== Posted via CNET Linux Help ==================
http://www.searchlinux.com
------------------------------
From: Peter Buelow <[EMAIL PROTECTED]>
Subject: Re: CNet's PRO120 and Linux?
Date: Fri, 20 Aug 1999 14:59:05 -0500
Woojin Lee wrote:
>
> Hi.
>
> I'd like to find out if CNet's Pro120 10/100BT NIC would work with
> Linux.
> I'm using Mandrake 6.0.
>
> Thanks in advance.
>
> Woojin
Can't say for sure, but a quick search for the card on Yahoo turned up
a bunch of hits for this card. One being for www.cnetusa.com, but I am
sure you knew this. I bring this up because there were a few other hits
that mirrored this site or sold their cards. One had a pic and it looked
like a RealTek chipset. Not very reassuring answer, but they don't
actually say whose chipset they use. Without this info, you can't
reliably figure out whether there is a driver for this type of generic
card (by that I mean, not SMC, 3Com, or Intel who use proprietary chips
and have specific drivers). There were a few sites that listed a Linux
driver for this card, but the file was always an .exe file, so who
knows. Email their support department and ask what chipset (like I said,
I am willing to bet it is the RT8139 chipset judging by the cost, but it
could possibly be the DEC Tulip chipset as well) they use. That should
tell you what driver to use. I would bet that it is supported anyway
though, as most NIC's nowadays are. Good luck.
--
Peter Buelow - Software Engineer
--
"Finger to spiritual emptiness underlying everything." -- How a C manual
referred to a "pointer to void."
------------------------------
From: Martin <[EMAIL PROTECTED]>
Crossposted-To: redhat.networking.general,redhat.general
Subject: sharing a modem on a win95 system and login in with linux
Date: Thu, 19 Aug 1999 21:31:00 GMT
My brother has a cable modem. We are both running windows 95 now and we
shared the cable modem across the network. In this way, we can both surf
the net, use icq and send/receive mail. For sharing the modem, i did the
following:
1. install sygate modem share program at the cable modem computer (the
server)
2. gave the servers network card the adress 192.169.0.1
3. the client uses 192.169.0.1 as a gateway.
Now i just installed linux redhat 6 and want to get acces to the internet
with linux too. (Then finally windows can be deleted :) But how to do that?
My computer is a toschiba 320 CDT with a Xircom PCMCIA card with a 56k
modem and a 10/100mbit ethernet card.
Please help so i can get rid of that MS-stuff!!
Martin
================== Posted via CNET Linux Help ==================
http://www.searchlinux.com
------------------------------
From: "Bradley Dunn" <[EMAIL PROTECTED]>
Subject: Re: Ping Timeout?
Date: Fri, 20 Aug 1999 16:47:57 -0400
-c count
Stop after sending (and receiving) count ECHO_RESPONSE packets.
This is straight from man, as you can see -c stops after X count number of
packets are received, not after a give amount of time, so if a server was
doing ping -c 1 mydownserver.com should sit and wait forever.
Brad
Bill Pitz <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> Eran Dvey-Aharon <[EMAIL PROTECTED]> gave us the interesting
posting of:
> > The ping has timeout after 10 seconds. I use it just this way, and when
> > have no connection simply wait ....
> > You can modify the ping source to reduce that amount of time if it is
> > critical to you.
>
> I have been running, as a test, "ping -c 1 host" and it will sit and ping
for
> ever if the host is not alive. The packets do time out after 10 seconds
if
> I don't specify the -c, but it defeats the purpose of what I'm trying to
do...
>
> -Bill
------------------------------
Subject: Re: IPCHAINS forwarding and/or 2nd nic slowing down Internet access
From: Eric deRiel <[EMAIL PROTECTED]>
Date: Fri, 20 Aug 1999 00:57:40 GMT
Ricky Ng-Adam <[EMAIL PROTECTED]> writes:
> Eth1 is connected to 192.168.1.2 (host on local network) and eth0 to the
> Internet.
>
> -The problem-
[...]
> Everything is OK until I load a web page
> from 192.168.1.2. Then, the ping time goes higher (and the network is
> much
> slower!)...
I have a similar problem, though not exactly identical: traffic
through eth0 (connected to the Internet) slows down considerably over
time until the device is stopped and then restarted. In my case, the
types of data transfers involved range from http to X to SMB -- never
any one thing, but the slowdown will eventually occur even if no data
are transferred.
A sample session (w.x.y.z is the gateway provided by the ISP):
[fruitbat@kiwi network-scripts]$ ping w.x.y.z
PING w.x.y.z (w.x.y.z): 56 data bytes
64 bytes from w.x.y.z: icmp_seq=0 ttl=63 time=44.0 ms
64 bytes from w.x.y.z: icmp_seq=1 ttl=63 time=27.7 ms
64 bytes from w.x.y.z: icmp_seq=2 ttl=63 time=38.3 ms
--- w.x.y.z ping statistics ---
3 packets transmitted, 3 packets received, 0% packet loss
round-trip min/avg/max = 27.7/36.6/44.0 ms
[fruitbat@kiwi network-scripts]$ ping w.x.y.z
PING w.x.y.z (w.x.y.z): 56 data bytes
64 bytes from w.x.y.z: icmp_seq=0 ttl=63 time=49.8 ms
64 bytes from w.x.y.z: icmp_seq=1 ttl=63 time=557.5 ms
64 bytes from w.x.y.z: icmp_seq=2 ttl=63 time=97.5 ms
64 bytes from w.x.y.z: icmp_seq=3 ttl=63 time=117.5 ms
64 bytes from w.x.y.z: icmp_seq=4 ttl=63 time=77.6 ms
64 bytes from w.x.y.z: icmp_seq=5 ttl=63 time=97.5 ms
64 bytes from w.x.y.z: icmp_seq=6 ttl=63 time=97.5 ms
64 bytes from w.x.y.z: icmp_seq=7 ttl=63 time=77.6 ms
64 bytes from w.x.y.z: icmp_seq=8 ttl=63 time=97.4 ms
--- w.x.y.z ping statistics ---
9 packets transmitted, 9 packets received, 0% packet loss
round-trip min/avg/max = 49.8/141.1/557.5 ms
[fruitbat@kiwi network-scripts]$ ping w.x.y.z
PING w.x.y.z (w.x.y.z): 56 data bytes
64 bytes from w.x.y.z: icmp_seq=0 ttl=63 time=1127.2 ms
64 bytes from w.x.y.z: icmp_seq=1 ttl=63 time=147.2 ms
64 bytes from w.x.y.z: icmp_seq=2 ttl=63 time=187.1 ms
64 bytes from w.x.y.z: icmp_seq=3 ttl=63 time=1130.0 ms
64 bytes from w.x.y.z: icmp_seq=4 ttl=63 time=134.6 ms
64 bytes from w.x.y.z: icmp_seq=5 ttl=63 time=266.9 ms
64 bytes from w.x.y.z: icmp_seq=6 ttl=63 time=97.4 ms
--- w.x.y.z ping statistics ---
7 packets transmitted, 7 packets received, 0% packet loss
round-trip min/avg/max = 97.4/441.4/1130.0 ms
[fruitbat@kiwi network-scripts]$ ping w.x.y.z
PING w.x.y.z (w.x.y.z): 56 data bytes
64 bytes from w.x.y.z: icmp_seq=0 ttl=63 time=1031.3 ms
64 bytes from w.x.y.z: icmp_seq=1 ttl=63 time=1121.3 ms
64 bytes from w.x.y.z: icmp_seq=2 ttl=63 time=1043.9 ms
64 bytes from w.x.y.z: icmp_seq=3 ttl=63 time=1160.7 ms
--- w.x.y.z ping statistics ---
6 packets transmitted, 4 packets received, 33% packet loss
round-trip min/avg/max = 1031.3/1089.3/1160.7 ms
[fruitbat@kiwi network-scripts]$ sudo ./ifdown eth0; sudo ./ifup ifcfg-eth0
Password:
[fruitbat@kiwi network-scripts]$ ping w.x.y.z
PING w.x.y.z (w.x.y.z): 56 data bytes
64 bytes from w.x.y.z: icmp_seq=0 ttl=63 time=21.5 ms
64 bytes from w.x.y.z: icmp_seq=1 ttl=63 time=40.2 ms
64 bytes from w.x.y.z: icmp_seq=2 ttl=63 time=20.3 ms
64 bytes from w.x.y.z: icmp_seq=3 ttl=63 time=21.2 ms
64 bytes from w.x.y.z: icmp_seq=4 ttl=63 time=20.0 ms
--- w.x.y.z ping statistics ---
5 packets transmitted, 5 packets received, 0% packet loss
round-trip min/avg/max = 20.0/24.6/40.2 ms
[fruitbat@kiwi network-scripts]$
These were taken over the course of about two hours. It looks like
something very specific, but I haven't been able to figure it out.
Any suggestions?
eric
--
"We come and go alone, why do they need to know?"
------------------------------
From: "Kerry J. Cox" <[EMAIL PROTECTED]>
Subject: Re: Samba's last stand!
Date: Fri, 20 Aug 1999 11:34:59 -0600
David,
Reading through this thread you mentioned something that has been bugging and
a possible fix for Samba. When I back up my files from off a Linux box to a
Windows CD-RW disk it works great. But when I take that same disk home and then
place it on my Win98 box and then copy those same files via Samba oiver to my
Linux box, usually they are tarred and zipped files, everything is changed to
UPPERCASE.TAR.GZ. Is there any way to turn this feature off? You mentioned
something about "hunt". Could you possibly clarify this a bit more.
Thanks.
KJ
--
.-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-.
| Kerry J. Cox Vyzynz International Inc. |
| [EMAIL PROTECTED] Systems Administrator |
| (801) 596-7795 x101 http://www.vii.com |
| ICQ# 37681165 http://quasi.vii.com/linux/ |
`-------------------------------------------------------'
David Crooke wrote:
> Hiawatha Bray wrote:
> >
> > Okay...I'm almost there. But a new problem has arisen. When I go to my
> > Windows machine and click on the Linux icon, it asks for a password. I type
> > my root password on the Linux box--the only one I have on it--and it says
> > incorrect password. I don't get it. How do I log into my own computer?
> > Help!
>
> Give the Linux username and password - if you use "Tools -> Map Network
> Drive" from the File Exploder then put the Linux username in the
> "connect as" box.
>
> A couple of other points:
>
> 1. Some versions of Win9x have a broken implementation of SMB, and they
> cast the data they send to the Linux box to uppercase - since Linux (and
> Unix) usernames and passwords are case sensitive, Samba must be
> configured "hunt" for the real combination. Alleviate this by using all
> lowercase usernames and passwords but including digits and symbols in
> the password to make it hard to guess.
>
> 2. If you get the error "Not authorised to log in from this station" it
> is because Windows is configured with its pseudo-security* option
> whereby it will refuse to connect unless the other end is using
> encryption. Find the file "Win95PlainPassword.reg" and copy it to the
> Windows PC and double click to update the appropriate registry setting.
>
> Enjoy
> Dave
>
> * To find out why this doesn't really improve security very much, read
> the Samba technical docs, they have a succint explanation.
>
> --
> David Crooke, Austin TX, USA. +1 (512) 656 6102
> "Open source software - with no walls and fences, who needs Windows
> and Gates?"
------------------------------
From: [EMAIL PROTECTED] (Chris Butler)
Crossposted-To: comp.os.linux.setup,comp.os.linux.misc
Subject: Re: gateway: What am I doing wrong?
Date: 20 Aug 1999 12:01:25 +0100
[comp.os.linux.misc - Thu, 19 Aug 1999 14:57:04 +0900] * Youjip wrote *
> ifconfig lo 127.0.0.1 => fine
> route add -net 127.0.0.0 ==> fine
> ifconfig eth0 166.104.88.108 => fine
> route add -net 166.104.88.0 ==> fine
> route add default gw 166.104.88.1 ==> Ouch!!!
> After executing the previous steps, if I type 'route' it shows the
> first two lines(networks) and stalls. 'route -n' shows the third
> entry(gateway) properly.
It's trying to do a reverse DNS lookup.
Stick 166.104.88.1 in your /etc/hosts, and put 166.104.88.0 in
/etc/networks.
--
Chris Butler
<[EMAIL PROTECTED]>
------------------------------
** 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
******************************