1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
OpenBSDInstallPrelude
For most systems, the easiest way to install OpenBSD/vax OSREV is via
diskless booting over an Ethernet network. You will need both the
"boot.mop" image and the "bsd.rd" kernel to boot. You will also need a
machine configured as a rarp, MOP, bootparam, and NFS server.
Should your VAX have supported SCSI, however, we provide a floppy image
that can be written onto a disk in another system, and when booted on
the VAX will present you with the standard install prompt. If this is
the case, you can skip ahead to the "ready to install OpenBSD" section.
This document will shortly provide examples on how to set up services
for an OpenBSD netboot server. But if more information is required,
the following resources may be helpful:
The OpenBSD manpages for rarpd(8), mopd(8), nfsd(8), mountd(8),
rpc.bootparamd(8), bootparams(5), and diskless(8). These pages are
available online at: <http://www.openbsd.org/cgi-bin/man.cgi>
Brian Chase <bdc@world.std.com> has written a guide for booting a VAX
off of a network. It was written for NetBSD/vax, but the procedure is
virtually identical on OpenBSD, and the document covers the use of
several different platforms as servers.
The guide is available at:
<http://world.std.com/~bdc/projects/vaxen/VAX-netboot-HOWTO>
And finally, there is an OpenBSD/vax mailing list at <vax@openbsd.org>
whose readers would generally be pleased to help.
Configuring the Server:
-----------------------
When you turn on your VAX, it will run a set of self-diagnostic ROM routines.
Depending on the model of VAX you have, it may take quite a while. When
it is done, you will see a >>> prompt (also called the chevron prompt) on the
console. Typing "show dev" or "show ethernet" to get the VAX ethernet
device's MAC address usually works; also try "TEST 50" on MicroVAXen 2000
and 3100.
You will need to create an /etc/ethers file. This file is used by rarpd to
answer rarp (ethernet address->IP address) requests. The format of this file
is the ethernet address followed by the machine name or address. Here is an
example:
08:00:2b:24:72:00 quickvax
Then start rarpd (or configure /etc/rc.conf to always start rarpd).
Copy boot.mop into /tftpboot/mop/1a2b3c4d5e6f.SYS, where "1a2b3c4d5e6f"
represents the six octets of your ethernet address. For example, the
filename for the machine described above would be "08002b247200.SYS".
Note that all non alphanumeric characters must be stripped and the
mac portion must be lower case, the extension upper.
Start mopd by typing "mopd -a".
rpc.bootparamd's configuration file is /etc/bootparams. The format for this
file is described in the diskless(8) and bootparams(5) manpages. Enable
rpc.bootparamd in /etc/rc.conf by changing the value of "bootparamd_flags".
Also, make sure "portmap" is "YES"; you will need portmap running.
nfsd and mountd configuration are described in their respective manual pages.
Make a separate directory for your VAX's /, make sure it is exported via NFS,
and place "bsd.rd" there.
Typing "B <DEVICE>", where <DEVICE> is your VAX's ethernet device, at the
chevron prompt should then load the OpenBSD booter. A countdown should begin;
type any key on the console and type "boot bsd.rd".
OpenBSDInstallPart2
OpenBSDBootMsgs
OpenBSDFTPInstall
OpenBSDHTTPInstall
OpenBSDNFSInstall
OpenBSDDISKInstall(,{:-only-:})
OpenBSDCommonFS
OpenBSDCommonURL
OpenBSDCongratulations
|