home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / sys / ncr / 536 < prev    next >
Encoding:
Text File  |  1992-12-14  |  1.8 KB  |  49 lines

  1. Newsgroups: comp.sys.ncr
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!usc!elroy.jpl.nasa.gov!sdd.hp.com!ncr-sd!ncrcae!grok39.ColumbiaSC.NCR.COM!heath
  3. From: heath@grok39.ColumbiaSC.NCR.COM (Robert.Heath)
  4. Subject: Re: UUCP over TCP
  5. Message-ID: <1992Dec14.170103.224@ncrcae.ColumbiaSC.NCR.COM>
  6. Nntp-Posting-Host: grok39.columbiasc.ncr.com
  7. Organization: NCR Corp., Columbia SC
  8. References: <371@uiunix.ui.org>
  9. Date: Mon, 14 Dec 92 22:01:02 GMT
  10. Lines: 37
  11.  
  12. In article <371@uiunix.ui.org> you write:
  13. >We are trying to set up UUCP of TCP on an NCR 3445 running SVR4.0
  14. >release 2.0.  The WIN-TCP manual indicates that we need to set up the
  15. >uucp Devices, Dialers, and Systems files, but when we do this as
  16. >described it doesn't work.  Specifically, Uutry reports the following:
  17. >
  18.  
  19. Shane,
  20.     Here's your problem.  Your remote machine either does not have
  21. a listener process running, or is listening on the wrong port.
  22.  
  23. >t_connect to addr "\x00020401c0cb41af"
  24.                           ^^^^
  25. >t_connect: Incorrect address format
  26.  
  27. The port in the above string is 0x0401, which is 1025 decimal.
  28. The remote system might be listening on 0x0ace which is 2766 decimal.  
  29. The object is to make the port to which your machine sends match the 
  30. port on which the listener listens.  
  31.  
  32. To find out which port (in decimal) the remote listener is listening, run
  33. the following command ON THE REMOTE SYSTEM:
  34.  
  35.   echo 16 i `nlsadmin -l - tcp | cut -c7-10 | tr "[a-z]" "[A-Z]" ` p | dc
  36.  
  37. If this errors out, the system doesn't have a listener configured.
  38.  
  39. Otherwise, take the port number it gives you and type 
  40.  
  41.     /usr/etc/rfsaddr -h <hostname> -p <portnumber> 
  42.  
  43. to get the new IP/port string.  Replace the current value, \x00020401c0cb41af,
  44. in your system's Systems file with the string that rfsaddr gives you.  
  45. It oughta work now.
  46.  
  47. See a follow-up posting for more details on how to set up UUCP over WIN-TCP.
  48.  
  49.