[BACK]Return to vax-simh.html CVS log [TXT][DIR] Up to [local] / www

Diff for /www/Attic/vax-simh.html between version 1.25 and 1.26

version 1.25, 2013/01/27 11:27:36 version 1.26, 2013/02/16 15:20:54
Line 48 
Line 48 
 set rq2 cdrom  set rq2 cdrom
 at rq2 floppy52.fs  at rq2 floppy52.fs
   
 at xq0 bge0  at xq0 tap:tun0
   
 boot cpu  boot cpu
 exit  exit
Line 59 
Line 59 
 This configures SIMH to simulate a VAX with a whopping 128 MB of  This configures SIMH to simulate a VAX with a whopping 128 MB of
 memory, a RA92 1.5GB disk, a CD-ROM unit to hold CD1 of your CD-ROM  memory, a RA92 1.5GB disk, a CD-ROM unit to hold CD1 of your CD-ROM
 set, another CD-ROM unit to boot from, and a DELQA Qbus Ethernet  set, another CD-ROM unit to boot from, and a DELQA Qbus Ethernet
 controller.  You'll need to replace <strong>bge0</strong> with the  controller attached to the tun0 interface.
 name of the network interface in your machine.  You also might need to  You might need to replace <strong>/dev/rcd0c</strong> with the
 replace <strong>/dev/rcd0c</strong> with the name of the raw device  name of the raw device corresponding to your real CD-ROM unit.
 corresponding to your real CD-ROM unit.  
   
 <p>  <p>
   
Line 77 
Line 76 
   
 <p>  <p>
   
   Before starting SIMH, you will need to configure the network.
   Create the tun0 network interface and set it into layer 2 mode:
   
   <blockquote>
   <pre>
   # <strong>ifconfig tun0 create</strong>
   # <strong>ifconfig tun0 link0</strong>
   </pre>
   </blockquote>
   
   Bridge it to your ethernet interface and enable the bridge:
   
   <blockquote>
   <pre>
   # <strong>ifconfig bridge0 create</strong>
   # <strong>ifconfig bridge0 fwddelay 4</strong>
   # <strong>ifconfig bridge0 add em0 add tun0</strong>
   # <strong>ifconfig bridge0 up</strong>
   </pre>
   </blockquote>
   
   <p>
   
 Copy <i>5.2/vax/floppy52.fs</i> to the location of your  Copy <i>5.2/vax/floppy52.fs</i> to the location of your
 OpenBSD/vax SIMH environment.  OpenBSD/vax SIMH environment.
   
Line 90 
Line 112 
   
 VAX simulator V3.9-0  VAX simulator V3.9-0
 NVR: buffering file in memory  NVR: buffering file in memory
 Eth: opened OS device bge0  Eth: opened OS device tun0
 Loading boot code from /usr/local/lib/simh/vax/ka655x.bin  Loading boot code from /usr/local/lib/simh/vax/ka655x.bin
   
   

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26