T.R | Title | User | Personal Name | Date | Lines |
---|
8743.1 | | GIDDAY::CAMERON | And there shall come FORTH (Isaiah 11:1) | Thu Feb 06 1997 22:46 | 8 |
| Re: Note 8743.0 by ADISSW::FERRARA
>Can anyone get me pointed in the right direction?
Add a return route as well via the FDDI?
(Never done this myself, just a suggestion).
James
|
8743.2 | | SMURF::MENNER | it's just a box of Pax.. | Thu Feb 06 1997 23:31 | 9 |
| To IP, end destinations are interfaces not nodes so to ping system 1 to
system 2 using FDDI simply type:
ping 10.0.0.4 (from system 1)
pinging anything in subnet 16.126.64 (assuming netmask of 255.255.255.0)
will always go out thru 16.126.64.8 interface on system 1
|
8743.3 | Thanks...rlogin questions | ADISSW::FERRARA | | Fri Feb 07 1997 16:51 | 13 |
|
Thanks for the explanation in .2; I am able to ping from each
system.
Any idea why it takes a long time (a minute or 2) to get the
Password prompt when I rlogin to either system?
I eventually get the prompt, but why so long.
It appears to take this large amount of time when the Ethernet
cable is disconnected...this doesn't make sense to me...
-BobF
|
8743.4 | | SMURF::DANIELE | | Mon Feb 10 1997 08:26 | 6 |
| > It appears to take this large amount of time when the Ethernet
> cable is disconnected...this doesn't make sense to me...
> -BobF
Is anything in syslog? Are you running NIS, or using using NFS?
|
8743.5 | Not much in syslog.log... | ADISSW::FERRARA | | Mon Feb 10 1997 09:51 | 13 |
|
I don't see anything relative to logins in the recent syslog.log file.
Should I expect something specifically?
I do see an entry in /usr/var/adm/syslog.dated/10-Feb-09:09/auth.log
for every time I login as the ROOT.
It still takes a LONG time when both Ethernet cables are disconnected
before I get the Password prompt when Rlogin'ing in...
-Bob
|
8743.6 | Real Routing Question... | ADISSW::FERRARA | | Mon Feb 10 1997 10:13 | 51 |
|
Can anyone help me with this Routing issue...
Same systems as noted in .1
I need to get network traffic from Network A routed to Network C,
and vice versa...
Would I add the following routes????
To System #1: route add Network-C 10.0.0.3 ...
Where Network-C is the "Destination" and "10.0.0.3" is the
Gateway?
Similarly, to System #2:
route add Network-A 10.0.0.4 ...
Is there anything else I need to do to setup each system as a Router?
FDDI
|
|
| Network A +-----------+
+-<---------->--| System #1 |
+-----------+ 10.0.0.3
| FDDI |--------+
+-----------+ |
|
|
|
Network C +-----------+ |
+-<---------->--| System #2 | |
| +-----------+ |
| | FDDI |--------+
FDDI +-----------+ 10.0.0.4
Thanks,
Bob
|
8743.7 | | ZEKE::ranger.zko.dec.com::dilsworth | Keith Dilsworth | Mon Feb 10 1997 13:44 | 24 |
| re .0
Try:
system #1> route add -host 16.126.64.25 10.0.0.4
system #2> route add -host 16.126.64.8 10.0.0.3
re.6
To make it permanant, substitute your network number and netmask and try:
system #1> /usr/sbin/rcmgr set ROUTER yes
system #1> echo '-net Network_C -netmask 255.255.255.0 10.0.0.4' >> /etc/routes
system #1> /usr/sbin/rcinet restart
system #2> /usr/sbin/rcmgr set ROUTER yes
system #2> echo '-net Network_A -netmask 255.255.255.0 10.0.0.3' >> /etc/routes
system #2> /usr/sbin/rcinet restart
|