Linux-Networking Digest #465, Volume #12          Fri, 3 Sep 99 19:13:40 EDT

Contents:
  Re: IPChains and FTP ("No one")
  TCP/IP Programming Mystery (Jerry Gardner)
  Re: winpopup ("Klaus-G. Nielsen")
  Access(+) client/server for Linux? (Chris Butler)
  Re: mail Attachments from a command line program... ("Zsolt Mate")
  Re: 2nic same brand (Robert)
  PPP problem... Am I seeing MSCHAP? (Zach Scott)
  real video (hendrik wendler)
  Re: Hostname for PPP connection? (Ian Westcott)
  Re: Why does hitting a key seem to wake up TCP/IP? (Michael Kelly)
  Re: Samba - newbie (Mark Worsdall)
  Demand option in pppd ("Brent Haag")
  Re: Firewalling/IPCHAINS question. (Valentine Murzenok)
  Configuring linuxconf ("Pieter Meijer")
  HELP!!! (Bruno Barreiros)
  The best way of sharing data between a win98 server and linux server! 
([EMAIL PROTECTED])
  Re: 2 Network Cards - 1 Subnet. (M. Buchenrieder)
  local mailbox in netscape (Vic Mortelmans)
  Re: The best way of sharing data between a win98 server and linux server! (Ben 
Belchak)
  SNA & tn3270d & Olicom TR card ("Peter J. Linden")
  delayed telnet or FTP from Windows98 box to  red hat linux 6.0  ("S. Asim Ali")
  Re: Browsers and Linux (David Magda)
  Re: TCP/IP Programming Mystery (Michael Kelly)
  Re: Linux dynamic IP addr. (Michael Kelly)
  Re: Demand option in pppd (Clifford Kite)
  tcpdump -> truncated-ip (Manuel Zabelt)
  Re: PPP and proxyarp option (Clifford Kite)
  Re: Linux-SNA ("Peter J. Linden")
  Re: windows to linux tcp/ip not working ("Andrew Smith")
  Problem with wd8013 combo: no port autodetect ? (Stephane MOUTON)
  ipmasq and dial on demand, RedHat 6.0 (Balatro)

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

From: "No one" <[EMAIL PROTECTED]>
Subject: Re: IPChains and FTP
Date: 1 Sep 1999 20:09:22 GMT
Reply-To: "No one" <[EMAIL PROTECTED]>



Rick Orwig <[EMAIL PROTECTED]> wrote in article
<[EMAIL PROTECTED]>...
> I'm struggling with something here and I'm hoping someone can help me
out.
> Lets say I'm working on setting up a masquerading firewall with a RH 6
> computer.   I want the ability to turn on and off masquerading by ip
address
> inside and outside our lan.  Also, I want the same ability to turn FTP on
> and off by ip address inside and outside.  I have what seems to be a way
of
> turning off surfing (web access) using rules for MASQ but if I allow an
> internal IP address full access to the net with a MASQ line then they
also
> have the ability to FTP (usually not what I want).
> 
> Example:
> 
> ipchains -F input
> ipchains -F output
> ipchains -F forward
> ipchains -P input ACCEPT
> ipchains -P output ACCEPT
> ipchains -P forward ACCEPT
> ipchains -A forward -s 10.0.0.1 -d 0.0.0.0/0 -j MASQ
> ipchains -A forward -s 0.0.0.0/0 -d 0.0.0.0/0 -j REJECT

Something along the lines of 
ipchains -A forward -s 10.0.0.1 -d 0.0.0.0/0 :21 -j REJECT
might do the trick. not sure on the exact syntax (no colon?)

that will cause ipchains to stop any packets destined for port 21, and you
should probably do the same for port 20 (ftp-data)

> 
> This is simple but I gotta start somewhere.  The above address of
10.0.0.1
> can get anywhere on the net.  That address can also FTP anywhere on the
net.
> If I put a workstation of 10.0.0.2 on the above lan it will not get
anywhere
> so that gives me what I want except for the FTP thing.  What do I need to
> add to the above to reject FTP to the address 10.0.0.1 (but still have
> unlimited surfing ability) but not reject FTP for everyone as some will
get
> that access?
> 
> I hope I made sense.
> 
> Thanks,
> 
> Rick Orwig
> 
> 
> 
> 
> 

Matt

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

From: [EMAIL PROTECTED] (Jerry Gardner)
Subject: TCP/IP Programming Mystery
Date: Fri, 03 Sep 1999 19:27:42 GMT


Here's one for all of you TCP/IP sockets gurus:

I've written some sockets code (in C) that implements a simple
client-server application. The client sends 2000 byte buffers to the
server over a TCP connection.

When I run the client and server on different machines connected on an
Ethernet (both with MTU=1500), the server's 'recv' call sometimes
returns a byte count of 1460 bytes instead of 2000. Looking at
Ethernet activity with snoop shows that the 2000 byte send gets
fragmented into two IP packets: 1460 bytes and 540 bytes. The 'recv'
call is obviously returning 1460 because that's the size of the first
fragment. What I don't understand is why doesn't 'recv' wait until it
gets the second fragment and return a count of 2000? (The socket is
*not* a non-blocking socket.)

When I run both the client and server on the same box, this problem
doesn't occur, probably because the loopback device has an MTU > 2000
bytes.

I doubt this problem is specific to Linux, because I've moved the code
to two Solaris boxes and see the exact problem.

Anyone have any idea what might me happening here?

-- 
Jerry Gardner     | "Bill Clinton has all the steely resolve
[EMAIL PROTECTED]  | of a kamikaze pilot on his 37th mission."

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

From: "Klaus-G. Nielsen" <[EMAIL PROTECTED]>
Subject: Re: winpopup
Date: Fri, 03 Sep 1999 18:05:13 +0200

[EMAIL PROTECTED] wrote:
> 
> how to set up "message command" in smb.conf if i want to use linpopup to
> communicate with winpopup?
> [...]

There is a description in file "INSTALL" of the LinPopUp-Package:
Just insert:
message command = /usr/local/bin/linpopup "%f" "%m" %s; rm %s
to your [global settings] (or only [global]) section of smb.conf
In RedHat/Debian the path may be changed!
-- 
Klaus-G. Nielsen <[EMAIL PROTECTED]>
Hamburg/Germany

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

From: [EMAIL PROTECTED] (Chris Butler)
Crossposted-To: comp.sys.acorn.networking
Subject: Access(+) client/server for Linux?
Date: 3 Sep 1999 12:00:46 +0100

Hi,

Does anyone know of a client and/or server for Linux that can handle
Access(+) shares with Acorn machines?

Alternatively, does anyone know where I can find protocol specifications?

-- 
Chris Butler
<[EMAIL PROTECTED]>

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

From: "Zsolt Mate" <[EMAIL PROTECTED]>
Subject: Re: mail Attachments from a command line program...
Date: Fri, 3 Sep 1999 18:41:09 +0200

> > Anybody know how I can send a file as an attachment to an email from a
> > command line app?

man mpack




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

From: Robert <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Subject: Re: 2nic same brand
Date: Fri, 03 Sep 1999 20:28:18 GMT

PAUL wrote:

> i have 2 same nic in one pc
> any info on how to get them going, i saw it here before but i forgot what
> commands

try using netconf!


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

From: Zach Scott <[EMAIL PROTECTED]>
Subject: PPP problem... Am I seeing MSCHAP?
Date: Thu, 02 Sep 1999 16:31:05 GMT

I don't have a problem "connecting" to the ppp server.  What's
happening is after the connection I don't get asked for username,
and password.  The server seems to send aprox. 26 unknown characters (the
characters don't show up in /var/log/messages).  After this a prompt
appears asking for a terminal server password.  That's where I'm stuck.

I'm assuming that MSCHAP specifies some other type of handshaking that
I'm not following.  If this is MSCHAP how do I set things up to work.
If not... any ideas?

Cheers,
  Zach


==================  Posted via CNET Linux Help  ==================
                    http://www.searchlinux.com

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

From: hendrik wendler <[EMAIL PROTECTED]>
Subject: real video
Date: Thu, 02 Sep 1999 20:55:18 +0200

is there any module like eg.

ip_masq_rvideo,

to make real video working ?

thanks, hendrik


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

From: Ian Westcott <[EMAIL PROTECTED]>
Subject: Re: Hostname for PPP connection?
Date: 2 Sep 1999 20:40:08 GMT

Edward S Meadows <[EMAIL PROTECTED]> wrote:
: Suppose that I could get my ISP to put my local machine into
: their database.  Wouldn't I need to associate that hostname
: with an IP address?  I don't see how that works with dynamic
: IP addresses.

: This must be a solved problem, since plenty of Linux users
: get dynamic IP addresses when they connect to their ISP's.

: Edward S. Meadows                          [EMAIL PROTECTED]
: Dept. of Chemical Engineering    Office: (302) 831-0726
: University of Delaware         Home/fax: (302) 369-0777

Well.. the way I do it is to have my machine change its hostname every time
I dial up. In my setup (RedHat), /etc/ppp/ip-up is passed as one of the
arguments the IP address of your new connection. I just do a DNS lookup on
that, capture the reply (through a little awk scripting), set the hostname
to that, and restart sendmail.

-- 

Ian Westcott                                               Rakarra@IRC
[EMAIL PROTECTED]                   [EMAIL PROTECTED]

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

From: [EMAIL PROTECTED] (Michael Kelly)
Subject: Re: Why does hitting a key seem to wake up TCP/IP?
Date: Fri, 03 Sep 1999 20:38:35 GMT

On Fri, 03 Sep 1999 11:55:59 -0400, Tim MacDonald
<[EMAIL PROTECTED]> wrote:

>Is there some sort of "keep alive" packet that is not being transmitted
>after this period of time, and is only awoken by an interrupt to the
>keyboard?

Hmmmmmmmm, if you have crond running you might run the ping
command every 1/2 hour or something and see if that keeps things
from lapsing.


Mike

--

"Genius gives birth, talent delivers."

           -- Jack Kerouac

(Remove NOSPAM, if present, to reply via email)

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

From: Mark Worsdall <[EMAIL PROTECTED]>
Subject: Re: Samba - newbie
Date: Fri, 3 Sep 1999 21:41:50 +0100

In article <[EMAIL PROTECTED]>, Mark Timmings
<[EMAIL PROTECTED]> writes
>
>Thanks your for this info. I'd started looking into this without much
>success so far. Your step by step process for the Linux/Samba setup got
>me up and running.
>
>Can anyone tell me (as a newbie) how I can now view the Win98 folders
>from Linux. I assume I need to mount something :-).
>

Setup a share on satan, say:

C:\Prograqm Files and share it as dominions (No password) with a comment

>From the prompt use smbclient

smbclient //satan/dominions

then type help
-- 
Mark Worsdall - Oh no, I've run out of underpants :(
Home:- [EMAIL PROTECTED]       http://www.wizdom.org.uk
Shadow:- [EMAIL PROTECTED]  http://www.shadow.org.uk
Work:- [EMAIL PROTECTED] http://www.hinwick.demon.co.uk
Web site Monitoring:-             http://www.shadow.org.uk/SiteSight/

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

From: "Brent Haag" <[EMAIL PROTECTED]>
Subject: Demand option in pppd
Date: Fri, 3 Sep 1999 14:35:36 -0500

Has anyone had any luck with the 'demand' option for pppd?  Whenever I use
it doesn't ever try to dial out when try to ping, or view a site using
Netscape.  It just says host is unreachable, etc.  Any pointers would be
helpful.  thanks.

--


Brent Haag
[EMAIL PROTECTED]
Kansas State University



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

From: [EMAIL PROTECTED] (Valentine Murzenok)
Subject: Re: Firewalling/IPCHAINS question.
Reply-To: [EMAIL PROTECTED]
Date: Fri, 03 Sep 1999 19:32:13 GMT


>anymore and now it works perfectly with Red Hat 6.0 except that
>minutes after installing and logging on I think I had someone portscan
>me and gain access through telnet or ftp or some other open service
>before I had a chance to get unneeded services shut of and a firewall
>up. I would like to be able to connect to everything, but not have

go to
http://www.nerdherd.net/ipchains/
and download archive with 3 scripts from there....
edit and put one of them into /etc/ppp/ip-up.d
and it will be exectured every time connection is up ....
because if you are going to put fireweall rules in rc.local, they will be
excetued at bootup, and if you have dynamic IP, then it makes no sense to
create ipchains rules at boot up

-- 
  \\\\\\\\\\\\---------------///////////////
     Replying to e-mail, do not forget to
                      remove string "_remove"
  ////////////---------------\\\\\\\\\\\\\\
         

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

From: "Pieter Meijer" <[EMAIL PROTECTED]>
Subject: Configuring linuxconf
Date: Fri, 3 Sep 1999 22:23:15 +0200

Can anyone help me please.
I want to use linuxconf to configure the webserver, but I don't have an IP
adress myself. Is it a must to have an IP adress, or is there a workaround?

Pieter



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

Subject: HELP!!!
From: [EMAIL PROTECTED] (Bruno Barreiros)
Date: 3 Sep 1999 22:04:09 GMT

Hello guys,

Could anyone help me installing my modem in the Suse Linux?
Please contact me at: [EMAIL PROTECTED]

Thanks

Bruno

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

From: [EMAIL PROTECTED]
Subject: The best way of sharing data between a win98 server and linux server!
Date: Fri, 03 Sep 1999 20:28:49 GMT

I have a win98 server and Linux server installed on the same hard disk
disk(on 2 different primary partitions of course). I want to
create a third partition for storing data. This data partition
must be accessible to both servers.  For example, if I run win98
server, all clients (include win98 server itself) will be able
to access to this data partition. On the other hand, if I decide
to use Linux as the server instead of win98 server, I want all
the clients pc (including linux server) to be able to access to
this data disk as well.
Can this be achieved? If so, what's is the best way of doing it?
What partition type should be used?

thanks
Brian


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

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

From: [EMAIL PROTECTED] (M. Buchenrieder)
Subject: Re: 2 Network Cards - 1 Subnet.
Date: Fri, 3 Sep 1999 17:02:41 GMT

"Frazer Dixon" <[EMAIL PROTECTED]> writes:

[...]

>I think the problem is something to do with netmask?

>Anyway my IP range goes thus:

>xxx.xxx.xxx.64    Net
>.65                     Gateway (ISDN router has this IP)
>.66 -> .70          Fixed IPs of network machines.
>.71                    Broadcast

[...]

This setup needs a 255.255.255.240 netmask. (See relevant RFC1878) .

Michael
-- 
Michael Buchenrieder * [EMAIL PROTECTED] * http://www.muc.de/~mibu
          Lumber Cartel Unit #456 (TINLC) & Official Netscum
    Note: If you want me to send you email, don't munge your address.

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

From: Vic Mortelmans <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Subject: local mailbox in netscape
Date: Fri, 03 Sep 1999 23:00:51 +0200

Hello,

Could anybody tell me how to configure a local mailbox in Netscape 4.5?

Mail is gathered in var/spool/mail/vic and Netscape uses
~/vic/.netscape/nsmail/Inbox as mailbox. Making 'Inbox' a (symbolic or
hard-)link to var/spool/mail/vic only works temporaryly because Netscape
seems to overwrite it with an ordinary (empty) Inbox-file.

How to tell Netscape where to look for my local mail!?

Greetings,

Vic Mortelmans

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

From: [EMAIL PROTECTED] (Ben Belchak)
Subject: Re: The best way of sharing data between a win98 server and linux server!
Date: Fri, 03 Sep 1999 21:13:53 GMT

In article <7qpb1j$vqa$[EMAIL PROTECTED]>,
        [EMAIL PROTECTED] writes:
> I have a win98 server and Linux server installed on the same hard disk
> disk(on 2 different primary partitions of course). I want to
> create a third partition for storing data. This data partition
> must be accessible to both servers.  For example, if I run win98
> server, all clients (include win98 server itself) will be able
> to access to this data partition. On the other hand, if I decide
> to use Linux as the server instead of win98 server, I want all
> the clients pc (including linux server) to be able to access to
> this data disk as well.
> Can this be achieved? If so, what's is the best way of doing it?
> What partition type should be used?
> 
> thanks
> Brian
> 
> 
> Sent via Deja.com http://www.deja.com/
> Share what you know. Learn what you don't.

I would personally use the Windows 98 FAT filesystem to solve the problem.  The reason 
for this being that Linux AND Windows can read FAT filesystems, allowing you to 
acheive the dual-boot and dual-server solution you were requiring...You can set up a 
Samba server on your Linux box and share the partition so that your Linux box looks 
just like your Windows box, thereby creating a seamless solution that you are looking 
for.

-- 
Ben Belchak
iEngineer.com
Nothing's beautiful from every point of view.

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

From: "Peter J. Linden" <[EMAIL PROTECTED]>
Subject: SNA & tn3270d & Olicom TR card
Date: Fri, 03 Sep 1999 22:57:54 +0200
Reply-To: [EMAIL PROTECTED]

Hi everybody,

did anyone get tn3270d from snipix running with his Olicom Token Ring
card (in an SNA network with a IBM 3174 as gateway to the host)? If yes,
please help me.

Ciao, Peter

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

From: "S. Asim Ali" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.questions,linux.redhat.misc,redhat.general
Subject: delayed telnet or FTP from Windows98 box to  red hat linux 6.0 
Date: Fri, 3 Sep 1999 17:21:23 -0400

Hello,
     when I telnet or FTP from Windows98 box to  red hat linux 6.0 , it take
over a 1 minute to connect. However I have no problem in connecting to
Windows98 box from Linux box. The connection is instant. I cannot find
anything wrong that would cause this delay.

Thanks


Asim






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

From: [EMAIL PROTECTED] (David Magda)
Crossposted-To: alt.os.linux,comp.os.linux.setup
Subject: Re: Browsers and Linux
Date: 3 Sep 1999 21:19:23 GMT
Reply-To: [EMAIL PROTECTED]

Chauzie <[EMAIL PROTECTED]> writes:

[...]
>if the X server sucks.  Who wants linux without a GUI.
I do.

P.S. Can you please put your reply *after* the message you are quoting?
Thanks.

--
David Magda <dmagda at ee.ryerson.ca>, 2nd Year Electrical Eng.
"Well," said Pooh, "what I like best--" and then he had to stop and think.
Because although Eating Honey was a very good thing to do, there was a
moment just before you began to eat it which was better than when you were, 
but he didn't know what it was called. -A.A.Milne,The House at Pooh Corner 


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

From: [EMAIL PROTECTED] (Michael Kelly)
Subject: Re: TCP/IP Programming Mystery
Date: Fri, 03 Sep 1999 20:31:49 GMT

On Fri, 03 Sep 1999 19:27:42 GMT, [EMAIL PROTECTED] (Jerry Gardner)
wrote:

>Anyone have any idea what might me happening here?

Does the write function indicate it sent 2000 bytes?
Is there a timeout on the recv function?  If you do another
read do you get the second packet?  More details please.


Mike

--

"Genius gives birth, talent delivers."

           -- Jack Kerouac

(Remove NOSPAM, if present, to reply via email)

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

From: [EMAIL PROTECTED] (Michael Kelly)
Subject: Re: Linux dynamic IP addr.
Date: Fri, 03 Sep 1999 20:35:21 GMT

On Fri, 03 Sep 1999 16:23:22 GMT, [EMAIL PROTECTED] wrote:

>Hi:
>   How can I find out what is my dynamic IP addr.
>assigned to me by ISP after dial-up from linux.?

If you need to find out programmatically I believe most people
use an ip-up script to call ipconfig to get the ip address assigned.
If you just want to find out at user level and are connecting using
a ppp-on script there's a tk script called tkppp you can download
for use in XWindows that shows the ip address in it's window when
it makes the connection.  It also has a little "keep-alive" pinger
built in, so it's pretty nice little utility.

You have to have tcl scripting support and XWindows of course.

>
>
>Best Regards,
>
>Raj Marpaka
>[EMAIL PROTECTED]
>
>
>Sent via Deja.com http://www.deja.com/
>Share what you know. Learn what you don't.


Mike

--

"Genius gives birth, talent delivers."

           -- Jack Kerouac

(Remove NOSPAM, if present, to reply via email)

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

From: kite@NoSpam.%inetport.com (Clifford Kite)
Subject: Re: Demand option in pppd
Date: 3 Sep 1999 15:57:32 -0500

Brent Haag ([EMAIL PROTECTED]) wrote:

: Has anyone had any luck with the 'demand' option for pppd?  Whenever I use
: it doesn't ever try to dial out when try to ping, or view a site using
: Netscape.  It just says host is unreachable, etc.  Any pointers would be
: helpful.  thanks.

Demand needs the options shown below, plus the other options you have.

pppd 192.168.0.1:192.168.0.2 ipcp-accept-local ipcp-accept-remote demand ...

The reserved IP addresses are placeholders and the choices are not
normally critical.  The exception is an ISP that doesn't like the
customers specifying anything other than 0.0.0.0 in an IPCP request for
an IP address to use.  Then you may need ppp-2.3.9 in order to specify
only a remote IP using

  :192.168.0.2  or similar.

You also may need to do

echo -n 1 > /proc/sys/net/ipv4/ip_dynaddr

at boot-up.  See Documentation/proc.txt in the kernel source tree.

--
Clifford Kite <kite@inet%port.com>                    Not a guru. (tm)
/* A salute to Inspector Baynes, of the Surry Constabulary, the only
   police Inspector to ever best Mr. Sherlock Holmes at his own game.
   "The Adventure of Wisteria Lodge", by Sir Arthur Conan Doyle. */

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

From: Manuel Zabelt <[EMAIL PROTECTED]>
Subject: tcpdump -> truncated-ip
Date: Mon, 30 Aug 1999 07:21:57 +0200

Hallo!

I have a little question:

I started tcpdump for ippp0 with no other parameters and got
the following:

21:18:28.369908 truncated-ip - 28199 bytes missing!0.52.130.168 > 64.0.64.6: (frag 
29728:28229@63512+) [tos 0x2e] [ttl 0]
21:18:28.448508 truncated-ip - 50015 bytes missing!0.40.130.170 > 64.0.64.6: (frag 
65054:50057@63512+) [tos 0xcc] [ttl 0]
21:18:28.488404 truncated-ip - 441 bytes missing!0.61.130.172 > 64.0.64.6: (frag 
49153:492@63512+) [ttl 0]
21:18:28.577723 truncated-ip - 444 bytes missing!0.58.130.173 > 64.0.64.6: (frag 
49153:492@63512+) [ttl 0]
21:18:28.709761 truncated-ip - 25922 bytes missing!0.40.130.174 > 64.0.64.6: (frag 
29481:25960@63512+) [tos 0x74] [ttl 0]
21:18:31.700501 truncated-ip - 31177 bytes missing!0.46.130.175 > 64.0.64.6: (frag 
16386:31181@63512+) [ttl 0]
21:18:31.775011 truncated-ip - 31177 bytes missing!0.46.130.176 > 64.0.64.6: (frag 
16386:31181@63512+) [ttl 0]
21:18:31.879526 truncated-ip - 10702 bytes missing!0.40.130.177 > 64.0.64.6: (frag 
19456:10696@63512+) [ttl 0]
21:18:31.885442 truncated-ip - 9934 bytes missing!0.40.130.179 > 64.0.64.6: (frag 
3584:9928@63512+) [ttl 0]
21:18:31.928603 truncated-ip - 9658 bytes missing!0.60.130.180 > 64.0.64.6: (frag 
19456:9688@63512+) [ttl 0]

Between two such lines, there are 2 - 4 normal lines.
What does this mean?
What is 64.0.64.6?

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

From: kite@NoSpam.%inetport.com (Clifford Kite)
Crossposted-To: comp.os.linux.setup
Subject: Re: PPP and proxyarp option
Date: 3 Sep 1999 16:19:29 -0500

Mark Steele ([EMAIL PROTECTED]) wrote:

: Sep  1 23:54:39 taz pppd[1057]: Cannot determine ethernet address for proxy
: ARP            <<<<<<What is this about
: Sep  1 23:54:39 taz pppd[1057]: local  IP address 209.142.128.103
: Sep  1 23:54:39 taz pppd[1057]: remote IP address 209.142.128.5

: I have set the 'proxyarp' option in the options file but as you see above I
: get an error message. What does "Cannot determine ethernet address for proxy
: ARP" mean.

To call an ISP you don't need proxyarp.  The message means that pppd
can't find a local interface, other than the PPP interface, that has an
address in the same subnet as 209.142.128.5.  Such an interface is
necessary for proxy arp to provide the means for return packets from a
LAN to get to the PPP peer, which is what proxy arp is all about.

: I can ping 209.142.128.103 but I can not ping 209.142.128.5

I didn't see anything that would cause this and the ifconfig output
showed no errors or dropped packets.  You can add the pppd debug option
and see if anything else falls out.  You can also check the device file
configuration and modem configuration to make sure they are OK.

--
Clifford Kite <kite@inet%port.com>                    Not a guru. (tm)
/* A salute to Inspector Baynes, of the Surry Constabulary, the only
   police Inspector to ever best Mr. Sherlock Holmes at his own game.
   "The Adventure of Wisteria Lodge", by Sir Arthur Conan Doyle. */

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

From: "Peter J. Linden" <[EMAIL PROTECTED]>
Subject: Re: Linux-SNA
Date: Fri, 03 Sep 1999 22:53:15 +0200
Reply-To: [EMAIL PROTECTED]

Hi Jack,

depends on your environment. Check
http://www.snipix.freeserve.co.uk/linux.htm. They provide a dlc and dlpi
driver as well as a modifed IBM token ring card driver. If you are
interested in a tn3270 gateway, they have it.

Well, we are trying that solution with an Olicom token ring card and are
still researching, but with an
IBM token ring card it should work.

Ciao, Peter


Jack Daniels wrote:
> 
> Perhaps I'm asking the impossible, but does someone out there have a
> copy of the GPL version of Linux-SNA.  I see now that it has gone
> commercial [namely via ICE], with a price tag that is obsurd
> [~$8000.00us].
> 
> Regards.
> 
> --
> Jack Daniels                    [EMAIL PROTECTED]
> E-Solutions                     http://www.spyda.co.z/jack
> Stocks & Stocks I.T.            Work : +27 (0) 12 420 8555

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

From: "Andrew Smith" <[EMAIL PROTECTED]>
Subject: Re: windows to linux tcp/ip not working
Date: Fri, 3 Sep 1999 22:18:49 +0100

hi

this is my problem too. please let me know if you find the solution. i'll do
the same.....



Andrew


Christopher Burrows <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> hi,
>
> i'm trying to connect a windows98 box and a linux box (debian potato,
> 2.2.12) without much luck. i can't even get them to ping one another.
>
> my linux box is 192.168.1.11 and the windows box is 192.168.1.12.
> they're both setup with a netmask of 255.255.255.0, with the standard
> tools on each operating system. they're plugged into a working hub. but
> they refuse to ping each other.
>
> i am certain the problem is in my setup (or in software otherwise) since
> when i boot the linux box to windows, with the exact same setup, they
> can communicate perfectly!
>
> i have a pretty plain vanilla debian setup. i turned off ip spoof
> protection; that didn't work. i updated the kernel; that didn't work. i
> made sure that no firewall-type protection exists; still nothing.
>
> please help me! here is some revelent stuff:
>
> one:~> /sbin/ifconfig
> eth0      Link encap:Ethernet  HWaddr 00:A0:24:23:81:E0
>           inet addr:192.168.1.11  Bcast:192.168.1.255
> Mask:255.255.255.0
>           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
>           RX packets:0 errors:0 dropped:0 overruns:0 frame:0
>           TX packets:9 errors:0 dropped:0 overruns:0 carrier:0
>           collisions:0 txqueuelen:100
>           Interrupt:10 Base address:0x300
>
> lo        Link encap:Local Loopback
>           inet addr:127.0.0.1  Mask:255.0.0.0
>           UP LOOPBACK RUNNING  MTU:3924  Metric:1
>           RX packets:32 errors:0 dropped:0 overruns:0 frame:0
>           TX packets:32 errors:0 dropped:0 overruns:0 carrier:0
>           collisions:0 txqueuelen:0
>
> ppp0      Link encap:Point-to-Point Protocol
>           inet addr:216.158.62.3  P-t-P:207.245.82.114
> Mask:255.255.255.255
>           UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1500  Metric:1
>           RX packets:1944 errors:1 dropped:0 overruns:0 frame:1
>           TX packets:2081 errors:0 dropped:0 overruns:0 carrier:0
>           collisions:0 txqueuelen:10
> one:~> /sbin/route
> Kernel IP routing table
> Destination     Gateway         Genmask         Flags Metric Ref    Use
> Iface
> 207.245.82.114  *               255.255.255.255 UH    0      0        0
> ppp0
> 192.168.1.0     *               255.255.255.0   U     0      0        0
> eth0
> default         207.245.82.114  0.0.0.0         UG    0      0        0
> ppp0
> one:~> uname -a
> Linux one 2.2.12 #1 Fri Sep 3 03:48:22 EDT 1999 i586 unknown
> one:~> /sbin/lsmod
> Module                  Size  Used by
> ppp_deflate            40036   0  (autoclean)
> bsd_comp                3824   0  (autoclean)
> ppp                    20716   2  (autoclean) [ppp_deflate bsd_comp]
> slhc                    4296   1  (autoclean) [ppp]
> serial                 18260   2  (autoclean)
> 3c509                   5780   1
> one:~>
>
> - cj
>



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

From: [EMAIL PROTECTED] (Stephane MOUTON)
Subject: Problem with wd8013 combo: no port autodetect ?
Date: 3 Sep 1999 22:03:51 GMT

Hello !
I have two PC with two WD8013 EWC (i.e. with AUI/BNC/10b2 combo) :
I have ifconfig and route corrects (already tested on other lans)
but no ping between the two machines.
Howhever, the wd and 8390 modules receive something because :
- when I disconnect, I see collisions by ifconfig
- when I ping from a dos machine, I see errors (x pings=x errors) in ifconfig

So I wonder : is port detection working ?
Does anybody have experienced (and solved I hope) the same problem ?
Thanks !!


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

From: [EMAIL PROTECTED] (Balatro)
Subject: ipmasq and dial on demand, RedHat 6.0
Date: Fri, 03 Sep 1999 21:58:04 GMT

        I'm using RedHat 6.0 on a baby server at home.  Ipmasq was
cake to set up and get working.  HOWEVER, I manually have to fire off
the ppp0 script and then shut it down when I'm done (I used the
control-panel application to configure the dialup).

        Is there any simple way to get dial on demand with an
inactivity timeout.  Ultimately, I'd like it to fire up and dial out
when my PC fires off a request outside the internal subnet, then hang
up after XX seconds of inactivity on the line.  That saves me the
trouble of telnetting in and launching/closing the ppp connection.

Any help or suggestions would be greatlly appreciated!

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


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