Документ взят из кэша поисковой машины. Адрес оригинального документа : http://crydee.sai.msu.ru/ftproot/pub/misc/doc/ip-os2-routing
Дата изменения: Sun Aug 20 14:09:16 1995
Дата индексирования: Sun Apr 10 04:47:25 2016
Кодировка: koi8-r

Поисковые слова: annular solar eclipse
From comp.chem.msu.su!f118.n5020!f400.n5020!f144.n5020!f32.n5020!not-for-mail Sun Aug 20 14:09:16 1995
Path: comp.chem.msu.su!f118.n5020!f400.n5020!f144.n5020!f32.n5020!not-for-mail
Newsgroups: fido7.su.os2
Distribution: fido7
X-Comment-To: All
From: OS/2 FAQ Robot
Date: Thu, 17 Aug 95 12:30:58 +0400
Subject: Seldom article - 1
Message-ID: <856445780@f32.n5020.z2.ftn>
Organization: Default SendMsg Origin
X-FTN-AREA: SU.OS2
X-FTN-MSGID: 2:5020/32.0 330c5354
X-FTN-PID: Copy.exe for OS/2 v. 3.00
X-FTN-Tearline: SendMsg/2 v1.05
X-FTN-Origin: Default SendMsg Origin (2:5020/32.0)
X-FTN-SEEN-BY: 50/128 316 319 332 502 520 461/121 464/200 466/10 469/999 4615/4
X-FTN-SEEN-BY: 4625/1 5000/31 44 5010/21 5012/4 5015/28 5020/32 35 52 62 68 69 109
X-FTN-SEEN-BY: 5020/114 118 144 157 190 200 204 214 225 242 251 252 269 292 300 310
X-FTN-SEEN-BY: 5020/400 463 603 5026/9 5028/3 5031/3 5047/12 5049/1 5050/9 5051/15
X-FTN-SEEN-BY: 5054/10 5060/1 5077/3 5078/15 5080/22 5085/250 5090/3
X-FTN-PATH: 5020/32 144 400
X-FTN-PATH: 5020/118
Lines: 150



Статья из подбоpки "pедких" статей. Помещается в конфеpенцию pаз в 30 дней.

==============================================================================


From : Tony Rall
Subject : Routing for OS/2
Summary : a mini FAQ for routing
Keywords : routing slip proxy arp
Organization : IBM Almaden Research Center (2:50/128.0@fidonet)




Routing for OS/2 TCP/IP

(Wherever "SLIP" is indicated below, any supported point-to-point
protocol could be substituted. From the routing standpoint, it makes no
difference. Currently, August 1994, SLIP is the only such protocol
supported by OS/2 TCP/IP.)

In the examples below, IP addresses are shown using the following
shorthand:

L1 = IP address for interface 1 on subnet L. For example, if the
subnet address is 128.1.2.0 (subnet mask = 255.255.255.0), the IP
address would be 128.1.2.1.

Most, if not all, of the changes suggested below for SETUP.CMD and
TCPSTART.CMD (these are in the TCPIP\BIN directory) can be accomplished
by completing the Network, Routing, and Autostart sections of the TCP/IP
configuration notebook (TCPIPCFG.EXE) rather than simply editing the
indicated files.

Routing on a machine with a single interface
--------------------------------------------

--------------- LAN
| | |
L1 L2 L3-----other subnets
router

* Static routing
Simple, cheap, but no recovery from router failure. In SETUP.CMD,
for machines such as L1 and L2, add:
route -f add default L3 1
The network administrator should provide you with the router's IP
address.
* Dynamic routing
Not very complicated, some cost (requires another process (demon)
running on your machine that listens for certain broadcast
packets), can provide automatic recovery from router failure and
configuration changes. To use this, at least one router on your
network must also support RIP, a routing protocol most commonly
used on end-user networks. In TCPSTART.CMD, add (or uncomment):
start routed -q
or (to avoid having the demon's window appear on your screen):
start /min routed -q
or (to avoid routed even showing up in your window list):
detach routed -q
You don't need any route statements in SETUP.CMD.

Routing a LAN via SLIP to the internet
--------------------------------------

--------------- LAN
| | | SLIP link
L1 L2 L3/S1-------------------S2/I1---(the internet)

In this setup, the administrator of the S2/I1 machine (usually a
commercial Internet provider) must be aware that you have a "network"
at your end of the SLIP link and not simply a single machine. That
administrator usually must assign you the local network address (L)
that you will be using (as well as the SLIP addresses (S1 and S2). In
some cases, the SLIP addresses will be handled dynamically; this would
usually be handled in SLIPUP.CMD, rather than in SETUP.CMD, on L3/S1.
(I hope that the LAN addresses, L1, L2, and L3, are not dynamic - I
wouldn't know how to handle that.)

* The non-SLIP LAN machines (L1, L2)
In SETUP.CMD, add:
route -f add default L3 1
* The SLIP-LAN machine (two IP addresses: L3 and S1)
In SETUP.CMD, add:
route -f add default S2 1
In TCPSTART.CMD, you may need to start routed (but without the
"-q" option) - see below:
start routed
* Routing required on the "internet" side
If routed is not being used by L3/S1, a network route (on S2/I1)
is needed to the LAN:
route add net L S1 1
If routed is being used by L3/S1, no route statements should be
needed on S2/I1.

Routing a LAN (office) machine via SLIP to a home machine
---------------------------------------------------------

SLIP link
S1-------------------S2/I1---(the office network)
home office

In this setup, the administrator of the office network must provide
you with your IP addresses. You need at least 3 of them: S1, S2, and
I1. Ideally S1 and S2 will be on a different subnet than I1 - ask for
this configuration. If your network administrator will only provide
addresses in the same network, you must use the "proxy arp" solution
below.

* The home machine
In SETUP.CMD, add:
route -f add default S2 1
* The office (SLIP-LAN) machine
* Routing to a SLIP subnet
You simply must be running a routing protocol out the LAN (I1)
interface. In TCPSTART.CMD, you need to start routed (but without
the "-q" option):
start routed
* Proxy arp solution - no separate SLIP subnet
In this case, all of the IP addresses (S1, S2, I1) that you've
been assigned are on the same subnet. Normal routing techniques
will not work because the S1 address (no other LAN machine needs
to talk to S2) is not physically on the same network as I1. So
we try to use a technique call "proxy arp": the office machine
will respond on the I network to arp queries for S1 with its own
adapter address.

First you have to determine the LAN adapter address of the I1
interface. Issue "netstat -n" and copy the displayed "physical
address" for the I1 interface. In SETUP.CMD, after the "arp -f"
statement add:
arp -s S1 12:34:56:78:90:12 pub
where 12:34:56:78:90:12 is the adapter address of I1.

This tells TCP/IP that when it receives an arp message for IP
address S1, that it should respond with its own adapter address.
Thus other machines on the I subnet, when wanting to send to S1,
will actually transmit to I1. The S2/I1 machine should forward
the packet over the SLIP link to S1.




==============================================================================


dz