home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / unix / bsd / 10962 < prev    next >
Encoding:
Internet Message Format  |  1993-01-06  |  2.1 KB

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!darwin.sura.net!haven.umd.edu!umd5!roissy.umd.edu!mark
  2. From: mark@roissy.umd.edu (Mark Sienkiewicz)
  3. Newsgroups: comp.unix.bsd
  4. Subject: Re: [386bsd] Help finding an up-to-date kernel
  5. Message-ID: <17819@umd5.umd.edu>
  6. Date: 6 Jan 93 17:59:23 GMT
  7. References: <17702@umd5.umd.edu> <1992Dec26.181623.23786@nwnexus.WA.COM>
  8. Sender: news@umd5.umd.edu
  9. Organization: University of Maryland
  10. Lines: 53
  11.  
  12. In article <1992Dec26.181623.23786@nwnexus.WA.COM> antoni@halcyon.com (Toni Moreno) writes:
  13. >: It happens that there was an ethernet board I could borrow, but before I 
  14. >: knew that would be the case, I considered buying one for occasions like
  15. >: this.  I don't have my tape drive yet, though, so it would be more cost
  16. >: effective for me than it would be for you.
  17. >
  18. >The problem I've found is that I have a 386DX-33 with an ethernet board,
  19. >an IP address for me ... but what I haven't is knowing of how to set up
  20. >ftp client. I mean how to define all IP addresses of the others'
  21. >machines and so...
  22. >
  23.  
  24. Here's what you do:
  25.  
  26. When the system came up, it said the name of your ethernet board.  It was
  27. either ne0 for a novel ne-2000 board or w??0 (I forget exactly) for the
  28. western digital board.
  29.  
  30. I had a ne-2000 clone, so I used ne0.  In this example, replace all the
  31. 'ne0' with whatever board you have.
  32.  
  33. first, type
  34.  
  35.     ifconfig ne0 inet xxx.xxx.xxx.xxx 
  36.  
  37. where you put the internet address you will use for your machine in the
  38. place of the xxx's.  This configures the network software.
  39.  
  40. Now you just type
  41.  
  42.     ftp yyy.yyy.yyy.yyy
  43.  
  44. where you replace yyy's with the ip address of the machine you are going
  45. to get stuff from.  If you don't know the address, most unix machines
  46. have 'nslookup'.  (Your 386bsd machine doesn't (yet)).  For example,
  47.  
  48.     % nslookup export.lcs.mit.edu
  49.  
  50.     Name Server:  localhost
  51.     Address:  127.0.0.1
  52.  
  53.     Non-authoritative answer:
  54.     Name:    export.lcs.mit.edu
  55.     Address:  18.24.0.12
  56.  
  57. (note that there isn't any 386bsd stuff there. :)
  58.  
  59. Later, you may want to set up a name server or list machines in /etc/hosts
  60. so your machine can know others by name, but that will be after you get
  61. your install done.
  62.  
  63. Mark S.
  64.  
  65.