home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / sys / next / sysadmin / 6631 < prev    next >
Encoding:
Text File  |  1992-11-20  |  2.4 KB  |  60 lines

  1. Newsgroups: comp.sys.next.sysadmin
  2. Path: sparky!uunet!europa.asd.contel.com!emory!sol.ctr.columbia.edu!news.unomaha.edu!slab.slip.uiuc.edu!derek
  3. From: derek@slab.slip.uiuc.edu (Derek Taubert)
  4. Subject: Re: Question regarding SLIP for 3.0
  5. Message-ID: <1992Nov21.041801.9539@slab.slip.uiuc.edu>
  6. Reply-To: derek@slab.slip.uiuc.edu (Derek Taubert)
  7. Organization: Damage, inc.
  8. References: <By07Cs.Ao@oceania.com>
  9. Date: Sat, 21 Nov 1992 04:18:01 GMT
  10. Lines: 48
  11.  
  12. > Okay I give up.  I'm using the SLIP_920904 slip and I'm running into 
  13. > some problems which I can't seem to get around.  Here is the scenario.
  14. > I've got a slipclient and a sliphost, and I can dial the sliphost from the
  15. > slipclient easily, but I can't seem to convince the slipclient that there
  16. > is a network route to all the other hosts on the network.
  17.  
  18. First off, your default routing for slipclient should be to sliphost over the
  19. SLIP interface.  Got that?  I thought so.
  20.  
  21. > The network looks something like this
  22. >     (sliphost)--------network A--------(Sun running routed)----network B----.
  23. >       |
  24. >       modem------network C-------modem--slipclient
  25. > Network A, B, and C all have different class C network addresses.  All
  26. > hosts on A and B know how to get to each other.  But from the slipclient
  27. > I can't get to anybody except the sliphosts.  I've tried running routed
  28. > on both the slipclient and the sliphost, but when I run routed in sliphost
  29. > after some time the entry in the routing table (of sliphost) for the route 
  30. > to slipclient will be deleted by routed and so the slipclient will just
  31. > hang.
  32.  
  33. Now, I'm going to complain about you using routed.  From what you've
  34. drawn here, there is NO reason that you should be using dynamic routing.
  35. Static entries in the machines routing tables will do you just fine, as there
  36. is only one possible path per machine pair.
  37.  
  38. The default routing for the sliphost should be network A, the Sun should have
  39. an entry for routing to network A, and ick...  Why does the SLIP interface have
  40. to have a different netid?  Make that sucker network A, and your life will be
  41. much easier.  Course, I suppose you could also add an entry for network C on
  42. the Sun (gateway = sliphost), but I would opt for changing network C if at all
  43. possible.
  44.  
  45. Summary:
  46. slipclient
  47.     route add default sliphost 0
  48. sliphost
  49.     route add default Sun 0
  50.     route add slipclient slipclient 0
  51. Sun
  52.     route add net networkA sliphost 0
  53.     route add net networkC sliphost 1
  54.  
  55. That should do the trick (I think).
  56.  
  57. Derek Taubert
  58.