From gerard.calliet at pia-sofer.fr Sun Nov 3 17:47:03 2013 From: gerard.calliet at pia-sofer.fr (=?ISO-8859-1?Q?G=E9rard_Calliet?=) Date: Sun, 03 Nov 2013 23:47:03 +0100 Subject: [Simh] how to get eth connexion In-Reply-To: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> Message-ID: <5276D267.2030200@pia-sofer.fr> Hello, I am a beginer on simh. I have tried a lot of thing to get connected by ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms 5.5 ... / ucx 4.0 I have instaled wincap on a Windows Seven I cannot get any connexion my init : ; ; Load CPU microcode ;load -r /usr/local/vax/data/ka655.bin ; ; Attach non-volatile RAM to a file; ;attach nvr /usr/local/vax/data/nvram.bin ; ; This virtual machine has 64M memory set cpu 128m ; ; Define disk drive types. RA92 is largest-supported VAX drive. ;set rq0 ra92 ;set rq1 ra92 set rq2 ra92 set rq3 cdrom ; ; Attach defined drives to local files attach rq0 rq0.dsk ;attach rq1 /usr/local/vax/data/d1.dsk attach rq2 rq0_55.dsk ; ; Attach the CD-ROM to its file (read-only) attach -r rq3 image.iso ; ; Disable unused devices. It's also possible to disable individual devices, ; using a construction like "set rq2 disable" if desired. ; ;set rl disable ;set ts disable ; ; Attach Ethernet to a network interface set xq enabled set xq mac=74-2F-68-CD-07-05 attach xq0 eth1 ; set console telnet=9000 ; ; Now start the emulator boot cpu I join what is said on the consol. What is wrong ? Is there anything to do on the hardware interfaces ? Are there possible incompatibilities ? Any help would be good. Think you. G?rard Calliet -------------- next part -------------- A non-text attachment was scrubbed... Name: console simh.JPG Type: image/jpeg Size: 33821 bytes Desc: not available URL: From Mark at infocomm.com Sun Nov 3 18:37:40 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Sun, 3 Nov 2013 15:37:40 -0800 Subject: [Simh] how to get eth connexion In-Reply-To: <5276D267.2030200@pia-sofer.fr> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> On Sunday, November 03, 2013 at 2:47 PM, G?rard Calliet wrote: > Hello, > > I am a beginer on simh. I have tried a lot of thing to get connected by > ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms 5.5 ... / ucx 4.0 I have > instaled wincap on a Windows Seven I cannot get any connexion Hi G?rard, Try using the latest simh binaries from https://github.com/simh/Win32-Development-Binaries/blob/Win32-Development-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip Alternatively, if you've got a Visual Studio environment (or MinGW) available, you can build from the latest sources available from: https://github.com/simh/simh/archive/master.zip If you are still having problems, provide the output of "SHOW ETHERNET" from a "sim>" prompt along with the output of IPCONFIG/ALL from a Windows command prompt, and explain what makes you think that the ethernet is not working. Good Luck. - Mark From bob at supnik.org Sun Nov 3 19:53:29 2013 From: bob at supnik.org (Bob Supnik) Date: Sun, 03 Nov 2013 19:53:29 -0500 Subject: [Simh] [simh] testing simulated CPUs In-Reply-To: References: Message-ID: <5276F009.6010908@supnik.org> This sounds like AXE, the VAX architectural exerciser. AXE had a wide variety of tests - 5M or more in each major instruction group - and logic for positioning operands and setting up memory management to stress paging boundary conditions, unaligned operands, tracing, and other special conditions. AXE's limitations were that it couldn't test for pipeline-related problems (addressed in later verifiers such as MAX, which did multiple instruction sequences), for real-time conditions like interrupts or I/O, or for console HALT. AXE was intended to be run without a reference host. The test cases were first run on the reference, and the results added to the test cases as the correct answers. AXE could then be run either as a test harness to drive a simulator or on new hardware (or simulated hardware). When AXE was finally run against SimH VAX, it turned up a couple of corner case bugs in the deprecated floating point instructions (POLY, EMOD, ACB). From an analysis I did after NVAX, here are all the VLSI VAX microcode bugs that made it past tape-out of the first pass chip: uVAX CVAX Rigel NVAX comment ---- ---- ----- ---- ------- Indexed immediate 1 ECO'd out of SRM Interrupt passive rel 1 1 Interrupt to string 1 LDPCTX 1 ECO'd out of SRM POLYG restart 1 ECO'd out of SRM CALLx cross page 1 Improved in AXE V15 POPR to SP 1 Added to AXE V14 MFPR external to memory 2 Added to HCORE MTPR ASTLVL 1 1 Added to AXE V15 Vectors 2 Added to AXE V15 IB prefetch error 2 IB TB miss error 1 Halt PC when FPD set 1 1 Restriction violation 2 INSV reserved operand 1 INSV specifier combination 1 Found by MAX after tape-out MULL2 PSL result 1 VIC flushing on HALT 1 Powerup initialization 1 As can be seen, some boundary conditions and tests had to be manually added to various test suites. /Bob From gerard.calliet at pia-sofer.fr Mon Nov 4 01:49:42 2013 From: gerard.calliet at pia-sofer.fr (=?ISO-8859-1?Q?G=E9rard_Calliet?=) Date: Mon, 04 Nov 2013 07:49:42 +0100 Subject: [Simh] how to get eth connexion In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> Message-ID: <52774386.1030802@pia-sofer.fr> Hi Mark, Thanks for your answer. I tried the simh 4.0 beta. It's still not working. I join show ethernet result, ipconfig/all result, my ucx config, the init file. I choosed the right eth (eth0 is the active wifi interface on windows). I gave its mac address as interf mac address in the simh init file. I don't understand where is the problem. I am just a beginner on simh, so I could have done some error, but I don't see what it is. G?rard Calliet pia-sofer Le 04/11/2013 00:37, Mark Pizzolato - Info Comm a ?crit : > On Sunday, November 03, 2013 at 2:47 PM, G?rard Calliet wrote: >> Hello, >> >> I am a beginer on simh. I have tried a lot of thing to get connected by >> ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms 5.5 ... / ucx 4.0 I have >> instaled wincap on a Windows Seven I cannot get any connexion > Hi G?rard, > > Try using the latest simh binaries from https://github.com/simh/Win32-Development-Binaries/blob/Win32-Development-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip > > Alternatively, if you've got a Visual Studio environment (or MinGW) available, you can build from the latest sources available from: https://github.com/simh/simh/archive/master.zip > > > If you are still having problems, provide the output of "SHOW ETHERNET" from a "sim>" prompt along with the output of IPCONFIG/ALL from a Windows command prompt, and explain what makes you think that the ethernet is not working. > > Good Luck. > > - Mark > -------------- next part -------------- A non-text attachment was scrubbed... Name: ucx conf.JPG Type: image/jpeg Size: 35621 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ipconfig.JPG Type: image/jpeg Size: 174115 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: console simh.JPG Type: image/jpeg Size: 66430 bytes Desc: not available URL: From robert.jarratt at ntlworld.com Mon Nov 4 02:28:45 2013 From: robert.jarratt at ntlworld.com (Robert Jarratt) Date: Mon, 4 Nov 2013 07:28:45 -0000 Subject: [Simh] how to get eth connexion In-Reply-To: <52774386.1030802@pia-sofer.fr> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> Message-ID: <00d201ced92f$7f365300$7da2f900$@ntlworld.com> Hello G?rard, If I have understood you correctly you have given the simulated Ethernet interface the same MAC address as the physical interface, although if that is right there seems to be a typo in your first email. I would definitely give SIMH a unique MAC address that is not already on your network. Additionally, although I suspect it may not make a difference, it might be best to use a DEC MAC address in your SIMH config, DEC MACs start with 08-00-2B. Regards Rob > -----Original Message----- > From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing- > edge.com] On Behalf Of G?rard Calliet > Sent: 04 November 2013 06:50 > To: simh at trailing-edge.com > Subject: Re: [Simh] how to get eth connexion > > Hi Mark, > > Thanks for your answer. > > I tried the simh 4.0 beta. It's still not working. > I join show ethernet result, ipconfig/all result, my ucx config, the init file. > I choosed the right eth (eth0 is the active wifi interface on windows). > I gave its mac address as interf mac address in the simh init file. > > I don't understand where is the problem. I am just a beginner on simh, so I > could have done some error, but I don't see what it is. > > G?rard Calliet > pia-sofer > > Le 04/11/2013 00:37, Mark Pizzolato - Info Comm a ?crit : > > On Sunday, November 03, 2013 at 2:47 PM, G?rard Calliet wrote: > >> Hello, > >> > >> I am a beginer on simh. I have tried a lot of thing to get connected > >> by ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms 5.5 ... / ucx > >> 4.0 I have instaled wincap on a Windows Seven I cannot get any > >> connexion > > Hi G?rard, > > > > Try using the latest simh binaries from > > https://github.com/simh/Win32-Development-Binaries/blob/Win32- > Developm > > ent-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip > > > > Alternatively, if you've got a Visual Studio environment (or MinGW) > > available, you can build from the latest sources available from: > > https://github.com/simh/simh/archive/master.zip > > > > > > If you are still having problems, provide the output of "SHOW ETHERNET" > from a "sim>" prompt along with the output of IPCONFIG/ALL from a > Windows command prompt, and explain what makes you think that the > ethernet is not working. > > > > Good Luck. > > > > - Mark > > From prenouvel at yahoo.fr Mon Nov 4 05:30:21 2013 From: prenouvel at yahoo.fr (prenouvel) Date: Mon, 04 Nov 2013 11:30:21 +0100 Subject: [Simh] how to get eth connexion In-Reply-To: <52774386.1030802@pia-sofer.fr> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> Message-ID: <5277773D.5050504@yahoo.fr> Hi G?rard, What does the command XQ show eth returns ? You try with Wifi, does it works with a RJ45 cable ? Didn't you deactivate an ethernet connection recently oh the PC host ? Regards. Patrick. Le 04/11/2013 07:49, G?rard Calliet a ?crit : > Hi Mark, > > Thanks for your answer. > > I tried the simh 4.0 beta. It's still not working. > I join show ethernet result, ipconfig/all result, my ucx config, the > init file. > I choosed the right eth (eth0 is the active wifi interface on > windows). I gave its mac address as interf mac address in the simh > init file. > > I don't understand where is the problem. I am just a beginner on simh, > so I could have done some error, but I don't see what it is. > > G?rard Calliet > pia-sofer > > Le 04/11/2013 00:37, Mark Pizzolato - Info Comm a ?crit : >> On Sunday, November 03, 2013 at 2:47 PM, G?rard Calliet wrote: >>> Hello, >>> >>> I am a beginer on simh. I have tried a lot of thing to get connected by >>> ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms 5.5 ... / ucx >>> 4.0 I have >>> instaled wincap on a Windows Seven I cannot get any connexion >> Hi G?rard, >> >> Try using the latest simh binaries from >> https://github.com/simh/Win32-Development-Binaries/blob/Win32-Development-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip >> >> Alternatively, if you've got a Visual Studio environment (or MinGW) >> available, you can build from the latest sources available from: >> https://github.com/simh/simh/archive/master.zip >> >> >> If you are still having problems, provide the output of "SHOW >> ETHERNET" from a "sim>" prompt along with the output of IPCONFIG/ALL >> from a Windows command prompt, and explain what makes you think that >> the ethernet is not working. >> >> Good Luck. >> >> - Mark >> > > > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh --- Ce courrier ?lectronique ne contient aucun virus ou logiciel malveillant parce que la protection avast! Antivirus est active. http://www.avast.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From priyachinc at gmail.com Mon Nov 4 06:50:34 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Mon, 4 Nov 2013 17:20:34 +0530 Subject: [Simh] Unable to telnet to other hosts Message-ID: Hi, I'm new to openvms and simh. I installed open vms 7.3 and have configured tcpip too. I want to connect to other hosts to test my tcpip. $ telnet 192.168.0.37 %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 -TCPIP-E-NO_RECOVERY, unexpected name server failure $ ucx TCPIP> ping 192.168.0.37 PING 192.168.0.37 (192.168.0.37): 56 data bytes ----192.168.0.37 PING Statistics---- 4 packets transmitted, 0 packets received, 100% packet loss %SYSTEM-F-TIMEOUT, device timeout I'm not able to understand where I went wrong. Thanks, Priya -------------- next part -------------- An HTML attachment was scrubbed... URL: From gerard.calliet at pia-sofer.fr Mon Nov 4 07:25:16 2013 From: gerard.calliet at pia-sofer.fr (gerard.calliet at pia-sofer.fr) Date: Mon, 04 Nov 2013 13:25:16 +0100 Subject: [Simh] how to get eth connexion In-Reply-To: <00d201ced92f$7f365300$7da2f900$@ntlworld.com> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> <00d201ced92f$7f365300$7da2f900$@ntlworld.com> Message-ID: <9e67492f8960c584db035ee4699c71b4@pia-sofer.fr> Hello, Thanks for all the answers. But it doesn't work. I tried with another pc, and on rj45, and I gave a specific (dec)Mac address. Same thing. An idea ? G?rard Calliet Le 2013-11-04 08:28, Robert Jarratt a ?crit?: > Hello G?rard, > > If I have understood you correctly you have given the simulated > Ethernet > interface the same MAC address as the physical interface, although if > that > is right there seems to be a typo in your first email. I would > definitely > give SIMH a unique MAC address that is not already on your network. > > Additionally, although I suspect it may not make a difference, it > might be > best to use a DEC MAC address in your SIMH config, DEC MACs start > with > 08-00-2B. > > Regards > > Rob > >> -----Original Message----- >> From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing- >> edge.com] On Behalf Of G?rard Calliet >> Sent: 04 November 2013 06:50 >> To: simh at trailing-edge.com >> Subject: Re: [Simh] how to get eth connexion >> >> Hi Mark, >> >> Thanks for your answer. >> >> I tried the simh 4.0 beta. It's still not working. >> I join show ethernet result, ipconfig/all result, my ucx config, the >> init > file. >> I choosed the right eth (eth0 is the active wifi interface on >> windows). >> I gave its mac address as interf mac address in the simh init file. >> >> I don't understand where is the problem. I am just a beginner on >> simh, so > I >> could have done some error, but I don't see what it is. >> >> G?rard Calliet >> pia-sofer >> >> Le 04/11/2013 00:37, Mark Pizzolato - Info Comm a ?crit : >> > On Sunday, November 03, 2013 at 2:47 PM, G?rard Calliet wrote: >> >> Hello, >> >> >> >> I am a beginer on simh. I have tried a lot of thing to get >> connected >> >> by ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms 5.5 ... / >> ucx >> >> 4.0 I have instaled wincap on a Windows Seven I cannot get any >> >> connexion >> > Hi G?rard, >> > >> > Try using the latest simh binaries from >> > https://github.com/simh/Win32-Development-Binaries/blob/Win32- >> Developm >> > ent-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip >> > >> > Alternatively, if you've got a Visual Studio environment (or >> MinGW) >> > available, you can build from the latest sources available from: >> > https://github.com/simh/simh/archive/master.zip >> > >> > >> > If you are still having problems, provide the output of "SHOW >> ETHERNET" >> from a "sim>" prompt along with the output of IPCONFIG/ALL from a >> Windows command prompt, and explain what makes you think that the >> ethernet is not working. >> > >> > Good Luck. >> > >> > - Mark >> > From lennert at vanalboom.org Mon Nov 4 07:28:46 2013 From: lennert at vanalboom.org (Lennert Van Alboom) Date: Mon, 4 Nov 2013 13:28:46 +0100 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: Message-ID: <20131104122846.GA1687@ziff.soleus.nu> The output you sent seems to indicate that your problem isn't with telnet, but with the guest not having networking at all (configuring the network inside simh alone doesn't do much). What host OS are you doing this on? What does your host networking stack look like? Can you show your simh configuration file? Regards, Lennert On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > Hi, > I'm new to openvms and simh. I installed open vms 7.3 and have configured > tcpip too. > I want to connect to other hosts to test my tcpip. > $ telnet 192.168.0.37 > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > -TCPIP-E-NO_RECOVERY, unexpected name server failure > $ ucx > TCPIP> ping 192.168.0.37 > PING 192.168.0.37 (192.168.0.37): 56 data bytes > ----192.168.0.37 PING Statistics---- > 4 packets transmitted, 0 packets received, 100% packet loss > %SYSTEM-F-TIMEOUT, device timeout > I'm not able to understand where I went wrong. > Thanks, > Priya > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 836 bytes Desc: Digital signature URL: From Mark at infocomm.com Mon Nov 4 07:32:20 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Mon, 4 Nov 2013 04:32:20 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <20131104122846.GA1687@ziff.soleus.nu> References: <20131104122846.GA1687@ziff.soleus.nu> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > The output you sent seems to indicate that your problem isn't with telnet, > but with the guest not having networking at all (configuring the network > inside simh alone doesn't do much). > > What host OS are you doing this on? > What does your host networking stack look like? > Can you show your simh configuration file? Also include the output of SHOW VERSION from within the simulator you are using... > Regards, > > > Lennert > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > Hi, > > I'm new to openvms and simh. I installed open vms 7.3 and have > configured > > tcpip too. > > I want to connect to other hosts to test my tcpip. > > $ telnet 192.168.0.37 > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > $ ucx > > TCPIP> ping 192.168.0.37 > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > ----192.168.0.37 PING Statistics---- > > 4 packets transmitted, 0 packets received, 100% packet loss > > %SYSTEM-F-TIMEOUT, device timeout > > I'm not able to understand where I went wrong. > > Thanks, > > Priya > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh From MV at pdv-systeme.de Mon Nov 4 07:34:04 2013 From: MV at pdv-systeme.de (=?utf-8?B?Vm9ybMOkbmRlciwgTWFydGlu?=) Date: Mon, 4 Nov 2013 12:34:04 +0000 Subject: [Simh] how to get eth connexion Message-ID: <900B141A56D06B40B719F9709BC01C99734089BA@gsmail02.goslar.hit.pdv> gerard.calliet at pia-sofer.fr wrote: > Thanks for all the answers. > But it doesn't work. I tried with another pc, and on rj45, and I gave a > specific (dec)Mac address. Same thing. > An idea ? I'll repeat Mark's suggestion: > provide the output of "SHOW ETHERNET" from a "sim>" prompt along with the output of IPCONFIG/ALL from a Windows command prompt and add that "SHOW ETHERNET" was spelled "XQ SHOW ETH" in older SimH versions (as Patrick suggested). cu, Martin From Mark at infocomm.com Mon Nov 4 07:42:09 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Mon, 4 Nov 2013 04:42:09 -0800 Subject: [Simh] how to get eth connexion In-Reply-To: <52774386.1030802@pia-sofer.fr> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19B@REDROOF2.alohasunset.com> Hi G?rard, On Sunday, November 03, 2013 at 10:50 PM, G?rard Calliet wrote: > Hi Mark, > > Thanks for your answer. > > I tried the simh 4.0 beta. It's still not working. > I join show ethernet result, ipconfig/all result, my ucx config, the init file. > I choosed the right eth (eth0 is the active wifi interface on windows). > I gave its mac address as interf mac address in the simh init file. This is likely your key issue. Attempting to get a simh simulator to use a Wifi network interface is likely to be a challenge. Depending on details of how your simulated system is configured, it may be impossible. I suggest that you try working with a Wired Network interface first and make sure you've to things working there BEFORE you explore the challenges of trying to 'share' the WiFi connection with your host operating system. The issues with sharing the WiFi connection come down to several facts: 1) the fact that the WiFi network expects ONLY a single MAC address to be transmitting from a single WiFi connection. 2) Normal windows WiFi network interfaces cannot operate in promiscuous mode, which means that they can only receive traffic destined for a single MAC address. Depending on subtle details of your VMS system's configuration the Operating system and/or pieces of the network software will dynamically change the MAC address that is being used on the XQ or XU interface from the built in hardware MAC address (which you specify in the simh configuration file) to a DECnet form MAC address. As mentioned above, a WiFi network connection will not expect (or work) with multiple MAC addresses, so this will be why things don't work. On a windows system using a wired network connection, the following tests should be performed (and succeed): 1) PING the host computer's wired network IP address. 2) PING the router's IP address. If this doesn't succeed, then describe the firewall/anti-virus software installed on the windows system. You should be able to use WireShark to watch your simulated system's network traffic. Capturing with a capture filter of "ip host 192.168.1.222" 3) PING other devices on your network. 4) PING something beyond your router. Let us know how far this gets. - Mark > I don't understand where is the problem. I am just a beginner on simh, so I > could have done some error, but I don't see what it is. > > G?rard Calliet > pia-sofer From priyachinc at gmail.com Mon Nov 4 07:50:01 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Mon, 4 Nov 2013 18:20:01 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> Message-ID: I'm using fedora 18 as the host. *This is the message i get when i run the simulator :* VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 *This is the vax.ini file :* ; ; Load CPU microcode load -r /usr/local/vax/data/ka655x.bin ; ; Attach non-volatile RAM to a file attach nvr /usr/local/vax/data/nvram.bin ; ; This virtual machine has 64M memory set cpu 64m ; ; Define disk drive types. RA92 is largest-supported VAX drive. set rq0 ra92 set rq1 ra92 set rq2 ra92 set rq3 cdrom ; ; Attach defined drives to local files attach rq0 /usr/local/vax/data/d0.dsk attach rq1 /usr/local/vax/data/d1.dsk attach rq2 /usr/local/vax/data/d2.dsk ; ; Attach the CD-ROM to its file (read-only) attach -r rq3 /usr/local/vax/data/cd.iso ; ; Disable unused devices. It's also possible to disable individual devices, ; using a construction like "set rq2 disable" if desired. ; set rl disable set ts disable ; ; Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 ; ;Uncomment the line below to enable auto-boot dep bdr 0 ; ;Choose one of the following lines.SET CPU CONHALT returns control to the ; VAX console monitor on a halt event (where behavior will be further ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will ; cause the simulator to get control instead. set cpu conhalt ;set cpu simhalt ; ;Now start the emulator boot cpu ; ; Exit the simulator exit Regards, Priya On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm < Mark at infocomm.com> wrote: > On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > > The output you sent seems to indicate that your problem isn't with > telnet, > > but with the guest not having networking at all (configuring the network > > inside simh alone doesn't do much). > > > > What host OS are you doing this on? > > What does your host networking stack look like? > > Can you show your simh configuration file? > > Also include the output of SHOW VERSION from within the simulator you are > using... > > > Regards, > > > > > > Lennert > > > > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > > Hi, > > > I'm new to openvms and simh. I installed open vms 7.3 and have > > configured > > > tcpip too. > > > I want to connect to other hosts to test my tcpip. > > > $ telnet 192.168.0.37 > > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > $ ucx > > > TCPIP> ping 192.168.0.37 > > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > > ----192.168.0.37 PING Statistics---- > > > 4 packets transmitted, 0 packets received, 100% packet loss > > > %SYSTEM-F-TIMEOUT, device timeout > > > I'm not able to understand where I went wrong. > > > Thanks, > > > Priya > > > > > _______________________________________________ > > > Simh mailing list > > > Simh at trailing-edge.com > > > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Mon Nov 4 08:00:02 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Mon, 4 Nov 2013 05:00:02 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> Hi Priya, I was looking for the output of "SHOW VERSION" from the "sim> " prompt. The "SHOW VERSION" output from the ">>> " prompt is the version of the VAX console ROM. The "sim>" Version information describes the simulator's capabilities. >From the simulator startup message I can see you're running simh V3.9. Please download and build the source from https://github.com/simh/simh/archive/master.zip You should just be able to unzip the file and build the vax simulator with "make vax". The "messages you get when you run the simulator" include an error message. It would be useful to see what command caused that error. To do so you can invoke the simulator with the "-v" command switch. If this doesn't help, then the output produced when you invoked the "make vax" command to build the simulator will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 4:50 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I'm using fedora 18 as the host. This is the message i get when i run the simulator : VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 This is the vax.ini file : ; ; Load CPU microcode load -r /usr/local/vax/data/ka655x.bin ; ; Attach non-volatile RAM to a file attach nvr /usr/local/vax/data/nvram.bin ; ; This virtual machine has 64M memory set cpu 64m ; ; Define disk drive types. RA92 is largest-supported VAX drive. set rq0 ra92 set rq1 ra92 set rq2 ra92 set rq3 cdrom ; ; Attach defined drives to local files attach rq0 /usr/local/vax/data/d0.dsk attach rq1 /usr/local/vax/data/d1.dsk attach rq2 /usr/local/vax/data/d2.dsk ; ; Attach the CD-ROM to its file (read-only) attach -r rq3 /usr/local/vax/data/cd.iso ; ; Disable unused devices. It's also possible to disable individual devices, ; using a construction like "set rq2 disable" if desired. ; set rl disable set ts disable ; ; Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 ; ;Uncomment the line below to enable auto-boot dep bdr 0 ; ;Choose one of the following lines.SET CPU CONHALT returns control to the ; VAX console monitor on a halt event (where behavior will be further ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will ; cause the simulator to get control instead. set cpu conhalt ;set cpu simhalt ; ;Now start the emulator boot cpu ; ; Exit the simulator exit Regards, Priya On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm > wrote: On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > The output you sent seems to indicate that your problem isn't with telnet, > but with the guest not having networking at all (configuring the network > inside simh alone doesn't do much). > > What host OS are you doing this on? > What does your host networking stack look like? > Can you show your simh configuration file? Also include the output of SHOW VERSION from within the simulator you are using... > Regards, > > > Lennert > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > Hi, > > I'm new to openvms and simh. I installed open vms 7.3 and have > configured > > tcpip too. > > I want to connect to other hosts to test my tcpip. > > $ telnet 192.168.0.37 > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > $ ucx > > TCPIP> ping 192.168.0.37 > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > ----192.168.0.37 PING Statistics---- > > 4 packets transmitted, 0 packets received, 100% packet loss > > %SYSTEM-F-TIMEOUT, device timeout > > I'm not able to understand where I went wrong. > > Thanks, > > Priya > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh -------------- next part -------------- An HTML attachment was scrubbed... URL: From lennert at vanalboom.org Mon Nov 4 08:06:51 2013 From: lennert at vanalboom.org (Lennert Van Alboom) Date: Mon, 4 Nov 2013 14:06:51 +0100 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> Message-ID: <20131104130651.GB1687@ziff.soleus.nu> Oi, On Mon, Nov 04, 2013 at 06:20:01PM +0530, priya chincholikar wrote: > I'm using fedora 18 as the host. Ah, Linux. Good. Should be easier to troubleshoot then. Interesting part: > /usr/local/vax/bin/vax.ini> attach XQ em1 > Command not allowed Check if you still get "Command not allowed" when running simh as root. I have my vax binaries as setuid root for this same reason. Lennert -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 836 bytes Desc: Digital signature URL: From priyachinc at gmail.com Mon Nov 4 08:31:07 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Mon, 4 Nov 2013 19:01:07 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> Message-ID: I have followed steps from http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the simulator, earlier I was having a problem while starting TCP/IP, but I solved that by attaching the interface type in vax.ini file, Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 I don't think I have to build it again unless of course that is the only solution to make this work. I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, Please check this, VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 >>>boot dua0 (BOOT/R5:0 DUA0 2.. -DUA0 1..0.. %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id = 0 %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. $! Copyright 2001 Compaq Computer Corporation. %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 %RUN-S-PROC_ID, identification of created process is 00000206 %DCL-S-SPAWNED, process SYSTEM_1 spawned %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% Operator _FORD$OPA0: has been enabled, username SYSTEM %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% Operator status for operator _FORD$OPA0: CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% Logfile has been initialized by operator _FORD$OPA0: Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-SERVERSTARTINGU, security server starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% Message from user SYSTEM on FORD %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager Startup processing continuing... %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% Message from user SYSTEM on FORD Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) %RMS-E-FNF, file not found TP server process waiting %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% Message from user AUDIT$SERVER on FORD Security alarm (SECURITY) and security audit (SECURITY) on FORD, system id: 1025 Auditable event: Audit server starting up Event time: 4-NOV-2013 18:45:18.58 PID: 00000203 Username: SYSTEM %STARTUP-I-AUDITCONTINUE, audit server initialization complete The OpenVMS VAX system is now executing the site-specific startup commands. %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 %TCPIP-I-NORMAL, timezone information verified %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Loaded %RUN-S-PROC_ID, identification of created process is 00000211 %TCPIP-I-SETLOCAL, setting domain and/or local host %TCPIP-I-STARTCOMM, starting communication %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Started %TCPIP-I-SETPROTP, setting protocol parameters %TCPIP-I-DEFINTE, defining interfaces %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Created INTERnet interface: QE0 %TCPIP-I-STARTNAME, starting name service %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% Message from user Proxy Server on FORD Loading proxy server image TCPIP$PROXY_SERVICES %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-I-LOADSERV, loading TCPIP server proxy information %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records -TCPIP-I-SERVSKIP, skipped 0 communication proxy records -TCPIP-I-SERVTOTAL, total of 0 proxy records read %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate FTP Server %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP NOLISTEN Process creation success: Service - FTP %TCPIP-S-STARTDONE, TCPIP$FTP startup completed %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% Message from user PWIPdriver on FORD PWIPdriver successfully started. %RUN-S-PROC_ID, identification of created process is 00000213 %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate TELNET Server %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 18:45:50.33 %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 SYSTEM job terminated at 4-NOV-2013 18:45:53.04 Accounting information: Buffered I/O count: 2340 Peak working set size: 1821 Direct I/O count: 866 Peak page file size: 8473 Page faults: 12611 Mounted volumes: 2 Charged CPU time: 0 00:00:49.40 Elapsed time: 0 00:01:01.11 Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 After I login On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm < Mark at infocomm.com> wrote: > Hi Priya, > > > > I was looking for the output of ?SHOW VERSION? from the ?sim> ? prompt. > The ?SHOW VERSION? output from the ?>>> ? prompt is the version of the VAX > console ROM. The ?sim>? Version information describes the simulator?s > capabilities. > > > > From the simulator startup message I can see you?re running simh V3.9. > > > > Please download and build the source from > https://github.com/simh/simh/archive/master.zip > > > > You should just be able to unzip the file and build the vax simulator with > ?make vax?. > > > > The ?messages you get when you run the simulator? include an error > message. It would be useful to see what command caused that error. To do > so you can invoke the simulator with the ?-v? command switch. > > > > If this doesn?t help, then the output produced when you invoked the ?make > vax? command to build the simulator will be useful. > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Monday, November 04, 2013 4:50 AM > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > I'm using fedora 18 as the host. > > *This is the message i get when i run the simulator :* > > > > VAX simulator V3.9-0 > > NVR: buffering file in memory > > RQ: unit is read only > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > > > > > KA655-B V5.3, VMB 2.7 > > Performing normal system tests. > > 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. > > 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. > > 08..07..06..05..04..03.. > > Tests completed. > > Loading system software. > > (BOOT/R5:0 EXIT > > > > > > > > 2.. > > ?41 DEVASSIGN, EXIT > > ?06 HLT INST > > PC = 00000C1A > > Failure. > > >>>show version > > KA655-B V5.3, VMB 2.7 > > > > *This is the vax.ini file :* > > > > ; > > ; Load CPU microcode > > load -r /usr/local/vax/data/ka655x.bin > > ; > > ; Attach non-volatile RAM to a file > > attach nvr /usr/local/vax/data/nvram.bin > > ; > > ; This virtual machine has 64M memory > > set cpu 64m > > ; > > ; Define disk drive types. RA92 is largest-supported VAX drive. > > set rq0 ra92 > > set rq1 ra92 > > set rq2 ra92 > > set rq3 cdrom > > ; > > ; Attach defined drives to local files > > attach rq0 /usr/local/vax/data/d0.dsk > > attach rq1 /usr/local/vax/data/d1.dsk > > attach rq2 /usr/local/vax/data/d2.dsk > > ; > > ; Attach the CD-ROM to its file (read-only) > > attach -r rq3 /usr/local/vax/data/cd.iso > > ; > > ; Disable unused devices. It's also possible to disable individual devices, > > ; using a construction like "set rq2 disable" if desired. > > ; > > set rl disable > > set ts disable > > ; > > ; Attach Ethernet to a network interface > > set XQ mac=08-00-2B-AC-AC-B1 > > set XQ type=DELQA > > attach XQ em1 > > ; > > ;Uncomment the line below to enable auto-boot > > dep bdr 0 > > ; > > ;Choose one of the following lines.SET CPU CONHALT returns control to the > > ; VAX console monitor on a halt event (where behavior will be further > > ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will > > ; cause the simulator to get control instead. > > set cpu conhalt > > ;set cpu simhalt > > ; > > ;Now start the emulator > > boot cpu > > ; > > ; Exit the simulator > > exit > > > > Regards, > > Priya > > > > On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > > The output you sent seems to indicate that your problem isn't with > telnet, > > but with the guest not having networking at all (configuring the network > > inside simh alone doesn't do much). > > > > What host OS are you doing this on? > > What does your host networking stack look like? > > Can you show your simh configuration file? > > Also include the output of SHOW VERSION from within the simulator you are > using... > > > > Regards, > > > > > > Lennert > > > > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > > Hi, > > > I'm new to openvms and simh. I installed open vms 7.3 and have > > configured > > > tcpip too. > > > I want to connect to other hosts to test my tcpip. > > > $ telnet 192.168.0.37 > > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > $ ucx > > > TCPIP> ping 192.168.0.37 > > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > > ----192.168.0.37 PING Statistics---- > > > 4 packets transmitted, 0 packets received, 100% packet loss > > > %SYSTEM-F-TIMEOUT, device timeout > > > I'm not able to understand where I went wrong. > > > Thanks, > > > Priya > > > > > _______________________________________________ > > > Simh mailing list > > > Simh at trailing-edge.com > > > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: telnet 1.JPG Type: image/jpeg Size: 78385 bytes Desc: not available URL: From priyachinc at gmail.com Mon Nov 4 08:33:42 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Mon, 4 Nov 2013 19:03:42 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <20131104130651.GB1687@ziff.soleus.nu> References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <20131104130651.GB1687@ziff.soleus.nu> Message-ID: I am running it as root. That " Command not allowed" part allowed part is bugging me since days. On Mon, Nov 4, 2013 at 6:36 PM, Lennert Van Alboom wrote: > Oi, > > > On Mon, Nov 04, 2013 at 06:20:01PM +0530, priya chincholikar wrote: > > I'm using fedora 18 as the host. > > Ah, Linux. Good. Should be easier to troubleshoot then. > > Interesting part: > > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > Check if you still get "Command not allowed" when running simh as root. I > have > my vax binaries as setuid root for this same reason. > > > Lennert > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Mon Nov 4 08:43:53 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Mon, 4 Nov 2013 05:43:53 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> >From what you've provided, I can't really tell EXACTLY what simulator you are running or how it was built or what it thinks is its capabilities are. The latest source is the most supportable and the build (makefile) tells us many things. Phillip Wherry wrote the instructions you are followed 9 years ago. Things have evolved since that time and become much smoother. You are getting the "BOOT/R5:0 EXIT" message since you have the system setup to autoboot (BDR set to 0) but your NVRAM doesn't yet specify a default boot device. This is NOT related to the network issues. Please build the latest source and if what you then need to do isn't obvious, then we can explore further. The total build instructions should be: $ wget https://github.com/simh/simh/archive/master.zip $ unzip simh-master.zip $ cd simh-master $ make vax As I said, if the simulator doesn't work correctly for you then the output produced during the above make will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 5:31 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I have followed steps from http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the simulator, earlier I was having a problem while starting TCP/IP, but I solved that by attaching the interface type in vax.ini file, Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 I don't think I have to build it again unless of course that is the only solution to make this work. I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, Please check this, VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 >>>boot dua0 (BOOT/R5:0 DUA0 2.. -DUA0 1..0.. %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id = 0 %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. $! Copyright 2001 Compaq Computer Corporation. %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 %RUN-S-PROC_ID, identification of created process is 00000206 %DCL-S-SPAWNED, process SYSTEM_1 spawned %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% Operator _FORD$OPA0: has been enabled, username SYSTEM %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% Operator status for operator _FORD$OPA0: CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% Logfile has been initialized by operator _FORD$OPA0: Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-SERVERSTARTINGU, security server starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% Message from user SYSTEM on FORD %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager Startup processing continuing... %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% Message from user SYSTEM on FORD Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) %RMS-E-FNF, file not found TP server process waiting %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% Message from user AUDIT$SERVER on FORD Security alarm (SECURITY) and security audit (SECURITY) on FORD, system id: 1025 Auditable event: Audit server starting up Event time: 4-NOV-2013 18:45:18.58 PID: 00000203 Username: SYSTEM %STARTUP-I-AUDITCONTINUE, audit server initialization complete The OpenVMS VAX system is now executing the site-specific startup commands. %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 %TCPIP-I-NORMAL, timezone information verified %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Loaded %RUN-S-PROC_ID, identification of created process is 00000211 %TCPIP-I-SETLOCAL, setting domain and/or local host %TCPIP-I-STARTCOMM, starting communication %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Started %TCPIP-I-SETPROTP, setting protocol parameters %TCPIP-I-DEFINTE, defining interfaces %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Created INTERnet interface: QE0 %TCPIP-I-STARTNAME, starting name service %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% Message from user Proxy Server on FORD Loading proxy server image TCPIP$PROXY_SERVICES %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-I-LOADSERV, loading TCPIP server proxy information %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records -TCPIP-I-SERVSKIP, skipped 0 communication proxy records -TCPIP-I-SERVTOTAL, total of 0 proxy records read %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate FTP Server %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP NOLISTEN Process creation success: Service - FTP %TCPIP-S-STARTDONE, TCPIP$FTP startup completed %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% Message from user PWIPdriver on FORD PWIPdriver successfully started. %RUN-S-PROC_ID, identification of created process is 00000213 %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate TELNET Server %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 18:45:50.33 %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 SYSTEM job terminated at 4-NOV-2013 18:45:53.04 Accounting information: Buffered I/O count: 2340 Peak working set size: 1821 Direct I/O count: 866 Peak page file size: 8473 Page faults: 12611 Mounted volumes: 2 Charged CPU time: 0 00:00:49.40 Elapsed time: 0 00:01:01.11 Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 After I login On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm > wrote: Hi Priya, I was looking for the output of "SHOW VERSION" from the "sim> " prompt. The "SHOW VERSION" output from the ">>> " prompt is the version of the VAX console ROM. The "sim>" Version information describes the simulator's capabilities. >From the simulator startup message I can see you're running simh V3.9. Please download and build the source from https://github.com/simh/simh/archive/master.zip You should just be able to unzip the file and build the vax simulator with "make vax". The "messages you get when you run the simulator" include an error message. It would be useful to see what command caused that error. To do so you can invoke the simulator with the "-v" command switch. If this doesn't help, then the output produced when you invoked the "make vax" command to build the simulator will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 4:50 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I'm using fedora 18 as the host. This is the message i get when i run the simulator : VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 This is the vax.ini file : ; ; Load CPU microcode load -r /usr/local/vax/data/ka655x.bin ; ; Attach non-volatile RAM to a file attach nvr /usr/local/vax/data/nvram.bin ; ; This virtual machine has 64M memory set cpu 64m ; ; Define disk drive types. RA92 is largest-supported VAX drive. set rq0 ra92 set rq1 ra92 set rq2 ra92 set rq3 cdrom ; ; Attach defined drives to local files attach rq0 /usr/local/vax/data/d0.dsk attach rq1 /usr/local/vax/data/d1.dsk attach rq2 /usr/local/vax/data/d2.dsk ; ; Attach the CD-ROM to its file (read-only) attach -r rq3 /usr/local/vax/data/cd.iso ; ; Disable unused devices. It's also possible to disable individual devices, ; using a construction like "set rq2 disable" if desired. ; set rl disable set ts disable ; ; Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 ; ;Uncomment the line below to enable auto-boot dep bdr 0 ; ;Choose one of the following lines.SET CPU CONHALT returns control to the ; VAX console monitor on a halt event (where behavior will be further ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will ; cause the simulator to get control instead. set cpu conhalt ;set cpu simhalt ; ;Now start the emulator boot cpu ; ; Exit the simulator exit Regards, Priya On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm > wrote: On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > The output you sent seems to indicate that your problem isn't with telnet, > but with the guest not having networking at all (configuring the network > inside simh alone doesn't do much). > > What host OS are you doing this on? > What does your host networking stack look like? > Can you show your simh configuration file? Also include the output of SHOW VERSION from within the simulator you are using... > Regards, > > > Lennert > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > Hi, > > I'm new to openvms and simh. I installed open vms 7.3 and have > configured > > tcpip too. > > I want to connect to other hosts to test my tcpip. > > $ telnet 192.168.0.37 > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > $ ucx > > TCPIP> ping 192.168.0.37 > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > ----192.168.0.37 PING Statistics---- > > 4 packets transmitted, 0 packets received, 100% packet loss > > %SYSTEM-F-TIMEOUT, device timeout > > I'm not able to understand where I went wrong. > > Thanks, > > Priya > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh -------------- next part -------------- An HTML attachment was scrubbed... URL: From priyachinc at gmail.com Mon Nov 4 08:48:57 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Mon, 4 Nov 2013 19:18:57 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> Message-ID: Thank you, I will build it again and post the details :) - Priya On Mon, Nov 4, 2013 at 7:13 PM, Mark Pizzolato - Info Comm < Mark at infocomm.com> wrote: > From what you?ve provided, I can?t really tell EXACTLY what simulator you > are running or how it was built or what it thinks is its capabilities are. > The latest source is the most supportable and the build (makefile) tells us > many things. Phillip Wherry wrote the instructions you are followed 9 > years ago. Things have evolved since that time and become much smoother. > > > > You are getting the ?BOOT/R5:0 EXIT? message since you have the system > setup to autoboot (BDR set to 0) but your NVRAM doesn?t yet specify a > default boot device. This is NOT related to the network issues. > > > > Please build the latest source and if what you then need to do isn?t > obvious, then we can explore further. > > > > The total build instructions should be: > > $ wget https://github.com/simh/simh/archive/master.zip > > $ unzip simh-master.zip > > $ cd simh-master > > $ make vax > > > > As I said, if the simulator doesn?t work correctly for you then the output > produced during the above make will be useful. > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Monday, November 04, 2013 5:31 AM > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > I have followed steps from > http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the > simulator, earlier I was having a problem while starting TCP/IP, but I > solved that by attaching the interface type in vax.ini file, > > > > Attach Ethernet to a network interface > > set XQ mac=08-00-2B-AC-AC-B1 > > set XQ type=DELQA > > attach XQ em1 > > > > I don't think I have to build it again unless of course that is the only > solution to make this work. > > > > I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, > > Please check this, > > > > VAX simulator V3.9-0 > > NVR: buffering file in memory > > RQ: unit is read only > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > > > > > KA655-B V5.3, VMB 2.7 > > Performing normal system tests. > > 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. > > 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. > > 08..07..06..05..04..03.. > > Tests completed. > > Loading system software. > > (BOOT/R5:0 EXIT > > > > > > > > 2.. > > ?41 DEVASSIGN, EXIT > > ?06 HLT INST > > PC = 00000C1A > > Failure. > > >>>show version > > KA655-B V5.3, VMB 2.7 > > >>>boot dua0 > > (BOOT/R5:0 DUA0 > > > > > > > > 2.. > > -DUA0 > > 1..0.. > > > > > > %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk > > %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped > > %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk > > %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS > > OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id > = 0 > > %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. > > $! Copyright 2001 Compaq Computer Corporation. > > > > %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 > > %RUN-S-PROC_ID, identification of created process is 00000206 > > %DCL-S-SPAWNED, process SYSTEM_1 spawned > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% > > Operator _FORD$OPA0: has been enabled, username SYSTEM > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% > > Operator status for operator _FORD$OPA0: > > CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, > > LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, > OPER10, > > OPER11, OPER12 > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% > > Logfile has been initialized by operator _FORD$OPA0: > > Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% > > Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 > > CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, > > LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, > OPER10, > > OPER11, OPER12 > > > > %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-SERVERSTARTINGU, security server starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now > starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node > > -LICENSE-F-NOLICENSE, no license is active for this software product > > -LICENSE-I-SYSMGR, please see your system manager > > > > > > %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node > > -LICENSE-F-NOLICENSE, no license is active for this software product > > -LICENSE-I-SYSMGR, please see your system manager > > Startup processing continuing... > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) > > %RMS-E-FNF, file not found > > TP server process waiting > > > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% > > Message from user AUDIT$SERVER on FORD > > Security alarm (SECURITY) and security audit (SECURITY) on FORD, system > id: 1025 > > Auditable event: Audit server starting up > > Event time: 4-NOV-2013 18:45:18.58 > > PID: 00000203 > > Username: SYSTEM > > > > %STARTUP-I-AUDITCONTINUE, audit server initialization complete > > > > The OpenVMS VAX system is now executing the site-specific startup commands. > > > > > > %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 > > %TCPIP-I-NORMAL, timezone information verified > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet Loaded > > > > %RUN-S-PROC_ID, identification of created process is 00000211 > > %TCPIP-I-SETLOCAL, setting domain and/or local host > > %TCPIP-I-STARTCOMM, starting communication > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet Started > > > > %TCPIP-I-SETPROTP, setting protocol parameters > > %TCPIP-I-DEFINTE, defining interfaces > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Created INTERnet interface: QE0 > > > > %TCPIP-I-STARTNAME, starting name service > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% > > Message from user Proxy Server on FORD > > Loading proxy server image TCPIP$PROXY_SERVICES > > > > %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed > > %TCPIP-E-PROXYERROR, error processing proxy request > > -TCPIP-W-NORECORD, information not found > > -RMS-E-RNF, record not found > > %TCPIP-E-PROXYERROR, error processing proxy request > > -TCPIP-W-NORECORD, information not found > > -RMS-E-RNF, record not found > > %TCPIP-I-LOADSERV, loading TCPIP server proxy information > > %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records > > -TCPIP-I-SERVSKIP, skipped 0 communication proxy records > > -TCPIP-I-SERVTOTAL, total of 0 proxy records read > > %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Activate FTP Server > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP NOLISTEN Process creation success: Service - FTP > > > > %TCPIP-S-STARTDONE, TCPIP$FTP startup completed > > %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% > > Message from user PWIPdriver on FORD > > > > PWIPdriver successfully started. > > > > %RUN-S-PROC_ID, identification of created process is 00000213 > > %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Activate TELNET Server > > > > %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed > > %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 > 18:45:50.33 > > > > %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: > > %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: > > %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 > > SYSTEM job terminated at 4-NOV-2013 18:45:53.04 > > > > Accounting information: > > Buffered I/O count: 2340 Peak working set size: > 1821 > > Direct I/O count: 866 Peak page file size: > 8473 > > Page faults: 12611 Mounted volumes: > 2 > > Charged CPU time: 0 00:00:49.40 Elapsed time: 0 > 00:01:01.11 > > > > Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 > > > > After I login > > > > > > On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > Hi Priya, > > > > I was looking for the output of ?SHOW VERSION? from the ?sim> ? prompt. > The ?SHOW VERSION? output from the ?>>> ? prompt is the version of the VAX > console ROM. The ?sim>? Version information describes the simulator?s > capabilities. > > > > From the simulator startup message I can see you?re running simh V3.9. > > > > Please download and build the source from > https://github.com/simh/simh/archive/master.zip > > > > You should just be able to unzip the file and build the vax simulator with > ?make vax?. > > > > The ?messages you get when you run the simulator? include an error > message. It would be useful to see what command caused that error. To do > so you can invoke the simulator with the ?-v? command switch. > > > > If this doesn?t help, then the output produced when you invoked the ?make > vax? command to build the simulator will be useful. > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Monday, November 04, 2013 4:50 AM > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > I'm using fedora 18 as the host. > > *This is the message i get when i run the simulator :* > > > > VAX simulator V3.9-0 > > NVR: buffering file in memory > > RQ: unit is read only > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > > > > > KA655-B V5.3, VMB 2.7 > > Performing normal system tests. > > 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. > > 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. > > 08..07..06..05..04..03.. > > Tests completed. > > Loading system software. > > (BOOT/R5:0 EXIT > > > > > > > > 2.. > > ?41 DEVASSIGN, EXIT > > ?06 HLT INST > > PC = 00000C1A > > Failure. > > >>>show version > > KA655-B V5.3, VMB 2.7 > > > > *This is the vax.ini file :* > > > > ; > > ; Load CPU microcode > > load -r /usr/local/vax/data/ka655x.bin > > ; > > ; Attach non-volatile RAM to a file > > attach nvr /usr/local/vax/data/nvram.bin > > ; > > ; This virtual machine has 64M memory > > set cpu 64m > > ; > > ; Define disk drive types. RA92 is largest-supported VAX drive. > > set rq0 ra92 > > set rq1 ra92 > > set rq2 ra92 > > set rq3 cdrom > > ; > > ; Attach defined drives to local files > > attach rq0 /usr/local/vax/data/d0.dsk > > attach rq1 /usr/local/vax/data/d1.dsk > > attach rq2 /usr/local/vax/data/d2.dsk > > ; > > ; Attach the CD-ROM to its file (read-only) > > attach -r rq3 /usr/local/vax/data/cd.iso > > ; > > ; Disable unused devices. It's also possible to disable individual devices, > > ; using a construction like "set rq2 disable" if desired. > > ; > > set rl disable > > set ts disable > > ; > > ; Attach Ethernet to a network interface > > set XQ mac=08-00-2B-AC-AC-B1 > > set XQ type=DELQA > > attach XQ em1 > > ; > > ;Uncomment the line below to enable auto-boot > > dep bdr 0 > > ; > > ;Choose one of the following lines.SET CPU CONHALT returns control to the > > ; VAX console monitor on a halt event (where behavior will be further > > ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will > > ; cause the simulator to get control instead. > > set cpu conhalt > > ;set cpu simhalt > > ; > > ;Now start the emulator > > boot cpu > > ; > > ; Exit the simulator > > exit > > > > Regards, > > Priya > > > > On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > > The output you sent seems to indicate that your problem isn't with > telnet, > > but with the guest not having networking at all (configuring the network > > inside simh alone doesn't do much). > > > > What host OS are you doing this on? > > What does your host networking stack look like? > > Can you show your simh configuration file? > > Also include the output of SHOW VERSION from within the simulator you are > using... > > > > Regards, > > > > > > Lennert > > > > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > > Hi, > > > I'm new to openvms and simh. I installed open vms 7.3 and have > > configured > > > tcpip too. > > > I want to connect to other hosts to test my tcpip. > > > $ telnet 192.168.0.37 > > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > $ ucx > > > TCPIP> ping 192.168.0.37 > > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > > ----192.168.0.37 PING Statistics---- > > > 4 packets transmitted, 0 packets received, 100% packet loss > > > %SYSTEM-F-TIMEOUT, device timeout > > > I'm not able to understand where I went wrong. > > > Thanks, > > > Priya > > > > > _______________________________________________ > > > Simh mailing list > > > Simh at trailing-edge.com > > > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From prenouvel at yahoo.fr Mon Nov 4 08:50:05 2013 From: prenouvel at yahoo.fr (prenouvel) Date: Mon, 04 Nov 2013 14:50:05 +0100 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <20131104130651.GB1687@ziff.soleus.nu> Message-ID: <5277A60D.7060200@yahoo.fr> Does Telnet 0 works ? Le 04/11/2013 14:33, priya chincholikar a ?crit : > I am running it as root. > That " Command not allowed" part allowed part is bugging me since days. > > > On Mon, Nov 4, 2013 at 6:36 PM, Lennert Van Alboom > > wrote: > > Oi, > > > On Mon, Nov 04, 2013 at 06:20:01PM +0530, priya chincholikar wrote: > > I'm using fedora 18 as the host. > > Ah, Linux. Good. Should be easier to troubleshoot then. > > Interesting part: > > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > Check if you still get "Command not allowed" when running simh as > root. I have > my vax binaries as setuid root for this same reason. > > > Lennert > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh --- Ce courrier ?lectronique ne contient aucun virus ou logiciel malveillant parce que la protection avast! Antivirus est active. http://www.avast.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From priyachinc at gmail.com Tue Nov 5 01:19:00 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Tue, 5 Nov 2013 11:49:00 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <5277A60D.7060200@yahoo.fr> References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <20131104130651.GB1687@ziff.soleus.nu> <5277A60D.7060200@yahoo.fr> Message-ID: Telnet 0 works. I wanted to know that before building the latest source, should I simply delete the previous simh folders I had created on the linux host?? or Is there anything more to be done ? - Priya -------------- next part -------------- An HTML attachment was scrubbed... URL: From dott.piergiorgio at fastwebnet.it Tue Nov 5 02:26:03 2013 From: dott.piergiorgio at fastwebnet.it (dott.Piergiorgio d' Errico) Date: Tue, 05 Nov 2013 08:26:03 +0100 Subject: [Simh] beta 4.0: my initial impressions. Message-ID: <52789D8B.4040008@fastwebnet.it> 1) the implemented graphic display works, perhaps too well; spacewar seems definitively *too* fast (both ships into singularity in less than five seconds) but I don't known if is the expected behaviour on the original. PDP-11 Lunar, OTOH, even following the suggested SIMH setup, the (Linux 64b) host system crash (unresponsive, and I end doing one of my really rare hard reset...) and the TX-0 mouse simulation seems to get confused in the x,y coordinates. 1bis) What I like on improved output is (n)curses interface; I'm looking into it (no holding breath, please: I have too many WIP than actual work done...) and I'm really pleased of the updated developers' documentation 2) The SSEM emulation is the nearest thing to the "skeleton" I now have; I remember that SIMH's strong point is the unique flexibility in emulated hardware configuration. and the step ahead in turning the SIMH shell into a programmable shell is more than good, even with the implementation of an instruction considered harmful ;) 3) no improvement on LGP issue, sadly... Best regards from Italy, dott. Piergiorgio. From priyachinc at gmail.com Tue Nov 5 05:01:11 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Tue, 5 Nov 2013 15:31:11 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> Message-ID: Hi, I built the vax as told : * $ make vax* lib paths are: /lib/ /lib/sse2/ /usr/lib/atlas/ /usr/lib/dyninst/ /usr/lib/llvm/ /usr/lib/mysql/ /usr/lib/tcl8.5/ /usr/lib/tracker-0.14/ /usr/lib/xulrunner/ using libm: /lib//libm.so using librt: /lib//librt.so using libpthread: /lib//libpthread.so /usr/include/pthread.h using libdl: /lib//libdl.so /usr/include/dlfcn.h using libpcap: /usr/include/pcap.h *** Warning *** *** Warning *** vax Simulator are being built with *** Warning *** minimal libpcap networking support *** Warning *** *** Warning *** Simulators on your Linux platform can also be built with *** Warning *** extended Ethernet networking support by using VDE Ethernet. *** Warning *** *** Warning *** To build simulator(s) with extended networking support you *** Warning *** should read 0readme_ethernet.txt and follow the instructions *** Warning *** regarding the needed libvdeplug components for your Linux *** Warning *** platform *** Warning *** *** *** vax Simulator being built with: *** - compiler optimizations and no debugging support. GCC Version: 4.7.2. *** - dynamic networking support using Linux provided libpcap components. *** *** git commit id is 32b8f063620db62213151f18403fcd9c02fae97f. *** mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB sim_BuildROMs.c -o BIN/BuildROMs BIN/BuildROMs rm -f BIN/BuildROMs mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB VAX/vax_cpu.c VAX/vax_cpu1.c VAX/vax_fpa.c VAX/vax_io.c VAX/vax_cis.c VAX/vax_octa.c VAX/vax_cmode.c VAX/vax_mmu.c VAX/vax_stddev.c VAX/vax_sysdev.c VAX/vax_sys.c VAX/vax_syscm.c VAX/vax_syslist.c PDP11/pdp11_rl.c PDP11/pdp11_rq.c PDP11/pdp11_ts.c PDP11/pdp11_dz.c PDP11/pdp11_lp.c PDP11/pdp11_tq.c PDP11/pdp11_xq.c PDP11/pdp11_vh.c PDP11/pdp11_cr.c PDP11/pdp11_io_lib.c scp.c sim_console.c sim_fio.c sim_timer.c sim_sock.c sim_tmxr.c sim_ether.c sim_tape.c sim_disk.c sim_serial.c sim_video.c -DVM_VAX -DUSE_INT64 -DUSE_ADDR64 -I VAX -I PDP11 -DUSE_SHARED -I/usr/include/ -DUSE_TAP_NETWORK -o BIN/microvax3900 -lm -lrt -lpthread -ldl cp BIN/microvax3900 BIN/vax [root at localhost simh-master]# What should I do after this? Create a vax.ini file ? - Priya On Mon, Nov 4, 2013 at 7:13 PM, Mark Pizzolato - Info Comm < Mark at infocomm.com> wrote: > From what you?ve provided, I can?t really tell EXACTLY what simulator you > are running or how it was built or what it thinks is its capabilities are. > The latest source is the most supportable and the build (makefile) tells us > many things. Phillip Wherry wrote the instructions you are followed 9 > years ago. Things have evolved since that time and become much smoother. > > > > You are getting the ?BOOT/R5:0 EXIT? message since you have the system > setup to autoboot (BDR set to 0) but your NVRAM doesn?t yet specify a > default boot device. This is NOT related to the network issues. > > > > Please build the latest source and if what you then need to do isn?t > obvious, then we can explore further. > > > > The total build instructions should be: > > $ wget https://github.com/simh/simh/archive/master.zip > > $ unzip simh-master.zip > > $ cd simh-master > > $ make vax > > > > As I said, if the simulator doesn?t work correctly for you then the output > produced during the above make will be useful. > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Monday, November 04, 2013 5:31 AM > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > I have followed steps from > http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the > simulator, earlier I was having a problem while starting TCP/IP, but I > solved that by attaching the interface type in vax.ini file, > > > > Attach Ethernet to a network interface > > set XQ mac=08-00-2B-AC-AC-B1 > > set XQ type=DELQA > > attach XQ em1 > > > > I don't think I have to build it again unless of course that is the only > solution to make this work. > > > > I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, > > Please check this, > > > > VAX simulator V3.9-0 > > NVR: buffering file in memory > > RQ: unit is read only > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > > > > > KA655-B V5.3, VMB 2.7 > > Performing normal system tests. > > 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. > > 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. > > 08..07..06..05..04..03.. > > Tests completed. > > Loading system software. > > (BOOT/R5:0 EXIT > > > > > > > > 2.. > > ?41 DEVASSIGN, EXIT > > ?06 HLT INST > > PC = 00000C1A > > Failure. > > >>>show version > > KA655-B V5.3, VMB 2.7 > > >>>boot dua0 > > (BOOT/R5:0 DUA0 > > > > > > > > 2.. > > -DUA0 > > 1..0.. > > > > > > %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk > > %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped > > %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk > > %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS > > OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id > = 0 > > %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. > > $! Copyright 2001 Compaq Computer Corporation. > > > > %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 > > %RUN-S-PROC_ID, identification of created process is 00000206 > > %DCL-S-SPAWNED, process SYSTEM_1 spawned > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% > > Operator _FORD$OPA0: has been enabled, username SYSTEM > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% > > Operator status for operator _FORD$OPA0: > > CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, > > LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, > OPER10, > > OPER11, OPER12 > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% > > Logfile has been initialized by operator _FORD$OPA0: > > Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% > > Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 > > CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, > > LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, > OPER10, > > OPER11, OPER12 > > > > %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-SERVERSTARTINGU, security server starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now > starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node > > -LICENSE-F-NOLICENSE, no license is active for this software product > > -LICENSE-I-SYSMGR, please see your system manager > > > > > > %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node > > -LICENSE-F-NOLICENSE, no license is active for this software product > > -LICENSE-I-SYSMGR, please see your system manager > > Startup processing continuing... > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) > > %RMS-E-FNF, file not found > > TP server process waiting > > > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% > > Message from user AUDIT$SERVER on FORD > > Security alarm (SECURITY) and security audit (SECURITY) on FORD, system > id: 1025 > > Auditable event: Audit server starting up > > Event time: 4-NOV-2013 18:45:18.58 > > PID: 00000203 > > Username: SYSTEM > > > > %STARTUP-I-AUDITCONTINUE, audit server initialization complete > > > > The OpenVMS VAX system is now executing the site-specific startup commands. > > > > > > %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 > > %TCPIP-I-NORMAL, timezone information verified > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet Loaded > > > > %RUN-S-PROC_ID, identification of created process is 00000211 > > %TCPIP-I-SETLOCAL, setting domain and/or local host > > %TCPIP-I-STARTCOMM, starting communication > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet Started > > > > %TCPIP-I-SETPROTP, setting protocol parameters > > %TCPIP-I-DEFINTE, defining interfaces > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Created INTERnet interface: QE0 > > > > %TCPIP-I-STARTNAME, starting name service > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% > > Message from user Proxy Server on FORD > > Loading proxy server image TCPIP$PROXY_SERVICES > > > > %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed > > %TCPIP-E-PROXYERROR, error processing proxy request > > -TCPIP-W-NORECORD, information not found > > -RMS-E-RNF, record not found > > %TCPIP-E-PROXYERROR, error processing proxy request > > -TCPIP-W-NORECORD, information not found > > -RMS-E-RNF, record not found > > %TCPIP-I-LOADSERV, loading TCPIP server proxy information > > %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records > > -TCPIP-I-SERVSKIP, skipped 0 communication proxy records > > -TCPIP-I-SERVTOTAL, total of 0 proxy records read > > %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Activate FTP Server > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP NOLISTEN Process creation success: Service - FTP > > > > %TCPIP-S-STARTDONE, TCPIP$FTP startup completed > > %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% > > Message from user PWIPdriver on FORD > > > > PWIPdriver successfully started. > > > > %RUN-S-PROC_ID, identification of created process is 00000213 > > %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Activate TELNET Server > > > > %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed > > %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 > 18:45:50.33 > > > > %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: > > %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: > > %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 > > SYSTEM job terminated at 4-NOV-2013 18:45:53.04 > > > > Accounting information: > > Buffered I/O count: 2340 Peak working set size: > 1821 > > Direct I/O count: 866 Peak page file size: > 8473 > > Page faults: 12611 Mounted volumes: > 2 > > Charged CPU time: 0 00:00:49.40 Elapsed time: 0 > 00:01:01.11 > > > > Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 > > > > After I login > > > > > > On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > Hi Priya, > > > > I was looking for the output of ?SHOW VERSION? from the ?sim> ? prompt. > The ?SHOW VERSION? output from the ?>>> ? prompt is the version of the VAX > console ROM. The ?sim>? Version information describes the simulator?s > capabilities. > > > > From the simulator startup message I can see you?re running simh V3.9. > > > > Please download and build the source from > https://github.com/simh/simh/archive/master.zip > > > > You should just be able to unzip the file and build the vax simulator with > ?make vax?. > > > > The ?messages you get when you run the simulator? include an error > message. It would be useful to see what command caused that error. To do > so you can invoke the simulator with the ?-v? command switch. > > > > If this doesn?t help, then the output produced when you invoked the ?make > vax? command to build the simulator will be useful. > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Monday, November 04, 2013 4:50 AM > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > I'm using fedora 18 as the host. > > *This is the message i get when i run the simulator :* > > > > VAX simulator V3.9-0 > > NVR: buffering file in memory > > RQ: unit is read only > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > > > > > KA655-B V5.3, VMB 2.7 > > Performing normal system tests. > > 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. > > 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. > > 08..07..06..05..04..03.. > > Tests completed. > > Loading system software. > > (BOOT/R5:0 EXIT > > > > > > > > 2.. > > ?41 DEVASSIGN, EXIT > > ?06 HLT INST > > PC = 00000C1A > > Failure. > > >>>show version > > KA655-B V5.3, VMB 2.7 > > > > *This is the vax.ini file :* > > > > ; > > ; Load CPU microcode > > load -r /usr/local/vax/data/ka655x.bin > > ; > > ; Attach non-volatile RAM to a file > > attach nvr /usr/local/vax/data/nvram.bin > > ; > > ; This virtual machine has 64M memory > > set cpu 64m > > ; > > ; Define disk drive types. RA92 is largest-supported VAX drive. > > set rq0 ra92 > > set rq1 ra92 > > set rq2 ra92 > > set rq3 cdrom > > ; > > ; Attach defined drives to local files > > attach rq0 /usr/local/vax/data/d0.dsk > > attach rq1 /usr/local/vax/data/d1.dsk > > attach rq2 /usr/local/vax/data/d2.dsk > > ; > > ; Attach the CD-ROM to its file (read-only) > > attach -r rq3 /usr/local/vax/data/cd.iso > > ; > > ; Disable unused devices. It's also possible to disable individual devices, > > ; using a construction like "set rq2 disable" if desired. > > ; > > set rl disable > > set ts disable > > ; > > ; Attach Ethernet to a network interface > > set XQ mac=08-00-2B-AC-AC-B1 > > set XQ type=DELQA > > attach XQ em1 > > ; > > ;Uncomment the line below to enable auto-boot > > dep bdr 0 > > ; > > ;Choose one of the following lines.SET CPU CONHALT returns control to the > > ; VAX console monitor on a halt event (where behavior will be further > > ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will > > ; cause the simulator to get control instead. > > set cpu conhalt > > ;set cpu simhalt > > ; > > ;Now start the emulator > > boot cpu > > ; > > ; Exit the simulator > > exit > > > > Regards, > > Priya > > > > On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > > The output you sent seems to indicate that your problem isn't with > telnet, > > but with the guest not having networking at all (configuring the network > > inside simh alone doesn't do much). > > > > What host OS are you doing this on? > > What does your host networking stack look like? > > Can you show your simh configuration file? > > Also include the output of SHOW VERSION from within the simulator you are > using... > > > > Regards, > > > > > > Lennert > > > > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > > Hi, > > > I'm new to openvms and simh. I installed open vms 7.3 and have > > configured > > > tcpip too. > > > I want to connect to other hosts to test my tcpip. > > > $ telnet 192.168.0.37 > > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > $ ucx > > > TCPIP> ping 192.168.0.37 > > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > > ----192.168.0.37 PING Statistics---- > > > 4 packets transmitted, 0 packets received, 100% packet loss > > > %SYSTEM-F-TIMEOUT, device timeout > > > I'm not able to understand where I went wrong. > > > Thanks, > > > Priya > > > > > _______________________________________________ > > > Simh mailing list > > > Simh at trailing-edge.com > > > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Tue Nov 5 06:33:31 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Tue, 5 Nov 2013 03:33:31 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C1@REDROOF2.alohasunset.com> Hi Priya, Looks good so far. You should be able to run with the vax binary in BIN/vax and the configuration file you've already got. I would initially comment out the "dep bdr 0" and boot manually until you get things fully working and at the >>> prompt type "SET BOOT DUA0:" to set your autoboot device in the NVRAM. Meanwhile, to verify your network configuration, invoke the simulator and hit ^E to get to a sim> prompt and enter the following commands: sim> SHOW ETHERNET This will list the available network devices which libpcap can connect to. Not all of them will work with simh, but the one which is your wired network connection should be fully usable. If you still have problems send back the output of ^E sim> SHOW VERSION - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Tuesday, November 05, 2013 2:01 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hi, I built the vax as told : $ make vax lib paths are: /lib/ /lib/sse2/ /usr/lib/atlas/ /usr/lib/dyninst/ /usr/lib/llvm/ /usr/lib/mysql/ /usr/lib/tcl8.5/ /usr/lib/tracker-0.14/ /usr/lib/xulrunner/ using libm: /lib//libm.so using librt: /lib//librt.so using libpthread: /lib//libpthread.so /usr/include/pthread.h using libdl: /lib//libdl.so /usr/include/dlfcn.h using libpcap: /usr/include/pcap.h *** Warning *** *** Warning *** vax Simulator are being built with *** Warning *** minimal libpcap networking support *** Warning *** *** Warning *** Simulators on your Linux platform can also be built with *** Warning *** extended Ethernet networking support by using VDE Ethernet. *** Warning *** *** Warning *** To build simulator(s) with extended networking support you *** Warning *** should read 0readme_ethernet.txt and follow the instructions *** Warning *** regarding the needed libvdeplug components for your Linux *** Warning *** platform *** Warning *** *** *** vax Simulator being built with: *** - compiler optimizations and no debugging support. GCC Version: 4.7.2. *** - dynamic networking support using Linux provided libpcap components. *** *** git commit id is 32b8f063620db62213151f18403fcd9c02fae97f. *** mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB sim_BuildROMs.c -o BIN/BuildROMs BIN/BuildROMs rm -f BIN/BuildROMs mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB VAX/vax_cpu.c VAX/vax_cpu1.c VAX/vax_fpa.c VAX/vax_io.c VAX/vax_cis.c VAX/vax_octa.c VAX/vax_cmode.c VAX/vax_mmu.c VAX/vax_stddev.c VAX/vax_sysdev.c VAX/vax_sys.c VAX/vax_syscm.c VAX/vax_syslist.c PDP11/pdp11_rl.c PDP11/pdp11_rq.c PDP11/pdp11_ts.c PDP11/pdp11_dz.c PDP11/pdp11_lp.c PDP11/pdp11_tq.c PDP11/pdp11_xq.c PDP11/pdp11_vh.c PDP11/pdp11_cr.c PDP11/pdp11_io_lib.c scp.c sim_console.c sim_fio.c sim_timer.c sim_sock.c sim_tmxr.c sim_ether.c sim_tape.c sim_disk.c sim_serial.c sim_video.c -DVM_VAX -DUSE_INT64 -DUSE_ADDR64 -I VAX -I PDP11 -DUSE_SHARED -I/usr/include/ -DUSE_TAP_NETWORK -o BIN/microvax3900 -lm -lrt -lpthread -ldl cp BIN/microvax3900 BIN/vax [root at localhost simh-master]# What should I do after this? Create a vax.ini file ? - Priya On Mon, Nov 4, 2013 at 7:13 PM, Mark Pizzolato - Info Comm > wrote: >From what you've provided, I can't really tell EXACTLY what simulator you are running or how it was built or what it thinks is its capabilities are. The latest source is the most supportable and the build (makefile) tells us many things. Phillip Wherry wrote the instructions you are followed 9 years ago. Things have evolved since that time and become much smoother. You are getting the "BOOT/R5:0 EXIT" message since you have the system setup to autoboot (BDR set to 0) but your NVRAM doesn't yet specify a default boot device. This is NOT related to the network issues. Please build the latest source and if what you then need to do isn't obvious, then we can explore further. The total build instructions should be: $ wget https://github.com/simh/simh/archive/master.zip $ unzip simh-master.zip $ cd simh-master $ make vax As I said, if the simulator doesn't work correctly for you then the output produced during the above make will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 5:31 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I have followed steps from http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the simulator, earlier I was having a problem while starting TCP/IP, but I solved that by attaching the interface type in vax.ini file, Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 I don't think I have to build it again unless of course that is the only solution to make this work. I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, Please check this, VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 >>>boot dua0 (BOOT/R5:0 DUA0 2.. -DUA0 1..0.. %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id = 0 %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. $! Copyright 2001 Compaq Computer Corporation. %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 %RUN-S-PROC_ID, identification of created process is 00000206 %DCL-S-SPAWNED, process SYSTEM_1 spawned %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% Operator _FORD$OPA0: has been enabled, username SYSTEM %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% Operator status for operator _FORD$OPA0: CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% Logfile has been initialized by operator _FORD$OPA0: Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-SERVERSTARTINGU, security server starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% Message from user SYSTEM on FORD %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager Startup processing continuing... %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% Message from user SYSTEM on FORD Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) %RMS-E-FNF, file not found TP server process waiting %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% Message from user AUDIT$SERVER on FORD Security alarm (SECURITY) and security audit (SECURITY) on FORD, system id: 1025 Auditable event: Audit server starting up Event time: 4-NOV-2013 18:45:18.58 PID: 00000203 Username: SYSTEM %STARTUP-I-AUDITCONTINUE, audit server initialization complete The OpenVMS VAX system is now executing the site-specific startup commands. %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 %TCPIP-I-NORMAL, timezone information verified %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Loaded %RUN-S-PROC_ID, identification of created process is 00000211 %TCPIP-I-SETLOCAL, setting domain and/or local host %TCPIP-I-STARTCOMM, starting communication %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Started %TCPIP-I-SETPROTP, setting protocol parameters %TCPIP-I-DEFINTE, defining interfaces %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Created INTERnet interface: QE0 %TCPIP-I-STARTNAME, starting name service %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% Message from user Proxy Server on FORD Loading proxy server image TCPIP$PROXY_SERVICES %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-I-LOADSERV, loading TCPIP server proxy information %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records -TCPIP-I-SERVSKIP, skipped 0 communication proxy records -TCPIP-I-SERVTOTAL, total of 0 proxy records read %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate FTP Server %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP NOLISTEN Process creation success: Service - FTP %TCPIP-S-STARTDONE, TCPIP$FTP startup completed %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% Message from user PWIPdriver on FORD PWIPdriver successfully started. %RUN-S-PROC_ID, identification of created process is 00000213 %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate TELNET Server %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 18:45:50.33 %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 SYSTEM job terminated at 4-NOV-2013 18:45:53.04 Accounting information: Buffered I/O count: 2340 Peak working set size: 1821 Direct I/O count: 866 Peak page file size: 8473 Page faults: 12611 Mounted volumes: 2 Charged CPU time: 0 00:00:49.40 Elapsed time: 0 00:01:01.11 Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 After I login On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm > wrote: Hi Priya, I was looking for the output of "SHOW VERSION" from the "sim> " prompt. The "SHOW VERSION" output from the ">>> " prompt is the version of the VAX console ROM. The "sim>" Version information describes the simulator's capabilities. >From the simulator startup message I can see you're running simh V3.9. Please download and build the source from https://github.com/simh/simh/archive/master.zip You should just be able to unzip the file and build the vax simulator with "make vax". The "messages you get when you run the simulator" include an error message. It would be useful to see what command caused that error. To do so you can invoke the simulator with the "-v" command switch. If this doesn't help, then the output produced when you invoked the "make vax" command to build the simulator will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 4:50 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I'm using fedora 18 as the host. This is the message i get when i run the simulator : VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 This is the vax.ini file : ; ; Load CPU microcode load -r /usr/local/vax/data/ka655x.bin ; ; Attach non-volatile RAM to a file attach nvr /usr/local/vax/data/nvram.bin ; ; This virtual machine has 64M memory set cpu 64m ; ; Define disk drive types. RA92 is largest-supported VAX drive. set rq0 ra92 set rq1 ra92 set rq2 ra92 set rq3 cdrom ; ; Attach defined drives to local files attach rq0 /usr/local/vax/data/d0.dsk attach rq1 /usr/local/vax/data/d1.dsk attach rq2 /usr/local/vax/data/d2.dsk ; ; Attach the CD-ROM to its file (read-only) attach -r rq3 /usr/local/vax/data/cd.iso ; ; Disable unused devices. It's also possible to disable individual devices, ; using a construction like "set rq2 disable" if desired. ; set rl disable set ts disable ; ; Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 ; ;Uncomment the line below to enable auto-boot dep bdr 0 ; ;Choose one of the following lines.SET CPU CONHALT returns control to the ; VAX console monitor on a halt event (where behavior will be further ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will ; cause the simulator to get control instead. set cpu conhalt ;set cpu simhalt ; ;Now start the emulator boot cpu ; ; Exit the simulator exit Regards, Priya On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm > wrote: On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > The output you sent seems to indicate that your problem isn't with telnet, > but with the guest not having networking at all (configuring the network > inside simh alone doesn't do much). > > What host OS are you doing this on? > What does your host networking stack look like? > Can you show your simh configuration file? Also include the output of SHOW VERSION from within the simulator you are using... > Regards, > > > Lennert > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > Hi, > > I'm new to openvms and simh. I installed open vms 7.3 and have > configured > > tcpip too. > > I want to connect to other hosts to test my tcpip. > > $ telnet 192.168.0.37 > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > $ ucx > > TCPIP> ping 192.168.0.37 > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > ----192.168.0.37 PING Statistics---- > > 4 packets transmitted, 0 packets received, 100% packet loss > > %SYSTEM-F-TIMEOUT, device timeout > > I'm not able to understand where I went wrong. > > Thanks, > > Priya > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh -------------- next part -------------- An HTML attachment was scrubbed... URL: From gerard.calliet at pia-sofer.fr Tue Nov 5 06:55:58 2013 From: gerard.calliet at pia-sofer.fr (gerard.calliet at pia-sofer.fr) Date: Tue, 05 Nov 2013 12:55:58 +0100 Subject: [Simh] how to get eth connexion In-Reply-To: <5277773D.5050504@yahoo.fr> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> <5277773D.5050504@yahoo.fr> Message-ID: Hello, Thanks for the answers. It works, now. Just to get some understanding : 1) we need two different MAC address : why ? because the distinction is at the mac level ? 2) I saw we need at least one ip host connexion alive to have a connexion for simh - I am on Windows with wincap -. Again, why ? Thanks. Gerard Calliet Le 2013-11-04 11:30, prenouvel a ?crit?: > Hi G?rard, > > What does the command XQ show eth returns ? > > You try with Wifi, does it works with a RJ45 cable ? > > Didn't you deactivate an ethernet connection recently oh the PC host > ? > > Regards. > > Patrick. > > Le 04/11/2013 07:49, G?rard Calliet a ?crit : > >> Hi Mark, >> >> Thanks for your answer. >> >> I tried the simh 4.0 beta. It's still not working. >> I join show ethernet result, ipconfig/all result, my ucx config, >> the init file. >> I choosed the right eth (eth0 is the active wifi interface on >> windows). I gave its mac address as interf mac address in the simh >> init file. >> >> I don't understand where is the problem. I am just a beginner on >> simh, so I could have done some error, but I don't see what it is. >> >> G?rard Calliet >> pia-sofer >> >> Le 04/11/2013 00:37, Mark Pizzolato - Info Comm a ?crit : >> >>> On Sunday, November 03, 2013 at 2:47 PM, G?rard Calliet wrote: >>> >>>> Hello, >>>> >>>> I am a beginer on simh. I have tried a lot of thing to get >>>> connected by >>>> ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms 5.5 ... / >>>> ucx 4.0 I have >>>> instaled wincap on a Windows Seven I cannot get any connexion >>> Hi G?rard, >>> >>> Try using the latest simh binaries from >>> >> > > https://github.com/simh/Win32-Development-Binaries/blob/Win32-Development-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip >>> [1] >>> >>> Alternatively, if you've got a Visual Studio environment (or >>> MinGW) available, you can build from the latest sources available >>> from: https://github.com/simh/simh/archive/master.zip [2] >>> >>> If you are still having problems, provide the output of "SHOW >>> ETHERNET" from a "sim>" prompt along with the output of >>> IPCONFIG/ALL from a Windows command prompt, and explain what makes >>> you think that the ethernet is not working. >>> >>> Good Luck. >>> >>> - Mark >> >> _______________________________________________ >> Simh mailing list >> Simh at trailing-edge.com >> http://mailman.trailing-edge.com/mailman/listinfo/simh > > ------------------------- > > [3] > > Ce courrier ?lectronique ne contient aucun virus ou logiciel > malveillant parce que la protection Antivirus avast! [4] est active. > > > > Links: > ------ > [1] > > https://github.com/simh/Win32-Development-Binaries/blob/Win32-Development-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip > [2] https://github.com/simh/simh/archive/master.zip > [3] http://www.avast.com/ > [4] http://www.avast.com/ From priyachinc at gmail.com Tue Nov 5 07:21:51 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Tue, 5 Nov 2013 17:51:51 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C1@REDROOF2.alohasunset.com> Message-ID: Hi, show the version and ethernet connections: *sim> show ethernet* ETH devices: eth0 em1 (No description available) eth1 tap:tapN (Integrated Tun/Tap support) Open ETH Devices: XQ eth0 (No description available) Ethernet Device: Name: em1 Reflections: 0 Self Loopbacks Sent: 2 Self Loopbacks Rcvd: 0 Host NIC Address: 00:0B:CD:B2:17:D8 Packets Sent: 5 Asynch Interrupts: Disabled Read Queue: Count: 0 Read Queue: High: 0 Read Queue: Loss: 0 Peak Write Queue Size: 1 *sim> SHOW VERSION* MicroVAX 3900 simulator V4.0-0 Beta Simulator Framework Capabilities: 64b data 64b addresses Ethernet support Idle/Throttling support is available Virtual Hard Disk (VHD) support RAW disk and CD/DVD ROM support Asynchronous I/O support Host Platform: Compiler: GCC 4.7.2 20121109 (Red Hat 4.7.2-8) Simulator Compiled: Nov 5 2013 at 15:19:27 Memory Access: Little Endian Memory Pointer Size: 32 bits Large File (>2GB) support OS clock tick size: 2ms OS: Linux localhost.localdomain 3.6.10-4.fc18.i686.PAE #1 SMP Tue Dec 11 18:15:08 UTC 2012 i686 i686 i386 GNU/Linux git commit id: 32b8f063 and will I need *libpcap-devel distro *package to be installed ? -Priya On Tue, Nov 5, 2013 at 5:42 PM, priya chincholikar wrote: > Hi, > > Attached files show the version and ethernet connections. > > and will I need libpcap-devel distro package to be installed ? > > -Priya > > > > > On Tue, Nov 5, 2013 at 5:03 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > >> Hi Priya, >> >> >> >> Looks good so far. >> >> >> >> You should be able to run with the vax binary in BIN/vax and the >> configuration file you?ve already got. >> >> >> >> I would initially comment out the ?dep bdr 0? and boot manually until you >> get things fully working and at the >>> prompt type ?SET BOOT DUA0:? to set >> your autoboot device in the NVRAM. >> >> >> >> Meanwhile, to verify your network configuration, invoke the simulator and >> hit ^E to get to a sim> prompt and enter the following commands: >> >> >> >> sim> SHOW ETHERNET >> >> >> >> This will list the available network devices which libpcap can connect >> to. Not all of them will work with simh, but the one which is your wired >> network connection should be fully usable. >> >> >> >> If you still have problems send back the output of >> >> >> >> ^E >> >> sim> SHOW VERSION >> >> >> >> - Mark >> >> >> >> *From:* priya chincholikar [mailto:priyachinc at gmail.com] >> *Sent:* Tuesday, November 05, 2013 2:01 AM >> >> *To:* Mark Pizzolato - Info Comm >> *Cc:* Lennert Van Alboom; simh at trailing-edge.com >> *Subject:* Re: [Simh] Unable to telnet to other hosts >> >> >> >> Hi, >> >> I built the vax as told : >> >> >> >> * $ make vax* >> >> lib paths are: /lib/ /lib/sse2/ /usr/lib/atlas/ /usr/lib/dyninst/ >> /usr/lib/llvm/ /usr/lib/mysql/ /usr/lib/tcl8.5/ /usr/lib/tracker-0.14/ >> /usr/lib/xulrunner/ >> >> using libm: /lib//libm.so >> >> using librt: /lib//librt.so >> >> using libpthread: /lib//libpthread.so /usr/include/pthread.h >> >> using libdl: /lib//libdl.so /usr/include/dlfcn.h >> >> using libpcap: /usr/include/pcap.h >> >> *** Warning *** >> >> *** Warning *** vax Simulator are being built with >> >> *** Warning *** minimal libpcap networking support >> >> *** Warning *** >> >> *** Warning *** Simulators on your Linux platform can also be built with >> >> *** Warning *** extended Ethernet networking support by using VDE >> Ethernet. >> >> *** Warning *** >> >> *** Warning *** To build simulator(s) with extended networking support you >> >> *** Warning *** should read 0readme_ethernet.txt and follow the >> instructions >> >> *** Warning *** regarding the needed libvdeplug components for your Linux >> >> *** Warning *** platform >> >> *** Warning *** >> >> *** >> >> *** vax Simulator being built with: >> >> *** - compiler optimizations and no debugging support. GCC Version: 4.7.2. >> >> *** - dynamic networking support using Linux provided libpcap components. >> >> *** >> >> *** git commit id is 32b8f063620db62213151f18403fcd9c02fae97f. >> >> *** >> >> mkdir -p BIN >> >> gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions >> -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone >> -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result >> -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f >> -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD >> -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB sim_BuildROMs.c -o >> BIN/BuildROMs >> >> BIN/BuildROMs >> >> rm -f BIN/BuildROMs >> >> mkdir -p BIN >> >> gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions >> -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone >> -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result >> -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f >> -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD >> -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB VAX/vax_cpu.c VAX/vax_cpu1.c >> VAX/vax_fpa.c VAX/vax_io.c VAX/vax_cis.c VAX/vax_octa.c VAX/vax_cmode.c >> VAX/vax_mmu.c VAX/vax_stddev.c VAX/vax_sysdev.c VAX/vax_sys.c >> VAX/vax_syscm.c VAX/vax_syslist.c PDP11/pdp11_rl.c PDP11/pdp11_rq.c >> PDP11/pdp11_ts.c PDP11/pdp11_dz.c PDP11/pdp11_lp.c PDP11/pdp11_tq.c >> PDP11/pdp11_xq.c PDP11/pdp11_vh.c PDP11/pdp11_cr.c PDP11/pdp11_io_lib.c >> scp.c sim_console.c sim_fio.c sim_timer.c sim_sock.c sim_tmxr.c sim_ether.c >> sim_tape.c sim_disk.c sim_serial.c sim_video.c -DVM_VAX -DUSE_INT64 >> -DUSE_ADDR64 -I VAX -I PDP11 -DUSE_SHARED -I/usr/include/ -DUSE_TAP_NETWORK >> -o BIN/microvax3900 -lm -lrt -lpthread -ldl >> >> >> >> cp BIN/microvax3900 BIN/vax >> >> [root at localhost simh-master]# >> >> >> >> What should I do after this? Create a vax.ini file ? >> >> >> >> - Priya >> >> >> >> On Mon, Nov 4, 2013 at 7:13 PM, Mark Pizzolato - Info Comm < >> Mark at infocomm.com> wrote: >> >> From what you?ve provided, I can?t really tell EXACTLY what simulator you >> are running or how it was built or what it thinks is its capabilities are. >> The latest source is the most supportable and the build (makefile) tells us >> many things. Phillip Wherry wrote the instructions you are followed 9 >> years ago. Things have evolved since that time and become much smoother. >> >> >> >> You are getting the ?BOOT/R5:0 EXIT? message since you have the system >> setup to autoboot (BDR set to 0) but your NVRAM doesn?t yet specify a >> default boot device. This is NOT related to the network issues. >> >> >> >> Please build the latest source and if what you then need to do isn?t >> obvious, then we can explore further. >> >> >> >> The total build instructions should be: >> >> $ wget https://github.com/simh/simh/archive/master.zip >> >> $ unzip simh-master.zip >> >> $ cd simh-master >> >> $ make vax >> >> >> >> As I said, if the simulator doesn?t work correctly for you then the >> output produced during the above make will be useful. >> >> >> >> - Mark >> >> >> >> *From:* priya chincholikar [mailto:priyachinc at gmail.com] >> *Sent:* Monday, November 04, 2013 5:31 AM >> *To:* Mark Pizzolato - Info Comm >> *Cc:* Lennert Van Alboom; simh at trailing-edge.com >> *Subject:* Re: [Simh] Unable to telnet to other hosts >> >> >> >> I have followed steps from >> http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the >> simulator, earlier I was having a problem while starting TCP/IP, but I >> solved that by attaching the interface type in vax.ini file, >> >> >> >> Attach Ethernet to a network interface >> >> set XQ mac=08-00-2B-AC-AC-B1 >> >> set XQ type=DELQA >> >> attach XQ em1 >> >> >> >> I don't think I have to build it again unless of course that is the only >> solution to make this work. >> >> >> >> I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, >> >> Please check this, >> >> >> >> VAX simulator V3.9-0 >> >> NVR: buffering file in memory >> >> RQ: unit is read only >> >> /usr/local/vax/bin/vax.ini> attach XQ em1 >> >> Command not allowed >> >> >> >> >> >> KA655-B V5.3, VMB 2.7 >> >> Performing normal system tests. >> >> 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. >> >> 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. >> >> 08..07..06..05..04..03.. >> >> Tests completed. >> >> Loading system software. >> >> (BOOT/R5:0 EXIT >> >> >> >> >> >> >> >> 2.. >> >> ?41 DEVASSIGN, EXIT >> >> ?06 HLT INST >> >> PC = 00000C1A >> >> Failure. >> >> >>>show version >> >> KA655-B V5.3, VMB 2.7 >> >> >>>boot dua0 >> >> (BOOT/R5:0 DUA0 >> >> >> >> >> >> >> >> 2.. >> >> -DUA0 >> >> 1..0.. >> >> >> >> >> >> %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk >> >> %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped >> >> %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk >> >> %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS >> >> OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version >> id = 0 >> >> %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. >> >> $! Copyright 2001 Compaq Computer Corporation. >> >> >> >> %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 >> >> %RUN-S-PROC_ID, identification of created process is 00000206 >> >> %DCL-S-SPAWNED, process SYSTEM_1 spawned >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% >> >> Operator _FORD$OPA0: has been enabled, username SYSTEM >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% >> >> Operator status for operator _FORD$OPA0: >> >> CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, >> SECURITY, >> >> LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, >> OPER10, >> >> OPER11, OPER12 >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% >> >> Logfile has been initialized by operator _FORD$OPA0: >> >> Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% >> >> Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 >> >> CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, >> SECURITY, >> >> LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, >> OPER10, >> >> OPER11, OPER12 >> >> >> >> %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% >> >> Message from user SYSTEM on FORD >> >> %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% >> >> Message from user SYSTEM on FORD >> >> %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% >> >> Message from user SYSTEM on FORD >> >> %SECSRV-I-SERVERSTARTINGU, security server starting up >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% >> >> Message from user SYSTEM on FORD >> >> %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now >> starting up >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% >> >> Message from user SYSTEM on FORD >> >> %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node >> >> -LICENSE-F-NOLICENSE, no license is active for this software product >> >> -LICENSE-I-SYSMGR, please see your system manager >> >> >> >> >> >> %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node >> >> -LICENSE-F-NOLICENSE, no license is active for this software product >> >> -LICENSE-I-SYSMGR, please see your system manager >> >> Startup processing continuing... >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% >> >> Message from user SYSTEM on FORD >> >> Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) >> >> %RMS-E-FNF, file not found >> >> TP server process waiting >> >> >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% >> >> Message from user AUDIT$SERVER on FORD >> >> Security alarm (SECURITY) and security audit (SECURITY) on FORD, system >> id: 1025 >> >> Auditable event: Audit server starting up >> >> Event time: 4-NOV-2013 18:45:18.58 >> >> PID: 00000203 >> >> Username: SYSTEM >> >> >> >> %STARTUP-I-AUDITCONTINUE, audit server initialization complete >> >> >> >> The OpenVMS VAX system is now executing the site-specific startup >> commands. >> >> >> >> >> >> %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 >> 18:45:27.15 >> >> %TCPIP-I-NORMAL, timezone information verified >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% >> >> Message from user INTERnet on FORD >> >> INTERnet Loaded >> >> >> >> %RUN-S-PROC_ID, identification of created process is 00000211 >> >> %TCPIP-I-SETLOCAL, setting domain and/or local host >> >> %TCPIP-I-STARTCOMM, starting communication >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% >> >> Message from user INTERnet on FORD >> >> INTERnet Started >> >> >> >> %TCPIP-I-SETPROTP, setting protocol parameters >> >> %TCPIP-I-DEFINTE, defining interfaces >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% >> >> Message from user INTERnet on FORD >> >> INTERnet ACP Created INTERnet interface: QE0 >> >> >> >> %TCPIP-I-STARTNAME, starting name service >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% >> >> Message from user Proxy Server on FORD >> >> Loading proxy server image TCPIP$PROXY_SERVICES >> >> >> >> %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed >> >> %TCPIP-E-PROXYERROR, error processing proxy request >> >> -TCPIP-W-NORECORD, information not found >> >> -RMS-E-RNF, record not found >> >> %TCPIP-E-PROXYERROR, error processing proxy request >> >> -TCPIP-W-NORECORD, information not found >> >> -RMS-E-RNF, record not found >> >> %TCPIP-I-LOADSERV, loading TCPIP server proxy information >> >> %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records >> >> -TCPIP-I-SERVSKIP, skipped 0 communication proxy records >> >> -TCPIP-I-SERVTOTAL, total of 0 proxy records read >> >> %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% >> >> Message from user INTERnet on FORD >> >> INTERnet ACP Activate FTP Server >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% >> >> Message from user INTERnet on FORD >> >> INTERnet ACP NOLISTEN Process creation success: Service - FTP >> >> >> >> %TCPIP-S-STARTDONE, TCPIP$FTP startup completed >> >> %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% >> >> Message from user PWIPdriver on FORD >> >> >> >> PWIPdriver successfully started. >> >> >> >> %RUN-S-PROC_ID, identification of created process is 00000213 >> >> %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% >> >> Message from user INTERnet on FORD >> >> INTERnet ACP Activate TELNET Server >> >> >> >> %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed >> >> %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 >> 18:45:50.33 >> >> >> >> %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: >> >> %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: >> >> %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 >> >> SYSTEM job terminated at 4-NOV-2013 18:45:53.04 >> >> >> >> Accounting information: >> >> Buffered I/O count: 2340 Peak working set size: >> 1821 >> >> Direct I/O count: 866 Peak page file size: >> 8473 >> >> Page faults: 12611 Mounted volumes: >> 2 >> >> Charged CPU time: 0 00:00:49.40 Elapsed time: 0 >> 00:01:01.11 >> >> >> >> Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 >> >> >> >> After I login >> >> >> >> >> >> On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm < >> Mark at infocomm.com> wrote: >> >> Hi Priya, >> >> >> >> I was looking for the output of ?SHOW VERSION? from the ?sim> ? prompt. >> The ?SHOW VERSION? output from the ?>>> ? prompt is the version of the VAX >> console ROM. The ?sim>? Version information describes the simulator?s >> capabilities. >> >> >> >> From the simulator startup message I can see you?re running simh V3.9. >> >> >> >> Please download and build the source from >> https://github.com/simh/simh/archive/master.zip >> >> >> >> You should just be able to unzip the file and build the vax simulator >> with ?make vax?. >> >> >> >> The ?messages you get when you run the simulator? include an error >> message. It would be useful to see what command caused that error. To do >> so you can invoke the simulator with the ?-v? command switch. >> >> >> >> If this doesn?t help, then the output produced when you invoked the ?make >> vax? command to build the simulator will be useful. >> >> >> >> - Mark >> >> >> >> *From:* priya chincholikar [mailto:priyachinc at gmail.com] >> *Sent:* Monday, November 04, 2013 4:50 AM >> *To:* Mark Pizzolato - Info Comm >> *Cc:* Lennert Van Alboom; simh at trailing-edge.com >> *Subject:* Re: [Simh] Unable to telnet to other hosts >> >> >> >> I'm using fedora 18 as the host. >> >> *This is the message i get when i run the simulator :* >> >> >> >> VAX simulator V3.9-0 >> >> NVR: buffering file in memory >> >> RQ: unit is read only >> >> /usr/local/vax/bin/vax.ini> attach XQ em1 >> >> Command not allowed >> >> >> >> >> >> KA655-B V5.3, VMB 2.7 >> >> Performing normal system tests. >> >> 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. >> >> 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. >> >> 08..07..06..05..04..03.. >> >> Tests completed. >> >> Loading system software. >> >> (BOOT/R5:0 EXIT >> >> >> >> >> >> >> >> 2.. >> >> ?41 DEVASSIGN, EXIT >> >> ?06 HLT INST >> >> PC = 00000C1A >> >> Failure. >> >> >>>show version >> >> KA655-B V5.3, VMB 2.7 >> >> >> >> *This is the vax.ini file :* >> >> >> >> ; >> >> ; Load CPU microcode >> >> load -r /usr/local/vax/data/ka655x.bin >> >> ; >> >> ; Attach non-volatile RAM to a file >> >> attach nvr /usr/local/vax/data/nvram.bin >> >> ; >> >> ; This virtual machine has 64M memory >> >> set cpu 64m >> >> ; >> >> ; Define disk drive types. RA92 is largest-supported VAX drive. >> >> set rq0 ra92 >> >> set rq1 ra92 >> >> set rq2 ra92 >> >> set rq3 cdrom >> >> ; >> >> ; Attach defined drives to local files >> >> attach rq0 /usr/local/vax/data/d0.dsk >> >> attach rq1 /usr/local/vax/data/d1.dsk >> >> attach rq2 /usr/local/vax/data/d2.dsk >> >> ; >> >> ; Attach the CD-ROM to its file (read-only) >> >> attach -r rq3 /usr/local/vax/data/cd.iso >> >> ; >> >> ; Disable unused devices. It's also possible to disable individual >> devices, >> >> ; using a construction like "set rq2 disable" if desired. >> >> ; >> >> set rl disable >> >> set ts disable >> >> ; >> >> ; Attach Ethernet to a network interface >> >> set XQ mac=08-00-2B-AC-AC-B1 >> >> set XQ type=DELQA >> >> attach XQ em1 >> >> ; >> >> ;Uncomment the line below to enable auto-boot >> >> dep bdr 0 >> >> ; >> >> ;Choose one of the following lines.SET CPU CONHALT returns control to the >> >> ; VAX console monitor on a halt event (where behavior will be further >> >> ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will >> >> ; cause the simulator to get control instead. >> >> set cpu conhalt >> >> ;set cpu simhalt >> >> ; >> >> ;Now start the emulator >> >> boot cpu >> >> ; >> >> ; Exit the simulator >> >> exit >> >> >> >> Regards, >> >> Priya >> >> >> >> On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm < >> Mark at infocomm.com> wrote: >> >> On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: >> > The output you sent seems to indicate that your problem isn't with >> telnet, >> > but with the guest not having networking at all (configuring the network >> > inside simh alone doesn't do much). >> > >> > What host OS are you doing this on? >> > What does your host networking stack look like? >> > Can you show your simh configuration file? >> >> Also include the output of SHOW VERSION from within the simulator you are >> using... >> >> >> > Regards, >> > >> > >> > Lennert >> > >> > >> > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: >> > > Hi, >> > > I'm new to openvms and simh. I installed open vms 7.3 and have >> > configured >> > > tcpip too. >> > > I want to connect to other hosts to test my tcpip. >> > > $ telnet 192.168.0.37 >> > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 >> > > -TCPIP-E-NO_RECOVERY, unexpected name server failure >> > > $ ucx >> > > TCPIP> ping 192.168.0.37 >> > > PING 192.168.0.37 (192.168.0.37): 56 data bytes >> > > ----192.168.0.37 PING Statistics---- >> > > 4 packets transmitted, 0 packets received, 100% packet loss >> > > %SYSTEM-F-TIMEOUT, device timeout >> > > I'm not able to understand where I went wrong. >> > > Thanks, >> > > Priya >> > >> > > _______________________________________________ >> > > Simh mailing list >> > > Simh at trailing-edge.com >> > > http://mailman.trailing-edge.com/mailman/listinfo/simh >> >> >> >> >> >> >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Tue Nov 5 07:30:29 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Tue, 5 Nov 2013 04:30:29 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C1@REDROOF2.alohasunset.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C3@REDROOF2.alohasunset.com> You do not need any additional libpcap distro, the make output AND the simulator "SHOW ETHERNET" output show that you already have a network capable simulator. The SHOW ETHERNET output now shows that you've successfully opened the network device (em1). As long as it is a wired Ethernet connection you should be good to go. By that, I mean once you've got a running operating system installed with IP network stack, you should be able to talk to OTHER systems on your LAN, but NOT to the host system. The attached image you sent earlier in this conversation shows your simulated system's IP address as 192.168.1.110, but you were attempting to PING an address of 192.168.0.37. Given the netmask of the simulator's interface, that should be on your LAN, however, does this really describe your LAN? What is the host Linux system's IP configuration: $ ifconfig $ route -n - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Tuesday, November 05, 2013 4:12 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hi, Attached files show the version and ethernet connections. and will I need libpcap-devel distro package to be installed ? -Priya On Tue, Nov 5, 2013 at 5:03 PM, Mark Pizzolato - Info Comm > wrote: Hi Priya, Looks good so far. You should be able to run with the vax binary in BIN/vax and the configuration file you've already got. I would initially comment out the "dep bdr 0" and boot manually until you get things fully working and at the >>> prompt type "SET BOOT DUA0:" to set your autoboot device in the NVRAM. Meanwhile, to verify your network configuration, invoke the simulator and hit ^E to get to a sim> prompt and enter the following commands: sim> SHOW ETHERNET This will list the available network devices which libpcap can connect to. Not all of them will work with simh, but the one which is your wired network connection should be fully usable. If you still have problems send back the output of ^E sim> SHOW VERSION - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Tuesday, November 05, 2013 2:01 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hi, I built the vax as told : $ make vax lib paths are: /lib/ /lib/sse2/ /usr/lib/atlas/ /usr/lib/dyninst/ /usr/lib/llvm/ /usr/lib/mysql/ /usr/lib/tcl8.5/ /usr/lib/tracker-0.14/ /usr/lib/xulrunner/ using libm: /lib//libm.so using librt: /lib//librt.so using libpthread: /lib//libpthread.so /usr/include/pthread.h using libdl: /lib//libdl.so /usr/include/dlfcn.h using libpcap: /usr/include/pcap.h *** Warning *** *** Warning *** vax Simulator are being built with *** Warning *** minimal libpcap networking support *** Warning *** *** Warning *** Simulators on your Linux platform can also be built with *** Warning *** extended Ethernet networking support by using VDE Ethernet. *** Warning *** *** Warning *** To build simulator(s) with extended networking support you *** Warning *** should read 0readme_ethernet.txt and follow the instructions *** Warning *** regarding the needed libvdeplug components for your Linux *** Warning *** platform *** Warning *** *** *** vax Simulator being built with: *** - compiler optimizations and no debugging support. GCC Version: 4.7.2. *** - dynamic networking support using Linux provided libpcap components. *** *** git commit id is 32b8f063620db62213151f18403fcd9c02fae97f. *** mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB sim_BuildROMs.c -o BIN/BuildROMs BIN/BuildROMs rm -f BIN/BuildROMs mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB VAX/vax_cpu.c VAX/vax_cpu1.c VAX/vax_fpa.c VAX/vax_io.c VAX/vax_cis.c VAX/vax_octa.c VAX/vax_cmode.c VAX/vax_mmu.c VAX/vax_stddev.c VAX/vax_sysdev.c VAX/vax_sys.c VAX/vax_syscm.c VAX/vax_syslist.c PDP11/pdp11_rl.c PDP11/pdp11_rq.c PDP11/pdp11_ts.c PDP11/pdp11_dz.c PDP11/pdp11_lp.c PDP11/pdp11_tq.c PDP11/pdp11_xq.c PDP11/pdp11_vh.c PDP11/pdp11_cr.c PDP11/pdp11_io_lib.c scp.c sim_console.c sim_fio.c sim_timer.c sim_sock.c sim_tmxr.c sim_ether.c sim_tape.c sim_disk.c sim_serial.c sim_video.c -DVM_VAX -DUSE_INT64 -DUSE_ADDR64 -I VAX -I PDP11 -DUSE_SHARED -I/usr/include/ -DUSE_TAP_NETWORK -o BIN/microvax3900 -lm -lrt -lpthread -ldl cp BIN/microvax3900 BIN/vax [root at localhost simh-master]# What should I do after this? Create a vax.ini file ? - Priya On Mon, Nov 4, 2013 at 7:13 PM, Mark Pizzolato - Info Comm > wrote: >From what you've provided, I can't really tell EXACTLY what simulator you are running or how it was built or what it thinks is its capabilities are. The latest source is the most supportable and the build (makefile) tells us many things. Phillip Wherry wrote the instructions you are followed 9 years ago. Things have evolved since that time and become much smoother. You are getting the "BOOT/R5:0 EXIT" message since you have the system setup to autoboot (BDR set to 0) but your NVRAM doesn't yet specify a default boot device. This is NOT related to the network issues. Please build the latest source and if what you then need to do isn't obvious, then we can explore further. The total build instructions should be: $ wget https://github.com/simh/simh/archive/master.zip $ unzip simh-master.zip $ cd simh-master $ make vax As I said, if the simulator doesn't work correctly for you then the output produced during the above make will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 5:31 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I have followed steps from http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the simulator, earlier I was having a problem while starting TCP/IP, but I solved that by attaching the interface type in vax.ini file, Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 I don't think I have to build it again unless of course that is the only solution to make this work. I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, Please check this, VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 >>>boot dua0 (BOOT/R5:0 DUA0 2.. -DUA0 1..0.. %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id = 0 %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. $! Copyright 2001 Compaq Computer Corporation. %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 %RUN-S-PROC_ID, identification of created process is 00000206 %DCL-S-SPAWNED, process SYSTEM_1 spawned %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% Operator _FORD$OPA0: has been enabled, username SYSTEM %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% Operator status for operator _FORD$OPA0: CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% Logfile has been initialized by operator _FORD$OPA0: Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-SERVERSTARTINGU, security server starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% Message from user SYSTEM on FORD %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager Startup processing continuing... %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% Message from user SYSTEM on FORD Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) %RMS-E-FNF, file not found TP server process waiting %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% Message from user AUDIT$SERVER on FORD Security alarm (SECURITY) and security audit (SECURITY) on FORD, system id: 1025 Auditable event: Audit server starting up Event time: 4-NOV-2013 18:45:18.58 PID: 00000203 Username: SYSTEM %STARTUP-I-AUDITCONTINUE, audit server initialization complete The OpenVMS VAX system is now executing the site-specific startup commands. %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 %TCPIP-I-NORMAL, timezone information verified %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Loaded %RUN-S-PROC_ID, identification of created process is 00000211 %TCPIP-I-SETLOCAL, setting domain and/or local host %TCPIP-I-STARTCOMM, starting communication %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Started %TCPIP-I-SETPROTP, setting protocol parameters %TCPIP-I-DEFINTE, defining interfaces %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Created INTERnet interface: QE0 %TCPIP-I-STARTNAME, starting name service %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% Message from user Proxy Server on FORD Loading proxy server image TCPIP$PROXY_SERVICES %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-I-LOADSERV, loading TCPIP server proxy information %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records -TCPIP-I-SERVSKIP, skipped 0 communication proxy records -TCPIP-I-SERVTOTAL, total of 0 proxy records read %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate FTP Server %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP NOLISTEN Process creation success: Service - FTP %TCPIP-S-STARTDONE, TCPIP$FTP startup completed %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% Message from user PWIPdriver on FORD PWIPdriver successfully started. %RUN-S-PROC_ID, identification of created process is 00000213 %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate TELNET Server %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 18:45:50.33 %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 SYSTEM job terminated at 4-NOV-2013 18:45:53.04 Accounting information: Buffered I/O count: 2340 Peak working set size: 1821 Direct I/O count: 866 Peak page file size: 8473 Page faults: 12611 Mounted volumes: 2 Charged CPU time: 0 00:00:49.40 Elapsed time: 0 00:01:01.11 Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 After I login On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm > wrote: Hi Priya, I was looking for the output of "SHOW VERSION" from the "sim> " prompt. The "SHOW VERSION" output from the ">>> " prompt is the version of the VAX console ROM. The "sim>" Version information describes the simulator's capabilities. >From the simulator startup message I can see you're running simh V3.9. Please download and build the source from https://github.com/simh/simh/archive/master.zip You should just be able to unzip the file and build the vax simulator with "make vax". The "messages you get when you run the simulator" include an error message. It would be useful to see what command caused that error. To do so you can invoke the simulator with the "-v" command switch. If this doesn't help, then the output produced when you invoked the "make vax" command to build the simulator will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 4:50 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I'm using fedora 18 as the host. This is the message i get when i run the simulator : VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 This is the vax.ini file : ; ; Load CPU microcode load -r /usr/local/vax/data/ka655x.bin ; ; Attach non-volatile RAM to a file attach nvr /usr/local/vax/data/nvram.bin ; ; This virtual machine has 64M memory set cpu 64m ; ; Define disk drive types. RA92 is largest-supported VAX drive. set rq0 ra92 set rq1 ra92 set rq2 ra92 set rq3 cdrom ; ; Attach defined drives to local files attach rq0 /usr/local/vax/data/d0.dsk attach rq1 /usr/local/vax/data/d1.dsk attach rq2 /usr/local/vax/data/d2.dsk ; ; Attach the CD-ROM to its file (read-only) attach -r rq3 /usr/local/vax/data/cd.iso ; ; Disable unused devices. It's also possible to disable individual devices, ; using a construction like "set rq2 disable" if desired. ; set rl disable set ts disable ; ; Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 ; ;Uncomment the line below to enable auto-boot dep bdr 0 ; ;Choose one of the following lines.SET CPU CONHALT returns control to the ; VAX console monitor on a halt event (where behavior will be further ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will ; cause the simulator to get control instead. set cpu conhalt ;set cpu simhalt ; ;Now start the emulator boot cpu ; ; Exit the simulator exit Regards, Priya On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm > wrote: On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > The output you sent seems to indicate that your problem isn't with telnet, > but with the guest not having networking at all (configuring the network > inside simh alone doesn't do much). > > What host OS are you doing this on? > What does your host networking stack look like? > Can you show your simh configuration file? Also include the output of SHOW VERSION from within the simulator you are using... > Regards, > > > Lennert > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > Hi, > > I'm new to openvms and simh. I installed open vms 7.3 and have > configured > > tcpip too. > > I want to connect to other hosts to test my tcpip. > > $ telnet 192.168.0.37 > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > $ ucx > > TCPIP> ping 192.168.0.37 > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > ----192.168.0.37 PING Statistics---- > > 4 packets transmitted, 0 packets received, 100% packet loss > > %SYSTEM-F-TIMEOUT, device timeout > > I'm not able to understand where I went wrong. > > Thanks, > > Priya > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: telnet 1.jpg Type: image/jpeg Size: 78385 bytes Desc: telnet 1.jpg URL: From Mark at infocomm.com Tue Nov 5 07:55:39 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Tue, 5 Nov 2013 04:55:39 -0800 Subject: [Simh] how to get eth connexion In-Reply-To: References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> <5277773D.5050504@yahoo.fr> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C5@REDROOF2.alohasunset.com> On Tuesday, November 05, 2013 at 3:56 AM, G?rard Calliet wrote: > Thanks for the answers. It works, now. What works now? The Wired network connection or the WiFi one? > Just to get some understanding : > 1) we need two different MAC address : why ? because the distinction is at > the mac level ? We're simulating a whole computer within your desktop system. Each computer that exists on any network has a network device connected to that network wire. That network device, by definition is supposed to have a unique MAC address which allows the network to send packets to that device and to receive packets from that device. > 2) I saw we need at least one ip host connexion alive to have a connexion for > simh - I am on Windows with wincap -. Again, why ? I'm not sure exactly what you mean by 'need at least one ip host connexion alive'. Are you saying that you need to be connected to a network? If you are asking 'why' details specifically about WiFi functionality, you are beyond the scope of my support. I don't run simh simulators on WiFi networks due to the limitations of WiFi supporting a single MAC address per WiFi connection, and my needs to test the breadth of protocol functional for DEC systems. I've tried to walk you through getting things working on a wired network connection. Once you are successful there, you are welcome to explore whether what you are trying to do can also be made to work on a WiFi connection. There is some discussion about this in the simh FAQ (http://simh.trailing-edge.com/pdf/simh_faq.pdf). - Mark > Thanks. > > Gerard Calliet > > Le 2013-11-04 11:30, prenouvel a ?crit?: > > Hi G?rard, > > > > What does the command XQ show eth returns ? > > > > You try with Wifi, does it works with a RJ45 cable ? > > > > Didn't you deactivate an ethernet connection recently oh the PC host > > ? > > > > Regards. > > > > Patrick. > > > > Le 04/11/2013 07:49, G?rard Calliet a ?crit : > > > >> Hi Mark, > >> > >> Thanks for your answer. > >> > >> I tried the simh 4.0 beta. It's still not working. > >> I join show ethernet result, ipconfig/all result, my ucx config, the > >> init file. > >> I choosed the right eth (eth0 is the active wifi interface on > >> windows). I gave its mac address as interf mac address in the simh > >> init file. > >> > >> I don't understand where is the problem. I am just a beginner on > >> simh, so I could have done some error, but I don't see what it is. > >> > >> G?rard Calliet > >> pia-sofer > >> > >> Le 04/11/2013 00:37, Mark Pizzolato - Info Comm a ?crit : > >> > >>> On Sunday, November 03, 2013 at 2:47 PM, G?rard Calliet wrote: > >>> > >>>> Hello, > >>>> > >>>> I am a beginer on simh. I have tried a lot of thing to get > >>>> connected by ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms > >>>> 5.5 ... / ucx 4.0 I have instaled wincap on a Windows Seven I > >>>> cannot get any connexion > >>> Hi G?rard, > >>> > >>> Try using the latest simh binaries from > >>> > >> > > > > https://github.com/simh/Win32-Development-Binaries/blob/Win32- > Developm > > ent-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip > >>> [1] > >>> > >>> Alternatively, if you've got a Visual Studio environment (or > >>> MinGW) available, you can build from the latest sources available > >>> from: https://github.com/simh/simh/archive/master.zip [2] > >>> > >>> If you are still having problems, provide the output of "SHOW > >>> ETHERNET" from a "sim>" prompt along with the output of > IPCONFIG/ALL > >>> from a Windows command prompt, and explain what makes you think > that > >>> the ethernet is not working. > >>> > >>> Good Luck. > >>> > >>> - Mark > >> > >> _______________________________________________ > >> Simh mailing list > >> Simh at trailing-edge.com > >> http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > ------------------------- > > > > [3] > > > > Ce courrier ?lectronique ne contient aucun virus ou logiciel > > malveillant parce que la protection Antivirus avast! [4] est active. > > > > > > > > Links: > > ------ > > [1] > > > > https://github.com/simh/Win32-Development-Binaries/blob/Win32- > Developm > > ent-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip > > [2] https://github.com/simh/simh/archive/master.zip > > [3] http://www.avast.com/ > > [4] http://www.avast.com/ > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh From priyachinc at gmail.com Tue Nov 5 08:03:01 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Tue, 5 Nov 2013 18:33:01 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C3@REDROOF2.alohasunset.com> References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C1@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C3@REDROOF2.alohasunset.com> Message-ID: Hi Mark, I have checked it, It is there on my LAN. Both the IP's are on same LAN. -Priya On Tue, Nov 5, 2013 at 6:00 PM, Mark Pizzolato - Info Comm < Mark at infocomm.com> wrote: > You do not need any additional libpcap distro, the make output AND the > simulator ?SHOW ETHERNET? output show that you already have a network > capable simulator. > > > > The SHOW ETHERNET output now shows that you?ve successfully opened the > network device (em1). As long as it is a wired Ethernet connection you > should be good to go. By that, I mean once you?ve got a running operating > system installed with IP network stack, you should be able to talk to OTHER > systems on your LAN, but NOT to the host system. > > > > The attached image you sent earlier in this conversation shows your > simulated system?s IP address as 192.168.1.110, but you were attempting to > PING an address of 192.168.0.37. Given the netmask of the simulator?s > interface, that should be on your LAN, however, does this really describe > your LAN? What is the host Linux system?s IP configuration: > > > > $ ifconfig > > $ route -n > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Tuesday, November 05, 2013 4:12 AM > > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > Hi, > > > > Attached files show the version and ethernet connections. > > > > and will I need libpcap-devel distro package to be installed ? > > > > -Priya > > > > > > > > On Tue, Nov 5, 2013 at 5:03 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > Hi Priya, > > > > Looks good so far. > > > > You should be able to run with the vax binary in BIN/vax and the > configuration file you?ve already got. > > > > I would initially comment out the ?dep bdr 0? and boot manually until you > get things fully working and at the >>> prompt type ?SET BOOT DUA0:? to set > your autoboot device in the NVRAM. > > > > Meanwhile, to verify your network configuration, invoke the simulator and > hit ^E to get to a sim> prompt and enter the following commands: > > > > sim> SHOW ETHERNET > > > > This will list the available network devices which libpcap can connect > to. Not all of them will work with simh, but the one which is your wired > network connection should be fully usable. > > > > If you still have problems send back the output of > > > > ^E > > sim> SHOW VERSION > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Tuesday, November 05, 2013 2:01 AM > > > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > Hi, > > I built the vax as told : > > > > * $ make vax* > > lib paths are: /lib/ /lib/sse2/ /usr/lib/atlas/ /usr/lib/dyninst/ > /usr/lib/llvm/ /usr/lib/mysql/ /usr/lib/tcl8.5/ /usr/lib/tracker-0.14/ > /usr/lib/xulrunner/ > > using libm: /lib//libm.so > > using librt: /lib//librt.so > > using libpthread: /lib//libpthread.so /usr/include/pthread.h > > using libdl: /lib//libdl.so /usr/include/dlfcn.h > > using libpcap: /usr/include/pcap.h > > *** Warning *** > > *** Warning *** vax Simulator are being built with > > *** Warning *** minimal libpcap networking support > > *** Warning *** > > *** Warning *** Simulators on your Linux platform can also be built with > > *** Warning *** extended Ethernet networking support by using VDE Ethernet. > > *** Warning *** > > *** Warning *** To build simulator(s) with extended networking support you > > *** Warning *** should read 0readme_ethernet.txt and follow the > instructions > > *** Warning *** regarding the needed libvdeplug components for your Linux > > *** Warning *** platform > > *** Warning *** > > *** > > *** vax Simulator being built with: > > *** - compiler optimizations and no debugging support. GCC Version: 4.7.2. > > *** - dynamic networking support using Linux provided libpcap components. > > *** > > *** git commit id is 32b8f063620db62213151f18403fcd9c02fae97f. > > *** > > mkdir -p BIN > > gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload > -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations > -fno-strict-overflow -Wno-unused-result > -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f > -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD > -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB sim_BuildROMs.c -o > BIN/BuildROMs > > BIN/BuildROMs > > rm -f BIN/BuildROMs > > mkdir -p BIN > > gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload > -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations > -fno-strict-overflow -Wno-unused-result > -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f > -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD > -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB VAX/vax_cpu.c VAX/vax_cpu1.c > VAX/vax_fpa.c VAX/vax_io.c VAX/vax_cis.c VAX/vax_octa.c VAX/vax_cmode.c > VAX/vax_mmu.c VAX/vax_stddev.c VAX/vax_sysdev.c VAX/vax_sys.c > VAX/vax_syscm.c VAX/vax_syslist.c PDP11/pdp11_rl.c PDP11/pdp11_rq.c > PDP11/pdp11_ts.c PDP11/pdp11_dz.c PDP11/pdp11_lp.c PDP11/pdp11_tq.c > PDP11/pdp11_xq.c PDP11/pdp11_vh.c PDP11/pdp11_cr.c PDP11/pdp11_io_lib.c > scp.c sim_console.c sim_fio.c sim_timer.c sim_sock.c sim_tmxr.c sim_ether.c > sim_tape.c sim_disk.c sim_serial.c sim_video.c -DVM_VAX -DUSE_INT64 > -DUSE_ADDR64 -I VAX -I PDP11 -DUSE_SHARED -I/usr/include/ -DUSE_TAP_NETWORK > -o BIN/microvax3900 -lm -lrt -lpthread -ldl > > > > cp BIN/microvax3900 BIN/vax > > [root at localhost simh-master]# > > > > What should I do after this? Create a vax.ini file ? > > > > - Priya > > > > On Mon, Nov 4, 2013 at 7:13 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > From what you?ve provided, I can?t really tell EXACTLY what simulator you > are running or how it was built or what it thinks is its capabilities are. > The latest source is the most supportable and the build (makefile) tells us > many things. Phillip Wherry wrote the instructions you are followed 9 > years ago. Things have evolved since that time and become much smoother. > > > > You are getting the ?BOOT/R5:0 EXIT? message since you have the system > setup to autoboot (BDR set to 0) but your NVRAM doesn?t yet specify a > default boot device. This is NOT related to the network issues. > > > > Please build the latest source and if what you then need to do isn?t > obvious, then we can explore further. > > > > The total build instructions should be: > > $ wget https://github.com/simh/simh/archive/master.zip > > $ unzip simh-master.zip > > $ cd simh-master > > $ make vax > > > > As I said, if the simulator doesn?t work correctly for you then the output > produced during the above make will be useful. > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Monday, November 04, 2013 5:31 AM > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > I have followed steps from > http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the > simulator, earlier I was having a problem while starting TCP/IP, but I > solved that by attaching the interface type in vax.ini file, > > > > Attach Ethernet to a network interface > > set XQ mac=08-00-2B-AC-AC-B1 > > set XQ type=DELQA > > attach XQ em1 > > > > I don't think I have to build it again unless of course that is the only > solution to make this work. > > > > I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, > > Please check this, > > > > VAX simulator V3.9-0 > > NVR: buffering file in memory > > RQ: unit is read only > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > > > > > KA655-B V5.3, VMB 2.7 > > Performing normal system tests. > > 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. > > 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. > > 08..07..06..05..04..03.. > > Tests completed. > > Loading system software. > > (BOOT/R5:0 EXIT > > > > > > > > 2.. > > ?41 DEVASSIGN, EXIT > > ?06 HLT INST > > PC = 00000C1A > > Failure. > > >>>show version > > KA655-B V5.3, VMB 2.7 > > >>>boot dua0 > > (BOOT/R5:0 DUA0 > > > > > > > > 2.. > > -DUA0 > > 1..0.. > > > > > > %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk > > %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped > > %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk > > %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS > > OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id > = 0 > > %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. > > $! Copyright 2001 Compaq Computer Corporation. > > > > %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 > > %RUN-S-PROC_ID, identification of created process is 00000206 > > %DCL-S-SPAWNED, process SYSTEM_1 spawned > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% > > Operator _FORD$OPA0: has been enabled, username SYSTEM > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% > > Operator status for operator _FORD$OPA0: > > CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, > > LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, > OPER10, > > OPER11, OPER12 > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% > > Logfile has been initialized by operator _FORD$OPA0: > > Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% > > Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 > > CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, > > LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, > OPER10, > > OPER11, OPER12 > > > > %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-SERVERSTARTINGU, security server starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now > starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node > > -LICENSE-F-NOLICENSE, no license is active for this software product > > -LICENSE-I-SYSMGR, please see your system manager > > > > > > %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node > > -LICENSE-F-NOLICENSE, no license is active for this software product > > -LICENSE-I-SYSMGR, please see your system manager > > Startup processing continuing... > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) > > %RMS-E-FNF, file not found > > TP server process waiting > > > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% > > Message from user AUDIT$SERVER on FORD > > Security alarm (SECURITY) and security audit (SECURITY) on FORD, system > id: 1025 > > Auditable event: Audit server starting up > > Event time: 4-NOV-2013 18:45:18.58 > > PID: 00000203 > > Username: SYSTEM > > > > %STARTUP-I-AUDITCONTINUE, audit server initialization complete > > > > The OpenVMS VAX system is now executing the site-specific startup commands. > > > > > > %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 > > %TCPIP-I-NORMAL, timezone information verified > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet Loaded > > > > %RUN-S-PROC_ID, identification of created process is 00000211 > > %TCPIP-I-SETLOCAL, setting domain and/or local host > > %TCPIP-I-STARTCOMM, starting communication > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet Started > > > > %TCPIP-I-SETPROTP, setting protocol parameters > > %TCPIP-I-DEFINTE, defining interfaces > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Created INTERnet interface: QE0 > > > > %TCPIP-I-STARTNAME, starting name service > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% > > Message from user Proxy Server on FORD > > Loading proxy server image TCPIP$PROXY_SERVICES > > > > %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed > > %TCPIP-E-PROXYERROR, error processing proxy request > > -TCPIP-W-NORECORD, information not found > > -RMS-E-RNF, record not found > > %TCPIP-E-PROXYERROR, error processing proxy request > > -TCPIP-W-NORECORD, information not found > > -RMS-E-RNF, record not found > > %TCPIP-I-LOADSERV, loading TCPIP server proxy information > > %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records > > -TCPIP-I-SERVSKIP, skipped 0 communication proxy records > > -TCPIP-I-SERVTOTAL, total of 0 proxy records read > > %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Activate FTP Server > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP NOLISTEN Process creation success: Service - FTP > > > > %TCPIP-S-STARTDONE, TCPIP$FTP startup completed > > %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% > > Message from user PWIPdriver on FORD > > > > PWIPdriver successfully started. > > > > %RUN-S-PROC_ID, identification of created process is 00000213 > > %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Activate TELNET Server > > > > %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed > > %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 > 18:45:50.33 > > > > %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: > > %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: > > %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 > > SYSTEM job terminated at 4-NOV-2013 18:45:53.04 > > > > Accounting information: > > Buffered I/O count: 2340 Peak working set size: > 1821 > > Direct I/O count: 866 Peak page file size: > 8473 > > Page faults: 12611 Mounted volumes: > 2 > > Charged CPU time: 0 00:00:49.40 Elapsed time: 0 > 00:01:01.11 > > > > Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 > > > > After I login > > > > > > On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > Hi Priya, > > > > I was looking for the output of ?SHOW VERSION? from the ?sim> ? prompt. > The ?SHOW VERSION? output from the ?>>> ? prompt is the version of the VAX > console ROM. The ?sim>? Version information describes the simulator?s > capabilities. > > > > From the simulator startup message I can see you?re running simh V3.9. > > > > Please download and build the source from > https://github.com/simh/simh/archive/master.zip > > > > You should just be able to unzip the file and build the vax simulator with > ?make vax?. > > > > The ?messages you get when you run the simulator? include an error > message. It would be useful to see what command caused that error. To do > so you can invoke the simulator with the ?-v? command switch. > > > > If this doesn?t help, then the output produced when you invoked the ?make > vax? command to build the simulator will be useful. > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Monday, November 04, 2013 4:50 AM > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > I'm using fedora 18 as the host. > > *This is the message i get when i run the simulator :* > > > > VAX simulator V3.9-0 > > NVR: buffering file in memory > > RQ: unit is read only > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > > > > > KA655-B V5.3, VMB 2.7 > > Performing normal system tests. > > 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. > > 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. > > 08..07..06..05..04..03.. > > Tests completed. > > Loading system software. > > (BOOT/R5:0 EXIT > > > > > > > > 2.. > > ?41 DEVASSIGN, EXIT > > ?06 HLT INST > > PC = 00000C1A > > Failure. > > >>>show version > > KA655-B V5.3, VMB 2.7 > > > > *This is the vax.ini file :* > > > > ; > > ; Load CPU microcode > > load -r /usr/local/vax/data/ka655x.bin > > ; > > ; Attach non-volatile RAM to a file > > attach nvr /usr/local/vax/data/nvram.bin > > ; > > ; This virtual machine has 64M memory > > set cpu 64m > > ; > > ; Define disk drive types. RA92 is largest-supported VAX drive. > > set rq0 ra92 > > set rq1 ra92 > > set rq2 ra92 > > set rq3 cdrom > > ; > > ; Attach defined drives to local files > > attach rq0 /usr/local/vax/data/d0.dsk > > attach rq1 /usr/local/vax/data/d1.dsk > > attach rq2 /usr/local/vax/data/d2.dsk > > ; > > ; Attach the CD-ROM to its file (read-only) > > attach -r rq3 /usr/local/vax/data/cd.iso > > ; > > ; Disable unused devices. It's also possible to disable individual devices, > > ; using a construction like "set rq2 disable" if desired. > > ; > > set rl disable > > set ts disable > > ; > > ; Attach Ethernet to a network interface > > set XQ mac=08-00-2B-AC-AC-B1 > > set XQ type=DELQA > > attach XQ em1 > > ; > > ;Uncomment the line below to enable auto-boot > > dep bdr 0 > > ; > > ;Choose one of the following lines.SET CPU CONHALT returns control to the > > ; VAX console monitor on a halt event (where behavior will be further > > ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will > > ; cause the simulator to get control instead. > > set cpu conhalt > > ;set cpu simhalt > > ; > > ;Now start the emulator > > boot cpu > > ; > > ; Exit the simulator > > exit > > > > Regards, > > Priya > > > > On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > > The output you sent seems to indicate that your problem isn't with > telnet, > > but with the guest not having networking at all (configuring the network > > inside simh alone doesn't do much). > > > > What host OS are you doing this on? > > What does your host networking stack look like? > > Can you show your simh configuration file? > > Also include the output of SHOW VERSION from within the simulator you are > using... > > > > Regards, > > > > > > Lennert > > > > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > > Hi, > > > I'm new to openvms and simh. I installed open vms 7.3 and have > > configured > > > tcpip too. > > > I want to connect to other hosts to test my tcpip. > > > $ telnet 192.168.0.37 > > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > $ ucx > > > TCPIP> ping 192.168.0.37 > > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > > ----192.168.0.37 PING Statistics---- > > > 4 packets transmitted, 0 packets received, 100% packet loss > > > %SYSTEM-F-TIMEOUT, device timeout > > > I'm not able to understand where I went wrong. > > > Thanks, > > > Priya > > > > > _______________________________________________ > > > Simh mailing list > > > Simh at trailing-edge.com > > > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Tue Nov 5 08:23:54 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Tue, 5 Nov 2013 05:23:54 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C1@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C3@REDROOF2.alohasunset.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C6@REDROOF2.alohasunset.com> It looks like we're not making a lot of progress yet. Please supply: 1) The output of "ifconfig" 2) The output of "route -n" 3) The details describing which Linux distro and architecture (x86 or x64) you are running and where I can download it. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Tuesday, November 05, 2013 5:03 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hi Mark, I have checked it, It is there on my LAN. Both the IP's are on same LAN. -Priya On Tue, Nov 5, 2013 at 6:00 PM, Mark Pizzolato - Info Comm > wrote: You do not need any additional libpcap distro, the make output AND the simulator "SHOW ETHERNET" output show that you already have a network capable simulator. The SHOW ETHERNET output now shows that you've successfully opened the network device (em1). As long as it is a wired Ethernet connection you should be good to go. By that, I mean once you've got a running operating system installed with IP network stack, you should be able to talk to OTHER systems on your LAN, but NOT to the host system. The attached image you sent earlier in this conversation shows your simulated system's IP address as 192.168.1.110, but you were attempting to PING an address of 192.168.0.37. Given the netmask of the simulator's interface, that should be on your LAN, however, does this really describe your LAN? What is the host Linux system's IP configuration: $ ifconfig $ route -n - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Tuesday, November 05, 2013 4:12 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hi, Attached files show the version and ethernet connections. and will I need libpcap-devel distro package to be installed ? -Priya On Tue, Nov 5, 2013 at 5:03 PM, Mark Pizzolato - Info Comm > wrote: Hi Priya, Looks good so far. You should be able to run with the vax binary in BIN/vax and the configuration file you've already got. I would initially comment out the "dep bdr 0" and boot manually until you get things fully working and at the >>> prompt type "SET BOOT DUA0:" to set your autoboot device in the NVRAM. Meanwhile, to verify your network configuration, invoke the simulator and hit ^E to get to a sim> prompt and enter the following commands: sim> SHOW ETHERNET This will list the available network devices which libpcap can connect to. Not all of them will work with simh, but the one which is your wired network connection should be fully usable. If you still have problems send back the output of ^E sim> SHOW VERSION - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Tuesday, November 05, 2013 2:01 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hi, I built the vax as told : $ make vax lib paths are: /lib/ /lib/sse2/ /usr/lib/atlas/ /usr/lib/dyninst/ /usr/lib/llvm/ /usr/lib/mysql/ /usr/lib/tcl8.5/ /usr/lib/tracker-0.14/ /usr/lib/xulrunner/ using libm: /lib//libm.so using librt: /lib//librt.so using libpthread: /lib//libpthread.so /usr/include/pthread.h using libdl: /lib//libdl.so /usr/include/dlfcn.h using libpcap: /usr/include/pcap.h *** Warning *** *** Warning *** vax Simulator are being built with *** Warning *** minimal libpcap networking support *** Warning *** *** Warning *** Simulators on your Linux platform can also be built with *** Warning *** extended Ethernet networking support by using VDE Ethernet. *** Warning *** *** Warning *** To build simulator(s) with extended networking support you *** Warning *** should read 0readme_ethernet.txt and follow the instructions *** Warning *** regarding the needed libvdeplug components for your Linux *** Warning *** platform *** Warning *** *** *** vax Simulator being built with: *** - compiler optimizations and no debugging support. GCC Version: 4.7.2. *** - dynamic networking support using Linux provided libpcap components. *** *** git commit id is 32b8f063620db62213151f18403fcd9c02fae97f. *** mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB sim_BuildROMs.c -o BIN/BuildROMs BIN/BuildROMs rm -f BIN/BuildROMs mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB VAX/vax_cpu.c VAX/vax_cpu1.c VAX/vax_fpa.c VAX/vax_io.c VAX/vax_cis.c VAX/vax_octa.c VAX/vax_cmode.c VAX/vax_mmu.c VAX/vax_stddev.c VAX/vax_sysdev.c VAX/vax_sys.c VAX/vax_syscm.c VAX/vax_syslist.c PDP11/pdp11_rl.c PDP11/pdp11_rq.c PDP11/pdp11_ts.c PDP11/pdp11_dz.c PDP11/pdp11_lp.c PDP11/pdp11_tq.c PDP11/pdp11_xq.c PDP11/pdp11_vh.c PDP11/pdp11_cr.c PDP11/pdp11_io_lib.c scp.c sim_console.c sim_fio.c sim_timer.c sim_sock.c sim_tmxr.c sim_ether.c sim_tape.c sim_disk.c sim_serial.c sim_video.c -DVM_VAX -DUSE_INT64 -DUSE_ADDR64 -I VAX -I PDP11 -DUSE_SHARED -I/usr/include/ -DUSE_TAP_NETWORK -o BIN/microvax3900 -lm -lrt -lpthread -ldl cp BIN/microvax3900 BIN/vax [root at localhost simh-master]# What should I do after this? Create a vax.ini file ? - Priya On Mon, Nov 4, 2013 at 7:13 PM, Mark Pizzolato - Info Comm > wrote: >From what you've provided, I can't really tell EXACTLY what simulator you are running or how it was built or what it thinks is its capabilities are. The latest source is the most supportable and the build (makefile) tells us many things. Phillip Wherry wrote the instructions you are followed 9 years ago. Things have evolved since that time and become much smoother. You are getting the "BOOT/R5:0 EXIT" message since you have the system setup to autoboot (BDR set to 0) but your NVRAM doesn't yet specify a default boot device. This is NOT related to the network issues. Please build the latest source and if what you then need to do isn't obvious, then we can explore further. The total build instructions should be: $ wget https://github.com/simh/simh/archive/master.zip $ unzip simh-master.zip $ cd simh-master $ make vax As I said, if the simulator doesn't work correctly for you then the output produced during the above make will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 5:31 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I have followed steps from http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the simulator, earlier I was having a problem while starting TCP/IP, but I solved that by attaching the interface type in vax.ini file, Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 I don't think I have to build it again unless of course that is the only solution to make this work. I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, Please check this, VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 >>>boot dua0 (BOOT/R5:0 DUA0 2.. -DUA0 1..0.. %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id = 0 %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. $! Copyright 2001 Compaq Computer Corporation. %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 %RUN-S-PROC_ID, identification of created process is 00000206 %DCL-S-SPAWNED, process SYSTEM_1 spawned %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% Operator _FORD$OPA0: has been enabled, username SYSTEM %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% Operator status for operator _FORD$OPA0: CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% Logfile has been initialized by operator _FORD$OPA0: Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-SERVERSTARTINGU, security server starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% Message from user SYSTEM on FORD %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager Startup processing continuing... %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% Message from user SYSTEM on FORD Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) %RMS-E-FNF, file not found TP server process waiting %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% Message from user AUDIT$SERVER on FORD Security alarm (SECURITY) and security audit (SECURITY) on FORD, system id: 1025 Auditable event: Audit server starting up Event time: 4-NOV-2013 18:45:18.58 PID: 00000203 Username: SYSTEM %STARTUP-I-AUDITCONTINUE, audit server initialization complete The OpenVMS VAX system is now executing the site-specific startup commands. %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 %TCPIP-I-NORMAL, timezone information verified %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Loaded %RUN-S-PROC_ID, identification of created process is 00000211 %TCPIP-I-SETLOCAL, setting domain and/or local host %TCPIP-I-STARTCOMM, starting communication %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Started %TCPIP-I-SETPROTP, setting protocol parameters %TCPIP-I-DEFINTE, defining interfaces %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Created INTERnet interface: QE0 %TCPIP-I-STARTNAME, starting name service %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% Message from user Proxy Server on FORD Loading proxy server image TCPIP$PROXY_SERVICES %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-I-LOADSERV, loading TCPIP server proxy information %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records -TCPIP-I-SERVSKIP, skipped 0 communication proxy records -TCPIP-I-SERVTOTAL, total of 0 proxy records read %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate FTP Server %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP NOLISTEN Process creation success: Service - FTP %TCPIP-S-STARTDONE, TCPIP$FTP startup completed %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% Message from user PWIPdriver on FORD PWIPdriver successfully started. %RUN-S-PROC_ID, identification of created process is 00000213 %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate TELNET Server %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 18:45:50.33 %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 SYSTEM job terminated at 4-NOV-2013 18:45:53.04 Accounting information: Buffered I/O count: 2340 Peak working set size: 1821 Direct I/O count: 866 Peak page file size: 8473 Page faults: 12611 Mounted volumes: 2 Charged CPU time: 0 00:00:49.40 Elapsed time: 0 00:01:01.11 Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 After I login On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm > wrote: Hi Priya, I was looking for the output of "SHOW VERSION" from the "sim> " prompt. The "SHOW VERSION" output from the ">>> " prompt is the version of the VAX console ROM. The "sim>" Version information describes the simulator's capabilities. >From the simulator startup message I can see you're running simh V3.9. Please download and build the source from https://github.com/simh/simh/archive/master.zip You should just be able to unzip the file and build the vax simulator with "make vax". The "messages you get when you run the simulator" include an error message. It would be useful to see what command caused that error. To do so you can invoke the simulator with the "-v" command switch. If this doesn't help, then the output produced when you invoked the "make vax" command to build the simulator will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 4:50 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I'm using fedora 18 as the host. This is the message i get when i run the simulator : VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 This is the vax.ini file : ; ; Load CPU microcode load -r /usr/local/vax/data/ka655x.bin ; ; Attach non-volatile RAM to a file attach nvr /usr/local/vax/data/nvram.bin ; ; This virtual machine has 64M memory set cpu 64m ; ; Define disk drive types. RA92 is largest-supported VAX drive. set rq0 ra92 set rq1 ra92 set rq2 ra92 set rq3 cdrom ; ; Attach defined drives to local files attach rq0 /usr/local/vax/data/d0.dsk attach rq1 /usr/local/vax/data/d1.dsk attach rq2 /usr/local/vax/data/d2.dsk ; ; Attach the CD-ROM to its file (read-only) attach -r rq3 /usr/local/vax/data/cd.iso ; ; Disable unused devices. It's also possible to disable individual devices, ; using a construction like "set rq2 disable" if desired. ; set rl disable set ts disable ; ; Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 ; ;Uncomment the line below to enable auto-boot dep bdr 0 ; ;Choose one of the following lines.SET CPU CONHALT returns control to the ; VAX console monitor on a halt event (where behavior will be further ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will ; cause the simulator to get control instead. set cpu conhalt ;set cpu simhalt ; ;Now start the emulator boot cpu ; ; Exit the simulator exit Regards, Priya On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm > wrote: On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > The output you sent seems to indicate that your problem isn't with telnet, > but with the guest not having networking at all (configuring the network > inside simh alone doesn't do much). > > What host OS are you doing this on? > What does your host networking stack look like? > Can you show your simh configuration file? Also include the output of SHOW VERSION from within the simulator you are using... > Regards, > > > Lennert > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > Hi, > > I'm new to openvms and simh. I installed open vms 7.3 and have > configured > > tcpip too. > > I want to connect to other hosts to test my tcpip. > > $ telnet 192.168.0.37 > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > $ ucx > > TCPIP> ping 192.168.0.37 > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > ----192.168.0.37 PING Statistics---- > > 4 packets transmitted, 0 packets received, 100% packet loss > > %SYSTEM-F-TIMEOUT, device timeout > > I'm not able to understand where I went wrong. > > Thanks, > > Priya > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh -------------- next part -------------- An HTML attachment was scrubbed... URL: From sander.reiche at gmail.com Tue Nov 5 10:13:59 2013 From: sander.reiche at gmail.com (Sander Reiche) Date: Tue, 5 Nov 2013 16:13:59 +0100 Subject: [Simh] RT-11 bootable tape Message-ID: Hi all, Trying to get an actual scsi tape running on a CQD220A on real iron(tm), but I'm still trying to figure things out. I was originally using Ersatz-11, but I though I'd give it a go on SimH. When booted from a bootable simulated TK50(tk50.tap), it consistently halts on trying to run MDUP.Mx to further the "installation" of RT-11 from said tape. Following a transcript: PDP-11 simulator V3.9-0 sim> att rl0 rtv5rl.06 sim> att tq0 tk50.tap TQ: creating new file sim> b rl RT-11FB V05.06 .TYPE V5USER.TXT RT-11 V5.6 Installation of RT-11 Version 5.6 is complete and you are now running RT-11 from your system volume. .R MSCPCK ?MSCPCK-I-MU0-TK50 FW Rev Level is 005/HW Rev Level is 001 ?MSCPCK-W-TQK50 controller below FW Rev 4/HW Rev 6 .ass mu0 kit .ass dl0 bin .$@mub .$Load Bin,Kit .$Ini/Que/Vol/File:Bin:MBOOT.BOT Kit: MU0:/Initialize; Are you sure? Y Volume ID? HU21J Owner? MU 1/1 .$Cop Bin:MSBOOT.BOT Kit:/Pos:-1 Files copied: BIN:MSBOOT.BOT to KIT:MSBOOT.BOT .$Cop Bin:MDUP.AI Kit:/Pos:-1 Files copied: BIN:MDUP.AI to KIT:MDUP.AI .$Cop Bin:MDUP.MM Kit:/Pos:-1 Files copied: BIN:MDUP.MM to KIT:MDUP.MM .$Cop Bin:MDUP.MS Kit:/Pos:-1 Files copied: BIN:MDUP.MS to KIT:MDUP.MS .$Cop Bin:MDUP.MT Kit:/Pos:-1 Files copied: BIN:MDUP.MT to KIT:MDUP.MT .$Cop Bin:MDUP.MU Kit:/Pos:-1 Files copied: BIN:MDUP.MU to KIT:MDUP.MU .................................. .$Cop Bin:INDEX.IDX Kit:/Pos:-1 Files copied: BIN:INDEX.IDX to KIT:INDEX.IDX .$Unload Bin,Kit sim> sh tq TQ, TK50 (94MB), address=17774500-17774503, no vector, 4 units TQ0, attached to tk50.tap, write enabled, SIMH format, capacity=98MB TQ1, not attached, write enabled, SIMH format, capacity=98MB TQ2, not attached, write enabled, SIMH format, capacity=98MB TQ3, not attached, write enabled, SIMH format, capacity=98MB sim> b tq .MSBOOT V05.07 *MDUP.MU Trap stack push abort, PC: 062462 (ADD (R1)+,52040(R2)) sim> Am I doing something wrong? regards, Sander Reiche -------------- next part -------------- An HTML attachment was scrubbed... URL: From thisisentchris87 at gmail.com Tue Nov 5 10:54:37 2013 From: thisisentchris87 at gmail.com (Christopher Myers) Date: Tue, 5 Nov 2013 10:54:37 -0500 Subject: [Simh] Unable to telnet to other hosts Message-ID: Hey, I think you're attaching the wrong Ethernet interface. You've got it set to 'em1' when http://www.wherry.com/gadgets/retrocomputing/vax-simh.html has it set to 'eth0.' Not sure if this is what the problem is, just something I noticed. Also, just a heads up. I've had a somewhat similar problem on VAXStation 3100 running OpenVMS 7.3. I couldn't TELNET to hosts, but could ping them and the error I would get is the same. -TCPIP-E-NO_RECOVERY, unexpected name server failure When I was trying to figure this out, I discovered that OpenVMS apparently wants a name attached to that host. So you need to give 192.168.0.37 a text name like "MYHOST" and then you'll be able to telnet with that name and (oddly) the IP address. What you need to do is go into the tcpip configuration program. $ TCPIP TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37 TCPIP> SHOW HOST This is how I fixed my little problem on real equipment. I had a working ping to a host, but no ability to TELNET. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Tue Nov 5 11:50:36 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Tue, 5 Nov 2013 08:50:36 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1CC@REDROOF2.alohasunset.com> Hi Chris, On Priya's system either eth0 or em1 would produce the same results. The simh Ethernet generic naming paradigm makes this true. Priya's first problem is that he can't ping. I'll step back once packets are moving on the wire. Once he can ping, your ideas may be relevant. - Mark From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] On Behalf Of Christopher Myers Sent: Tuesday, November 05, 2013 7:55 AM To: priya chincholikar Cc: simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hey, I think you're attaching the wrong Ethernet interface. You've got it set to 'em1' when http://www.wherry.com/gadgets/retrocomputing/vax-simh.html has it set to 'eth0.' Not sure if this is what the problem is, just something I noticed. Also, just a heads up. I've had a somewhat similar problem on VAXStation 3100 running OpenVMS 7.3. I couldn't TELNET to hosts, but could ping them and the error I would get is the same. -TCPIP-E-NO_RECOVERY, unexpected name server failure When I was trying to figure this out, I discovered that OpenVMS apparently wants a name attached to that host. So you need to give 192.168.0.37 a text name like "MYHOST" and then you'll be able to telnet with that name and (oddly) the IP address. What you need to do is go into the tcpip configuration program. $ TCPIP TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37 TCPIP> SHOW HOST This is how I fixed my little problem on real equipment. I had a working ping to a host, but no ability to TELNET. -------------- next part -------------- An HTML attachment was scrubbed... URL: From wtn90125 at yahoo.com Tue Nov 5 12:53:05 2013 From: wtn90125 at yahoo.com (Terry Newton) Date: Tue, 5 Nov 2013 09:53:05 -0800 (PST) Subject: [Simh] Beta 4 script feature/bug with set throttle n% Message-ID: <1383673985.39436.YahooMailBasic@web141105.mail.bf1.yahoo.com> Hello, The new simh supports substitution using %, a nice feature however it breaks scripts that use: set throttle [some number]% A workaround is to use \% as in: set throttle 50\% But would be better to ignore % unless a parameter is actually supplied, then existing startup scripts (almost all of mine) don't have to be modified. So, in scp.c I changed... if (*ip == '%') { /* sub? */ ...to... if ((*ip == '%') && (ip[1] != ' ') && (ip[1] != '\0')) { /* sub? */ ...and set throttle 50% works correctly now, also fixes display commands like 'echo Throttle is set to 50% now'. At least provided there's not a non-space character after the %, otherwise substitution is triggered. Terry Newton From Mark at infocomm.com Tue Nov 5 13:36:03 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Tue, 5 Nov 2013 10:36:03 -0800 Subject: [Simh] Beta 4 script feature/bug with set throttle n% In-Reply-To: <1383673985.39436.YahooMailBasic@web141105.mail.bf1.yahoo.com> References: <1383673985.39436.YahooMailBasic@web141105.mail.bf1.yahoo.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1DB@REDROOF2.alohasunset.com> On Tuesday, November 05, 2013 at 9:53 AM, Terry Newton wrote: > Hello, > > The new simh supports substitution using %, a nice feature however it > breaks scripts that use: set throttle [some number]% A workaround is to use > \% as in: set throttle 50\% But would be better to ignore % unless a > parameter is actually supplied, then existing startup scripts (almost all of > mine) don't have to be modified. > > So, in scp.c I changed... > > if (*ip == '%') { /* sub? */ > > ...to... > > if ((*ip == '%') && (ip[1] != ' ') && (ip[1] != '\0')) { /* sub? */ > > ...and set throttle 50% works correctly now, also fixes display commands like > 'echo Throttle is set to 50% now'. At least provided there's not a non-space > character after the %, otherwise substitution is triggered. This is a good idea. I've generalized it a little. Only %'s followed by digits, alpha or * characters cause substitution, others are left as is. Thanks. - Mark From tshoppa at wmata.com Tue Nov 5 16:56:08 2013 From: tshoppa at wmata.com (Shoppa, Tim) Date: Tue, 5 Nov 2013 21:56:08 +0000 Subject: [Simh] RT-11 bootable tape In-Reply-To: References: Message-ID: <303A17BD5F8FA34DA45EEC245271AC0B949AB4F4@JGEX2K10MBX2.wmata.local> It has been many years but I think there was a problem with the tape boot blocks in 5.6 that was fixed in 5.7. Tim. From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] On Behalf Of Sander Reiche Sent: Tuesday, November 05, 2013 10:14 AM To: simh at trailing-edge.com Subject: [Simh] RT-11 bootable tape Hi all, Trying to get an actual scsi tape running on a CQD220A on real iron(tm), but I'm still trying to figure things out. I was originally using Ersatz-11, but I though I'd give it a go on SimH. When booted from a bootable simulated TK50(tk50.tap), it consistently halts on trying to run MDUP.Mx to further the "installation" of RT-11 from said tape. Following a transcript: PDP-11 simulator V3.9-0 sim> att rl0 rtv5rl.06 sim> att tq0 tk50.tap TQ: creating new file sim> b rl RT-11FB V05.06 .TYPE V5USER.TXT RT-11 V5.6 Installation of RT-11 Version 5.6 is complete and you are now running RT-11 from your system volume. .R MSCPCK ?MSCPCK-I-MU0-TK50 FW Rev Level is 005/HW Rev Level is 001 ?MSCPCK-W-TQK50 controller below FW Rev 4/HW Rev 6 .ass mu0 kit .ass dl0 bin .$@mub .$Load Bin,Kit .$Ini/Que/Vol/File:Bin:MBOOT.BOT Kit: MU0:/Initialize; Are you sure? Y Volume ID? HU21J Owner? MU 1/1 .$Cop Bin:MSBOOT.BOT Kit:/Pos:-1 Files copied: BIN:MSBOOT.BOT to KIT:MSBOOT.BOT .$Cop Bin:MDUP.AI Kit:/Pos:-1 Files copied: BIN:MDUP.AI to KIT:MDUP.AI .$Cop Bin:MDUP.MM Kit:/Pos:-1 Files copied: BIN:MDUP.MM to KIT:MDUP.MM .$Cop Bin:MDUP.MS Kit:/Pos:-1 Files copied: BIN:MDUP.MS to KIT:MDUP.MS .$Cop Bin:MDUP.MT Kit:/Pos:-1 Files copied: BIN:MDUP.MT to KIT:MDUP.MT .$Cop Bin:MDUP.MU Kit:/Pos:-1 Files copied: BIN:MDUP.MU to KIT:MDUP.MU .................................. .$Cop Bin:INDEX.IDX Kit:/Pos:-1 Files copied: BIN:INDEX.IDX to KIT:INDEX.IDX .$Unload Bin,Kit sim> sh tq TQ, TK50 (94MB), address=17774500-17774503, no vector, 4 units TQ0, attached to tk50.tap, write enabled, SIMH format, capacity=98MB TQ1, not attached, write enabled, SIMH format, capacity=98MB TQ2, not attached, write enabled, SIMH format, capacity=98MB TQ3, not attached, write enabled, SIMH format, capacity=98MB sim> b tq .MSBOOT V05.07 *MDUP.MU Trap stack push abort, PC: 062462 (ADD (R1)+,52040(R2)) sim> Am I doing something wrong? regards, Sander Reiche -------------- next part -------------- An HTML attachment was scrubbed... URL: From sander.reiche at gmail.com Tue Nov 5 18:06:18 2013 From: sander.reiche at gmail.com (Sander Reiche) Date: Wed, 6 Nov 2013 00:06:18 +0100 Subject: [Simh] RT-11 bootable tape In-Reply-To: <303A17BD5F8FA34DA45EEC245271AC0B949AB4F4@JGEX2K10MBX2.wmata.local> References: <303A17BD5F8FA34DA45EEC245271AC0B949AB4F4@JGEX2K10MBX2.wmata.local> Message-ID: But it does seems to work in e11. Could be a hack, but I'll try V05.07 tomorrow. re, Sander On Nov 5, 2013 10:56 PM, "Shoppa, Tim" wrote: > It has been many years but I think there was a problem with the tape > boot blocks in 5.6 that was fixed in 5.7. > > > > Tim. > > > > *From:* simh-bounces at trailing-edge.com [mailto: > simh-bounces at trailing-edge.com] *On Behalf Of *Sander Reiche > *Sent:* Tuesday, November 05, 2013 10:14 AM > *To:* simh at trailing-edge.com > *Subject:* [Simh] RT-11 bootable tape > > > > Hi all, > > > > Trying to get an actual scsi tape running on a CQD220A on real iron(tm), > but I'm still trying to figure things out. I was originally using > Ersatz-11, but I though I'd give it a go on SimH. > > > > When booted from a bootable simulated TK50(tk50.tap), it consistently > halts on trying to run MDUP.Mx to further the "installation" of RT-11 from > said tape. > > > > Following a transcript: > > > > PDP-11 simulator V3.9-0 > > sim> att rl0 rtv5rl.06 > > sim> att tq0 tk50.tap > > TQ: creating new file > > sim> b rl > > > > RT-11FB V05.06 > > > > .TYPE V5USER.TXT > > > > RT-11 V5.6 > > > > Installation of RT-11 Version 5.6 is complete and you are now > running > > RT-11 from your system volume. > > > > .R MSCPCK > > ?MSCPCK-I-MU0-TK50 FW Rev Level is 005/HW Rev Level is 001 > > ?MSCPCK-W-TQK50 controller below FW Rev 4/HW Rev 6 > > > > .ass mu0 kit > > > > .ass dl0 bin > > > > .$@mub > > > > .$Load Bin,Kit > > > > .$Ini/Que/Vol/File:Bin:MBOOT.BOT Kit: > > MU0:/Initialize; Are you sure? Y > > Volume ID? HU21J > > Owner? MU 1/1 > > > > .$Cop Bin:MSBOOT.BOT Kit:/Pos:-1 > > Files copied: > > BIN:MSBOOT.BOT to KIT:MSBOOT.BOT > > > > .$Cop Bin:MDUP.AI Kit:/Pos:-1 > > Files copied: > > BIN:MDUP.AI to KIT:MDUP.AI > > > > .$Cop Bin:MDUP.MM Kit:/Pos:-1 > > Files copied: > > BIN:MDUP.MM to KIT:MDUP.MM > > > > .$Cop Bin:MDUP.MS Kit:/Pos:-1 > > Files copied: > > BIN:MDUP.MS to KIT:MDUP.MS > > > > .$Cop Bin:MDUP.MT Kit:/Pos:-1 > > Files copied: > > BIN:MDUP.MT to KIT:MDUP.MT > > > > .$Cop Bin:MDUP.MU Kit:/Pos:-1 > > Files copied: > > BIN:MDUP.MU to KIT:MDUP.MU > > > > .................................. > > > > .$Cop Bin:INDEX.IDX Kit:/Pos:-1 > > Files copied: > > BIN:INDEX.IDX to KIT:INDEX.IDX > > > > .$Unload Bin,Kit > > > > sim> sh tq > > TQ, TK50 (94MB), address=17774500-17774503, no vector, 4 units > > TQ0, attached to tk50.tap, write enabled, SIMH format, capacity=98MB > > TQ1, not attached, write enabled, SIMH format, capacity=98MB > > TQ2, not attached, write enabled, SIMH format, capacity=98MB > > TQ3, not attached, write enabled, SIMH format, capacity=98MB > > sim> b tq > > > > .MSBOOT V05.07 > > *MDUP.MU > > > > Trap stack push abort, PC: 062462 (ADD (R1)+,52040(R2)) > > sim> > > > > Am I doing something wrong? > > > > regards, > > > > Sander Reiche > -------------- next part -------------- An HTML attachment was scrubbed... URL: From gerard.calliet at pia-sofer.fr Wed Nov 6 03:48:35 2013 From: gerard.calliet at pia-sofer.fr (=?UTF-8?B?R8OpcmFyZCBDYWxsaWV0?=) Date: Wed, 06 Nov 2013 09:48:35 +0100 Subject: [Simh] how to get eth connexion In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C5@REDROOF2.alohasunset.com> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> <5277773D.5050504@yahoo.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C5@REDROOF2.alohasunset.com> Message-ID: <527A0263.4000400@pia-sofer.fr> Le 05/11/2013 13:55, Mark Pizzolato - Info Comm a ?crit : >> 2) I saw we need at least one ip host connexion alive to have a connexion for >> >simh - I am on Windows with wincap -. Again, why ? > I'm not sure exactly what you mean by 'need at least one ip host connexion alive'. Are you saying that you need to be connected to a network? Thanks to your help, I was able to communicate using a classic wire connexion. It works also with the only wire interface, used by Windows for ip traffic, and by simh for its (ip also) traffic. If I disable the ip protocol for the interface, simh also cannot work. My question is theoretical : why do we need an ip host protocol on the host interface for simh being able of work with this interface ? It's perhaps a window / wincap issue. Don't worry about it : it is only to increese my knowledge. I do go on with wired and ip-ed solutions. G?rard Calliet From gerard.calliet at pia-sofer.fr Wed Nov 6 03:58:11 2013 From: gerard.calliet at pia-sofer.fr (=?ISO-8859-1?Q?G=E9rard_Calliet?=) Date: Wed, 06 Nov 2013 09:58:11 +0100 Subject: [Simh] Beta 4 bug ? In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1DB@REDROOF2.alohasunset.com> References: <1383673985.39436.YahooMailBasic@web141105.mail.bf1.yahoo.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1DB@REDROOF2.alohasunset.com> Message-ID: <527A04A3.3060407@pia-sofer.fr> Hello, I tried yesterday beta 4, Vax / Vms 7.3, and I had some bug-checks, some of them had polluted the system disk. I did the same operations with simh 3.9, and VMS said "device full", and did not crash. I think some bad things occur with simh beta 4 around error handling for emulated disks. I was in a hurry and working at a customer site, and today I am also in a hurry. But I you think worthwhile it, I could re-do the crash and send you some informations. G?rard Calliet From sander.reiche at gmail.com Wed Nov 6 05:19:44 2013 From: sander.reiche at gmail.com (Sander Reiche) Date: Wed, 6 Nov 2013 11:19:44 +0100 Subject: [Simh] RT-11 bootable tape In-Reply-To: References: <303A17BD5F8FA34DA45EEC245271AC0B949AB4F4@JGEX2K10MBX2.wmata.local> Message-ID: Indeed the tape booting works flawlessly with RT-11 V5.7 under SimH. Interesting! Thanks Tim! regards, Sander On Wed, Nov 6, 2013 at 12:06 AM, Sander Reiche wrote: > But it does seems to work in e11. Could be a hack, but I'll try V05.07 > tomorrow. > > re, > > Sander > On Nov 5, 2013 10:56 PM, "Shoppa, Tim" wrote: > >> It has been many years but I think there was a problem with the tape >> boot blocks in 5.6 that was fixed in 5.7. >> >> >> >> Tim. >> >> >> >> *From:* simh-bounces at trailing-edge.com [mailto: >> simh-bounces at trailing-edge.com] *On Behalf Of *Sander Reiche >> *Sent:* Tuesday, November 05, 2013 10:14 AM >> *To:* simh at trailing-edge.com >> *Subject:* [Simh] RT-11 bootable tape >> >> >> >> Hi all, >> >> >> >> Trying to get an actual scsi tape running on a CQD220A on real iron(tm), >> but I'm still trying to figure things out. I was originally using >> Ersatz-11, but I though I'd give it a go on SimH. >> >> >> >> When booted from a bootable simulated TK50(tk50.tap), it consistently >> halts on trying to run MDUP.Mx to further the "installation" of RT-11 from >> said tape. >> >> >> >> Following a transcript: >> >> >> >> PDP-11 simulator V3.9-0 >> >> sim> att rl0 rtv5rl.06 >> >> sim> att tq0 tk50.tap >> >> TQ: creating new file >> >> sim> b rl >> >> >> >> RT-11FB V05.06 >> >> >> >> .TYPE V5USER.TXT >> >> >> >> RT-11 V5.6 >> >> >> >> Installation of RT-11 Version 5.6 is complete and you are now >> running >> >> RT-11 from your system volume. >> >> >> >> .R MSCPCK >> >> ?MSCPCK-I-MU0-TK50 FW Rev Level is 005/HW Rev Level is 001 >> >> ?MSCPCK-W-TQK50 controller below FW Rev 4/HW Rev 6 >> >> >> >> .ass mu0 kit >> >> >> >> .ass dl0 bin >> >> >> >> .$@mub >> >> >> >> .$Load Bin,Kit >> >> >> >> .$Ini/Que/Vol/File:Bin:MBOOT.BOT Kit: >> >> MU0:/Initialize; Are you sure? Y >> >> Volume ID? HU21J >> >> Owner? MU 1/1 >> >> >> >> .$Cop Bin:MSBOOT.BOT Kit:/Pos:-1 >> >> Files copied: >> >> BIN:MSBOOT.BOT to KIT:MSBOOT.BOT >> >> >> >> .$Cop Bin:MDUP.AI Kit:/Pos:-1 >> >> Files copied: >> >> BIN:MDUP.AI to KIT:MDUP.AI >> >> >> >> .$Cop Bin:MDUP.MM Kit:/Pos:-1 >> >> Files copied: >> >> BIN:MDUP.MM to KIT:MDUP.MM >> >> >> >> .$Cop Bin:MDUP.MS Kit:/Pos:-1 >> >> Files copied: >> >> BIN:MDUP.MS to KIT:MDUP.MS >> >> >> >> .$Cop Bin:MDUP.MT Kit:/Pos:-1 >> >> Files copied: >> >> BIN:MDUP.MT to KIT:MDUP.MT >> >> >> >> .$Cop Bin:MDUP.MU Kit:/Pos:-1 >> >> Files copied: >> >> BIN:MDUP.MU to KIT:MDUP.MU >> >> >> >> .................................. >> >> >> >> .$Cop Bin:INDEX.IDX Kit:/Pos:-1 >> >> Files copied: >> >> BIN:INDEX.IDX to KIT:INDEX.IDX >> >> >> >> .$Unload Bin,Kit >> >> >> >> sim> sh tq >> >> TQ, TK50 (94MB), address=17774500-17774503, no vector, 4 units >> >> TQ0, attached to tk50.tap, write enabled, SIMH format, capacity=98MB >> >> TQ1, not attached, write enabled, SIMH format, capacity=98MB >> >> TQ2, not attached, write enabled, SIMH format, capacity=98MB >> >> TQ3, not attached, write enabled, SIMH format, capacity=98MB >> >> sim> b tq >> >> >> >> .MSBOOT V05.07 >> >> *MDUP.MU >> >> >> >> Trap stack push abort, PC: 062462 (ADD (R1)+,52040(R2)) >> >> sim> >> >> >> >> Am I doing something wrong? >> >> >> >> regards, >> >> >> >> Sander Reiche >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Jason.Armistead at otis.com Wed Nov 6 10:06:54 2013 From: Jason.Armistead at otis.com (Armistead, Jason) Date: Wed, 6 Nov 2013 15:06:54 +0000 Subject: [Simh] how to get eth connexion In-Reply-To: <527A0263.4000400@pia-sofer.fr> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> <5277773D.5050504@yahoo.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C5@REDROOF2.alohasunset.com> <527A0263.4000400@pia-sofer.fr> Message-ID: <78CD6B448AA1E54FBAB5EF46F90F9B38206C685D@UUSNWE1S.na.utcmail.com> G?rard SIMH has a console terminal connection. This is activated after SIMH starts up by creating a Telnet connection to port 10000 on your host (or else it times out). That implies that the IP protocol be activated on at least one network interface on your host. Jason -----Original Message----- From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] On Behalf Of G?rard Calliet Sent: Wednesday, 6 November 2013 3:49 AM To: simh at trailing-edge.com Subject: [External] Re: [Simh] how to get eth connexion Le 05/11/2013 13:55, Mark Pizzolato - Info Comm a ?crit : >> 2) I saw we need at least one ip host connexion alive to have a >> connexion for >> >simh - I am on Windows with wincap -. Again, why ? > I'm not sure exactly what you mean by 'need at least one ip host connexion alive'. Are you saying that you need to be connected to a network? Thanks to your help, I was able to communicate using a classic wire connexion. It works also with the only wire interface, used by Windows for ip traffic, and by simh for its (ip also) traffic. If I disable the ip protocol for the interface, simh also cannot work. My question is theoretical : why do we need an ip host protocol on the host interface for simh being able of work with this interface ? It's perhaps a window / wincap issue. Don't worry about it : it is only to increese my knowledge. I do go on with wired and ip-ed solutions. G?rard Calliet _______________________________________________ Simh mailing list Simh at trailing-edge.com http://mailman.trailing-edge.com/mailman/listinfo/simh From Mark at infocomm.com Wed Nov 6 10:34:51 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Wed, 6 Nov 2013 07:34:51 -0800 Subject: [Simh] how to get eth connexion In-Reply-To: <527A0263.4000400@pia-sofer.fr> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> <5277773D.5050504@yahoo.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C5@REDROOF2.alohasunset.com> <527A0263.4000400@pia-sofer.fr> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1E8@REDROOF2.alohasunset.com> On Wednesday, November 06, 2013 at 12:49 AM, G?rard Calliet wrote: > Le 05/11/2013 13:55, Mark Pizzolato - Info Comm a ?crit : > >> 2) I saw we need at least one ip host connexion alive to have a > >> connexion for > >> >simh - I am on Windows with wincap -. Again, why ? > > I'm not sure exactly what you mean by 'need at least one ip host connexion > alive'. Are you saying that you need to be connected to a network? > Thanks to your help, I was able to communicate using a classic wire > connexion. It works also with the only wire interface, used by Windows for ip > traffic, and by simh for its (ip also) traffic. > If I disable the ip protocol for the interface, simh also cannot work. > My question is theoretical : why do we need an ip host protocol on the host > interface for simh being able of work with this interface ? It's perhaps a > window / wincap issue. That is a good question. You certainly should be able to run a simh simulator using a network interface which the host system isn't using for IP traffic. I have done this in the past. In fact, prior to simh v3.9, using an extra network interface (one dedicated to simh) was the only way the simulated system could talk to its host system via IP. The key requirement is that the dedicated interface MUST be enabled and active/on. WinPcap does not have any way to "turn an interface on", so you may need some low level protocol enabled on the interface to act as a place holder to turn on the interface. IP certainly is sufficient to perform this task, but several other "Protocols" which windows At this time, I no longer run simh simulators on Windows using the additional interface since, while implementing the DELQA-T I found the issue (for Windows) which didn't allow a simh simulator to share the network interface AND to talk to the host as well. That works now. On non-windows platforms, the problem still is an issue, but there now built in support for other ways to work around this issue (with internal bridging and/or VDE). - Mark > Don't worry about it : it is only to increese my knowledge. I do go on with > wired and ip-ed solutions. > > G?rard Calliet > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh From Mark at infocomm.com Wed Nov 6 10:38:01 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Wed, 6 Nov 2013 07:38:01 -0800 Subject: [Simh] how to get eth connexion In-Reply-To: <78CD6B448AA1E54FBAB5EF46F90F9B38206C685D@UUSNWE1S.na.utcmail.com> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> <5277773D.5050504@yahoo.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C5@REDROOF2.alohasunset.com> <527A0263.4000400@pia-sofer.fr> <78CD6B448AA1E54FBAB5EF46F90F9B38206C685D@UUSNWE1S.na.utcmail.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1E9@REDROOF2.alohasunset.com> On Wednesday, November 06, 2013 at 7:07 AM, Jason Armistead wrote: > G?rard > > SIMH has a console terminal connection. This is activated after SIMH starts > up by creating a Telnet connection to port 10000 on your host (or else it times > out). That implies that the IP protocol be activated on at least one network > interface on your host. > > Jason The use of the console telnet connection is not required. However, one could use it without an external network interface by connecting via the localhost network address (127.0.0.1). From priyachinc at gmail.com Thu Nov 7 07:05:28 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Thu, 7 Nov 2013 17:35:28 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1CC@REDROOF2.alohasunset.com> References: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1CC@REDROOF2.alohasunset.com> Message-ID: Hi, I'm having a weird problem now. I'm able to ping but cannot use telnet. I have a feeling I did something wrong during tcpip configuration. *$ telnet 192.168.0.37* %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 -TCPIP-E-NO_RECOVERY, unexpected name server failure *ford/system$ tcpip* TCPIP> ping 192.168.0.37 PING 192.168.0.37 (192.168.0.37): 56 data bytes 64 bytes from 192.168.0.37: icmp_seq=0 ttl=64 time=0 ms 64 bytes from 192.168.0.37: icmp_seq=1 ttl=64 time=0 ms 64 bytes from 192.168.0.37: icmp_seq=2 ttl=64 time=0 ms 64 bytes from 192.168.0.37: icmp_seq=3 ttl=64 time=0 ms ----192.168.0.37 PING Statistics---- 4 packets transmitted, 4 packets received, 0% packet loss round-trip (ms) min/avg/max = 0/0/0 ms TCPIP> TCPIP> exit - Priya On Tue, Nov 5, 2013 at 10:20 PM, Mark Pizzolato - Info Comm < Mark at infocomm.com> wrote: > Hi Chris, > > > > On Priya?s system either eth0 or em1 would produce the same results. The > simh Ethernet generic naming paradigm makes this true. > > > > Priya?s first problem is that he can?t ping. I?ll step back once packets > are moving on the wire. Once he can ping, your ideas may be relevant. > > > > - Mark > > > > *From:* simh-bounces at trailing-edge.com [mailto: > simh-bounces at trailing-edge.com] *On Behalf Of *Christopher Myers > *Sent:* Tuesday, November 05, 2013 7:55 AM > *To:* priya chincholikar > *Cc:* simh at trailing-edge.com > > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > Hey, > > > > I think you're attaching the wrong Ethernet interface. > > > > You've got it set to 'em1' when > http://www.wherry.com/gadgets/retrocomputing/vax-simh.html has it set to > 'eth0.' Not sure if this is what the problem is, just something I noticed. > > > > > > Also, just a heads up. I've had a somewhat similar problem on VAXStation > 3100 running OpenVMS 7.3. > > > > I couldn't TELNET to hosts, but could ping them and the error I would get > is the same. > > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > > When I was trying to figure this out, I discovered that OpenVMS apparently > wants a name attached to that host. So you need to give 192.168.0.37 a > text name like "MYHOST" and then you'll be able to telnet with that name > and (oddly) the IP address. > > > > What you need to do is go into the tcpip configuration program. > > > > $ TCPIP > > > > TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37 > > > > TCPIP> SHOW HOST > > > > This is how I fixed my little problem on real equipment. I had a working > ping to a host, but no ability to TELNET. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From priyachinc at gmail.com Thu Nov 7 07:48:10 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Thu, 7 Nov 2013 18:18:10 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1CC@REDROOF2.alohasunset.com> Message-ID: Hi, How do I make this work ? *$ tcpip* TCPIP> sh host %TCPIP-E-HOSTERROR, cannot process host request -TCPIP-E-NOFILE, cannot access TCPIP$HOST database file -RMS-E-FNF, file not found %TCPIP-E-HOSTERROR, cannot process host request -TCPIP-E-NOFILE, cannot access !AS database file -Priya On Thu, Nov 7, 2013 at 5:35 PM, priya chincholikar wrote: > Hi, > > I'm having a weird problem now. > I'm able to ping but cannot use telnet. I have a feeling I did something > wrong during tcpip configuration. > > *$ telnet 192.168.0.37* > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > -TCPIP-E-NO_RECOVERY, unexpected name server failure > *ford/system$ tcpip* > TCPIP> ping 192.168.0.37 > PING 192.168.0.37 (192.168.0.37): 56 data bytes > 64 bytes from 192.168.0.37: icmp_seq=0 ttl=64 time=0 ms > 64 bytes from 192.168.0.37: icmp_seq=1 ttl=64 time=0 ms > 64 bytes from 192.168.0.37: icmp_seq=2 ttl=64 time=0 ms > 64 bytes from 192.168.0.37: icmp_seq=3 ttl=64 time=0 ms > > > ----192.168.0.37 PING Statistics---- > 4 packets transmitted, 4 packets received, 0% packet loss > round-trip (ms) min/avg/max = 0/0/0 ms > TCPIP> > TCPIP> exit > > - Priya > > > On Tue, Nov 5, 2013 at 10:20 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > >> Hi Chris, >> >> >> >> On Priya?s system either eth0 or em1 would produce the same results. The >> simh Ethernet generic naming paradigm makes this true. >> >> >> >> Priya?s first problem is that he can?t ping. I?ll step back once packets >> are moving on the wire. Once he can ping, your ideas may be relevant. >> >> >> >> - Mark >> >> >> >> *From:* simh-bounces at trailing-edge.com [mailto: >> simh-bounces at trailing-edge.com] *On Behalf Of *Christopher Myers >> *Sent:* Tuesday, November 05, 2013 7:55 AM >> *To:* priya chincholikar >> *Cc:* simh at trailing-edge.com >> >> *Subject:* Re: [Simh] Unable to telnet to other hosts >> >> >> >> Hey, >> >> >> >> I think you're attaching the wrong Ethernet interface. >> >> >> >> You've got it set to 'em1' when >> http://www.wherry.com/gadgets/retrocomputing/vax-simh.html has it set to >> 'eth0.' Not sure if this is what the problem is, just something I noticed. >> >> >> >> >> >> Also, just a heads up. I've had a somewhat similar problem on VAXStation >> 3100 running OpenVMS 7.3. >> >> >> >> I couldn't TELNET to hosts, but could ping them and the error I would get >> is the same. >> >> >> >> -TCPIP-E-NO_RECOVERY, unexpected name server failure >> >> >> >> When I was trying to figure this out, I discovered that OpenVMS >> apparently wants a name attached to that host. So you need to give 192.168.0.37 >> a text name like "MYHOST" and then you'll be able to telnet with that name >> and (oddly) the IP address. >> >> >> >> What you need to do is go into the tcpip configuration program. >> >> >> >> $ TCPIP >> >> >> >> TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37 >> >> >> >> TCPIP> SHOW HOST >> >> >> >> This is how I fixed my little problem on real equipment. I had a working >> ping to a host, but no ability to TELNET. >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Thu Nov 7 08:01:32 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Thu, 7 Nov 2013 05:01:32 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1CC@REDROOF2.alohasunset.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F211@REDROOF2.alohasunset.com> Hi Priya, I suggest you look at the details Christopher Myers provided. I have almost no experience with VMS TCP/IP Services. I have always been a MultiNet user. Good Luck. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Thursday, November 07, 2013 4:48 AM To: Mark Pizzolato - Info Comm Cc: Christopher Myers; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hi, How do I make this work ? $ tcpip TCPIP> sh host %TCPIP-E-HOSTERROR, cannot process host request -TCPIP-E-NOFILE, cannot access TCPIP$HOST database file -RMS-E-FNF, file not found %TCPIP-E-HOSTERROR, cannot process host request -TCPIP-E-NOFILE, cannot access !AS database file -Priya On Thu, Nov 7, 2013 at 5:35 PM, priya chincholikar > wrote: Hi, I'm having a weird problem now. I'm able to ping but cannot use telnet. I have a feeling I did something wrong during tcpip configuration. $ telnet 192.168.0.37 %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 -TCPIP-E-NO_RECOVERY, unexpected name server failure ford/system$ tcpip TCPIP> ping 192.168.0.37 PING 192.168.0.37 (192.168.0.37): 56 data bytes 64 bytes from 192.168.0.37: icmp_seq=0 ttl=64 time=0 ms 64 bytes from 192.168.0.37: icmp_seq=1 ttl=64 time=0 ms 64 bytes from 192.168.0.37: icmp_seq=2 ttl=64 time=0 ms 64 bytes from 192.168.0.37: icmp_seq=3 ttl=64 time=0 ms ----192.168.0.37 PING Statistics---- 4 packets transmitted, 4 packets received, 0% packet loss round-trip (ms) min/avg/max = 0/0/0 ms TCPIP> TCPIP> exit - Priya On Tue, Nov 5, 2013 at 10:20 PM, Mark Pizzolato - Info Comm > wrote: Hi Chris, On Priya's system either eth0 or em1 would produce the same results. The simh Ethernet generic naming paradigm makes this true. Priya's first problem is that he can't ping. I'll step back once packets are moving on the wire. Once he can ping, your ideas may be relevant. - Mark From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] On Behalf Of Christopher Myers Sent: Tuesday, November 05, 2013 7:55 AM To: priya chincholikar Cc: simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hey, I think you're attaching the wrong Ethernet interface. You've got it set to 'em1' when http://www.wherry.com/gadgets/retrocomputing/vax-simh.html has it set to 'eth0.' Not sure if this is what the problem is, just something I noticed. Also, just a heads up. I've had a somewhat similar problem on VAXStation 3100 running OpenVMS 7.3. I couldn't TELNET to hosts, but could ping them and the error I would get is the same. -TCPIP-E-NO_RECOVERY, unexpected name server failure When I was trying to figure this out, I discovered that OpenVMS apparently wants a name attached to that host. So you need to give 192.168.0.37 a text name like "MYHOST" and then you'll be able to telnet with that name and (oddly) the IP address. What you need to do is go into the tcpip configuration program. $ TCPIP TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37 TCPIP> SHOW HOST This is how I fixed my little problem on real equipment. I had a working ping to a host, but no ability to TELNET. -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.w.holland at gmail.com Thu Nov 7 08:26:12 2013 From: david.w.holland at gmail.com (David Holland) Date: Thu, 7 Nov 2013 08:26:12 -0500 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F211@REDROOF2.alohasunset.com> References: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1CC@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F211@REDROOF2.alohasunset.com> Message-ID: The error implies he doesn't have a local hosts database file. This is what's on one of my systems: $ show log TCPIP$HOST "TCPIP$HOST" = "SYS$COMMON:[SYSEXE]TCPIP$HOST.DAT;1" (LNM$SYSTEM_TABLE) $ type TCPIP$HOST 127.0.0.1 LOCALHOST I *think* running @SYS$MANAGER:TCPIP$CONFIG and configuring the primary interface should have added a hostname/IP address alias to the local hosts database file. Its been a long time since I had to do reconfigure it. I'd say run it again, and poke around in the core environment menu. I think you can also create a hosts database with the TCPIP command, and the "CREATE HOST" sub-command. See: http://h71000.www7.hp.com/doc/83final/6524/6524pro_002.html David On Thu, Nov 7, 2013 at 8:01 AM, Mark Pizzolato - Info Comm wrote: > Hi Priya, > > > > I suggest you look at the details Christopher Myers provided. > > > > I have almost no experience with VMS TCP/IP Services. I have always been a > MultiNet user. > > > > Good Luck. > > > > - Mark > > > > From: priya chincholikar [mailto:priyachinc at gmail.com] > Sent: Thursday, November 07, 2013 4:48 AM > To: Mark Pizzolato - Info Comm > Cc: Christopher Myers; simh at trailing-edge.com > > > Subject: Re: [Simh] Unable to telnet to other hosts > > > > Hi, > > How do I make this work ? > > > > $ tcpip > > TCPIP> sh host > > %TCPIP-E-HOSTERROR, cannot process host request > > -TCPIP-E-NOFILE, cannot access TCPIP$HOST database file > > -RMS-E-FNF, file not found > > %TCPIP-E-HOSTERROR, cannot process host request > > -TCPIP-E-NOFILE, cannot access !AS database file > > > > -Priya > > > > > > On Thu, Nov 7, 2013 at 5:35 PM, priya chincholikar > wrote: > > Hi, > > > > I'm having a weird problem now. > > I'm able to ping but cannot use telnet. I have a feeling I did something > wrong during tcpip configuration. > > > > $ telnet 192.168.0.37 > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > ford/system$ tcpip > > TCPIP> ping 192.168.0.37 > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > 64 bytes from 192.168.0.37: icmp_seq=0 ttl=64 time=0 ms > > 64 bytes from 192.168.0.37: icmp_seq=1 ttl=64 time=0 ms > > 64 bytes from 192.168.0.37: icmp_seq=2 ttl=64 time=0 ms > > 64 bytes from 192.168.0.37: icmp_seq=3 ttl=64 time=0 ms > > > > > > ----192.168.0.37 PING Statistics---- > > 4 packets transmitted, 4 packets received, 0% packet loss > > round-trip (ms) min/avg/max = 0/0/0 ms > > TCPIP> > > TCPIP> exit > > > > - Priya > > > > On Tue, Nov 5, 2013 at 10:20 PM, Mark Pizzolato - Info Comm > wrote: > > Hi Chris, > > > > On Priya?s system either eth0 or em1 would produce the same results. The > simh Ethernet generic naming paradigm makes this true. > > > > Priya?s first problem is that he can?t ping. I?ll step back once packets > are moving on the wire. Once he can ping, your ideas may be relevant. > > > > - Mark > > > > From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] > On Behalf Of Christopher Myers > Sent: Tuesday, November 05, 2013 7:55 AM > To: priya chincholikar > Cc: simh at trailing-edge.com > > > Subject: Re: [Simh] Unable to telnet to other hosts > > > > Hey, > > > > I think you're attaching the wrong Ethernet interface. > > > > You've got it set to 'em1' when > http://www.wherry.com/gadgets/retrocomputing/vax-simh.html has it set to > 'eth0.' Not sure if this is what the problem is, just something I noticed. > > > > > > Also, just a heads up. I've had a somewhat similar problem on VAXStation > 3100 running OpenVMS 7.3. > > > > I couldn't TELNET to hosts, but could ping them and the error I would get is > the same. > > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > > When I was trying to figure this out, I discovered that OpenVMS apparently > wants a name attached to that host. So you need to give 192.168.0.37 a text > name like "MYHOST" and then you'll be able to telnet with that name and > (oddly) the IP address. > > > > What you need to do is go into the tcpip configuration program. > > > > $ TCPIP > > > > TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37 > > > > TCPIP> SHOW HOST > > > > This is how I fixed my little problem on real equipment. I had a working > ping to a host, but no ability to TELNET. > > > > > > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh From thisisentchris87 at gmail.com Thu Nov 7 09:21:51 2013 From: thisisentchris87 at gmail.com (Christopher Myers) Date: Thu, 7 Nov 2013 09:21:51 -0500 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1CC@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F211@REDROOF2.alohasunset.com> Message-ID: According to his first post he's already configured TCPIP, but it wouldn't hurt to ask. Priya, have you run "@SYS$MANAGER:TCPIP$CONFIG" to configure TCPIP? I'm assuming also, that you already tried to input a host using the "SET HOST" command and you entered "SHOW HOST" and got the error. Try what David suggested. On Thu, Nov 7, 2013 at 8:26 AM, David Holland wrote: > The error implies he doesn't have a local hosts database file. > > This is what's on one of my systems: > > $ show log TCPIP$HOST > "TCPIP$HOST" = "SYS$COMMON:[SYSEXE]TCPIP$HOST.DAT;1" (LNM$SYSTEM_TABLE) > $ type TCPIP$HOST > 127.0.0.1 LOCALHOST > > > I *think* running @SYS$MANAGER:TCPIP$CONFIG and configuring the > primary interface should have added a hostname/IP address alias to the > local hosts database file. Its been a long time since I had to do > reconfigure it. I'd say run it again, and poke around in the core > environment menu. > > I think you can also create a hosts database with the TCPIP command, > and the "CREATE HOST" sub-command. > > See: > http://h71000.www7.hp.com/doc/83final/6524/6524pro_002.html > > David > > > On Thu, Nov 7, 2013 at 8:01 AM, Mark Pizzolato - Info Comm > wrote: > > Hi Priya, > > > > > > > > I suggest you look at the details Christopher Myers provided. > > > > > > > > I have almost no experience with VMS TCP/IP Services. I have always > been a > > MultiNet user. > > > > > > > > Good Luck. > > > > > > > > - Mark > > > > > > > > From: priya chincholikar [mailto:priyachinc at gmail.com] > > Sent: Thursday, November 07, 2013 4:48 AM > > To: Mark Pizzolato - Info Comm > > Cc: Christopher Myers; simh at trailing-edge.com > > > > > > Subject: Re: [Simh] Unable to telnet to other hosts > > > > > > > > Hi, > > > > How do I make this work ? > > > > > > > > $ tcpip > > > > TCPIP> sh host > > > > %TCPIP-E-HOSTERROR, cannot process host request > > > > -TCPIP-E-NOFILE, cannot access TCPIP$HOST database file > > > > -RMS-E-FNF, file not found > > > > %TCPIP-E-HOSTERROR, cannot process host request > > > > -TCPIP-E-NOFILE, cannot access !AS database file > > > > > > > > -Priya > > > > > > > > > > > > On Thu, Nov 7, 2013 at 5:35 PM, priya chincholikar > > > wrote: > > > > Hi, > > > > > > > > I'm having a weird problem now. > > > > I'm able to ping but cannot use telnet. I have a feeling I did something > > wrong during tcpip configuration. > > > > > > > > $ telnet 192.168.0.37 > > > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > > ford/system$ tcpip > > > > TCPIP> ping 192.168.0.37 > > > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > > > 64 bytes from 192.168.0.37: icmp_seq=0 ttl=64 time=0 ms > > > > 64 bytes from 192.168.0.37: icmp_seq=1 ttl=64 time=0 ms > > > > 64 bytes from 192.168.0.37: icmp_seq=2 ttl=64 time=0 ms > > > > 64 bytes from 192.168.0.37: icmp_seq=3 ttl=64 time=0 ms > > > > > > > > > > > > ----192.168.0.37 PING Statistics---- > > > > 4 packets transmitted, 4 packets received, 0% packet loss > > > > round-trip (ms) min/avg/max = 0/0/0 ms > > > > TCPIP> > > > > TCPIP> exit > > > > > > > > - Priya > > > > > > > > On Tue, Nov 5, 2013 at 10:20 PM, Mark Pizzolato - Info Comm > > wrote: > > > > Hi Chris, > > > > > > > > On Priya?s system either eth0 or em1 would produce the same results. The > > simh Ethernet generic naming paradigm makes this true. > > > > > > > > Priya?s first problem is that he can?t ping. I?ll step back once packets > > are moving on the wire. Once he can ping, your ideas may be relevant. > > > > > > > > - Mark > > > > > > > > From: simh-bounces at trailing-edge.com [mailto: > simh-bounces at trailing-edge.com] > > On Behalf Of Christopher Myers > > Sent: Tuesday, November 05, 2013 7:55 AM > > To: priya chincholikar > > Cc: simh at trailing-edge.com > > > > > > Subject: Re: [Simh] Unable to telnet to other hosts > > > > > > > > Hey, > > > > > > > > I think you're attaching the wrong Ethernet interface. > > > > > > > > You've got it set to 'em1' when > > http://www.wherry.com/gadgets/retrocomputing/vax-simh.html has it set to > > 'eth0.' Not sure if this is what the problem is, just something I > noticed. > > > > > > > > > > > > Also, just a heads up. I've had a somewhat similar problem on VAXStation > > 3100 running OpenVMS 7.3. > > > > > > > > I couldn't TELNET to hosts, but could ping them and the error I would > get is > > the same. > > > > > > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > > > > > > When I was trying to figure this out, I discovered that OpenVMS > apparently > > wants a name attached to that host. So you need to give 192.168.0.37 a > text > > name like "MYHOST" and then you'll be able to telnet with that name and > > (oddly) the IP address. > > > > > > > > What you need to do is go into the tcpip configuration program. > > > > > > > > $ TCPIP > > > > > > > > TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37 > > > > > > > > TCPIP> SHOW HOST > > > > > > > > This is how I fixed my little problem on real equipment. I had a working > > ping to a host, but no ability to TELNET. > > > > > > > > > > > > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh > -------------- next part -------------- An HTML attachment was scrubbed... URL: From thisisentchris87 at gmail.com Thu Nov 7 09:31:24 2013 From: thisisentchris87 at gmail.com (Christopher Myers) Date: Thu, 7 Nov 2013 09:31:24 -0500 Subject: [Simh] Unable to telnet to other hosts Message-ID: Quick update. Checking my VAXStation, using "CREATE HOST" does create the database file that I believe solves your TELNET issue. I had the same symptoms as Priya (ping works, TELNET didn't) and adding the host I wanted to TELNET to fixed it. -------------- next part -------------- An HTML attachment was scrubbed... URL: From priyachinc at gmail.com Fri Nov 8 04:33:33 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Fri, 8 Nov 2013 15:03:33 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: Message-ID: Hi all, Everything works fine now. I poked around "@SYS$MANAGER:TCPIP$CONFIG" and finally I did TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37. So telnet to myhost connected! Finally such relief! Thanks a lot for the help and I'm a 'she' :) -Priya On Thu, Nov 7, 2013 at 8:01 PM, Christopher Myers < thisisentchris87 at gmail.com> wrote: > Quick update. > > Checking my VAXStation, using "CREATE HOST" does create the database file > that I believe solves your TELNET issue. I had the same symptoms as Priya > (ping works, TELNET didn't) and adding the host I wanted to TELNET to fixed > it. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From priyachinc at gmail.com Fri Nov 8 07:52:22 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Fri, 8 Nov 2013 18:22:22 +0530 Subject: [Simh] Size of disks created by Simulator Message-ID: Hi, I have a question about the disks created during simulation. I noticed that 3 disks get attached when we run the simulator for the first time. *[root at localhost data]# ls* *cd.iso d0.dsk d1.dsk d2.dsk ka655x.bin nvram.bin* *ford/system$ sho dev dDevice Device Error Volume Free Name Status Count Label Blocks DNFS0: Online 0FORD$DUA0: Mounted 0 FORD 2371878 FORD$DUA1: Mounted alloc 0 DATA1 2940579 FORD$DUA2: Mounted alloc 0 DATA2 2940579 FORD$DUA3: Online 0* Is there a way to increase the size of any these disks ? - Priya -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Fri Nov 8 08:15:03 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Fri, 8 Nov 2013 05:15:03 -0800 Subject: [Simh] Size of disks created by Simulator In-Reply-To: References: Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F240@REDROOF2.alohasunset.com> The disks you've got and the size that they are, are a direct reflection of what you've got in your configuration file (combined with default values for disk types). Hi Priya, The MSCP disk controller provides emulation for 4 separate disks, and up to 4 separate MSCP controllers can be enabled and configured. Each disk associated with a particular MSCP controller can emulate a traditional disk model (RD54, RA81, etc.) with its natural size or can be an arbitrary sized device using the RAUSER disk type. The following commands entered directly into the simulator or in its configuration file can adjust these details: sim> SET RQ0 RA90 sim> SET RQ1 RAUSER=4096 The HELP command will explain many potential details: sim> HELP RQ FYI, the simulator automatically looks for and loads a configuration file called simulator-name.ini when it starts. An arbitrarily named configuration file can be specified on the command line when invoking the simulator: $ vax config.ini The commands within a configuration file will be displayed as they are executed if the -V switch is entered on the command line: $ vax -V or sim> do -V otherconfig.ini If your configuration file starts a simulator executing instructions (BOOT, GO,RUN, etc.), then you won't ever see the "sim> " prompt. While a simulator is executing, entering the ^E character will drop you back to the "sim> " prompt. Once there, you can look around, and/or change details of the simulator configuration. - Mark From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] On Behalf Of priya chincholikar Sent: Friday, November 08, 2013 4:52 AM To: simh at trailing-edge.com Subject: [Simh] Size of disks created by Simulator Hi, I have a question about the disks created during simulation. I noticed that 3 disks get attached when we run the simulator for the first time. [root at localhost data]# ls cd.iso d0.dsk d1.dsk d2.dsk ka655x.bin nvram.bin ford/system$ sho dev d Device Device Error Volume Free Name Status Count Label Blocks DNFS0: Online 0 FORD$DUA0: Mounted 0 FORD 2371878 FORD$DUA1: Mounted alloc 0 DATA1 2940579 FORD$DUA2: Mounted alloc 0 DATA2 2940579 FORD$DUA3: Online 0 Is there a way to increase the size of any these disks ? - Priya -------------- next part -------------- An HTML attachment was scrubbed... URL: From Bruce.Claremont at MigrationSpecialties.com Fri Nov 8 11:06:06 2013 From: Bruce.Claremont at MigrationSpecialties.com (Bruce Claremont) Date: Fri, 08 Nov 2013 09:06:06 -0700 Subject: [Simh] Size of disks created by Simulator Message-ID: The easiest way to increase the disk size under VMS is to create new disks, then use BACKUP /IMAGE to move transfer the data from old to new. At 05:52 AM 11/8/2013, priya chincholikar wrote: >Hi, > >I have a question about the disks created during simulation. >I noticed that 3 disks get attached when we run the simulator for the first time. > >[root at localhost data]# ls >cd.iso d0.dsk d1.dsk d2.dsk ka655x.bin nvram.bin > >ford/system$ sho dev d > >Device Device Error Volume Free > > Name Status Count Label Blocks >DNFS0: Online 0 >FORD$DUA0: Mounted 0 FORD 2371878 >FORD$DUA1: Mounted alloc 0 DATA1 2940579 >FORD$DUA2: Mounted alloc 0 DATA2 2940579 >FORD$DUA3: Online 0 > > >Is there a way to increase the size of any these disks ? > >- Priya >_______________________________________________ >Simh mailing list >Simh at trailing-edge.com >http://mailman.trailing-edge.com/mailman/listinfo/simh Mr. Bruce Claremont, Software Preservationist Migration Specialties International, Inc. 217 West 2nd Street, Florence, CO 81226-1403 Bruce.Claremont at MigrationSpecialties.com www.MigrationSpecialties.com +1 719-784-9196, Fax: +1 888-854-3417 Get your free Virtual Alpha at FreeAXP.com. Continuity in Computing: Founded in 1992, Migration Specialties offers modern solutions for legacy hardware & software. Look to us for virtual VAX and Alpha solutions along with OpenVMS and Tru64 Unix support. Visit our web site for more information. -------------- next part -------------- An HTML attachment was scrubbed... URL: From thisisentchris87 at gmail.com Fri Nov 8 13:23:42 2013 From: thisisentchris87 at gmail.com (Christopher Myers) Date: Fri, 8 Nov 2013 13:23:42 -0500 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: Message-ID: You're very welcome and I didn't expect that! ;) One of the many oddities of OpenVMS. You can't just telnet into a certain address without it being defined a name in a database. Everyday is an adventure! On Fri, Nov 8, 2013 at 4:33 AM, priya chincholikar wrote: > Hi all, > > Everything works fine now. I poked around "@SYS$MANAGER:TCPIP$CONFIG" and > finally I did > TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37. > > So telnet to myhost connected! > > Finally such relief! Thanks a lot for the help and I'm a 'she' :) > > -Priya > > > > On Thu, Nov 7, 2013 at 8:01 PM, Christopher Myers < > thisisentchris87 at gmail.com> wrote: > >> Quick update. >> >> Checking my VAXStation, using "CREATE HOST" does create the database file >> that I believe solves your TELNET issue. I had the same symptoms as Priya >> (ping works, TELNET didn't) and adding the host I wanted to TELNET to fixed >> it. >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From priyachinc at gmail.com Mon Nov 11 06:39:19 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Mon, 11 Nov 2013 17:09:19 +0530 Subject: [Simh] Size of disks created by Simulator In-Reply-To: References: Message-ID: Hi, I understand that sim> SET RQ1 RAUSER=4096 will give me 4096 MB space. I want to create atleast 20GB disk size. I read that "*RAUSER is a "user specified" disk; **the user can specify the size of the disk in either MB (1000000 bytes) or logical block numbers (LBN's, 512 **bytes each). The minimum size is 5MB; the maximum size is 2GB without extended file support, 1TB with extended file support* " So that means its possible to create a 20 GB disk.. How do I proceed ? - Priya On Fri, Nov 8, 2013 at 9:36 PM, Bruce Claremont < Bruce.Claremont at migrationspecialties.com> wrote: > The easiest way to increase the disk size under VMS is to create new > disks, then use BACKUP /IMAGE to move transfer the data from old to new. > > > At 05:52 AM 11/8/2013, priya chincholikar wrote: > > Hi, > > I have a question about the disks created during simulation. > I noticed that 3 disks get attached when we run the simulator for the > first time. > > > > > > > > *[root at localhost data]# ls cd.iso d0.dsk d1.dsk d2.dsk ka655x.bin > nvram.bin ford/system$ sho dev d Device Device > Error Volume Free * > Name Status Count Label Blocks > DNFS0: Online 0 > FORD$DUA0: Mounted 0 FORD 2371878 > FORD$DUA1: Mounted alloc 0 DATA1 2940579 > FORD$DUA2: Mounted alloc 0 DATA2 2940579 > > * FORD$DUA3: Online 0 * > > Is there a way to increase the size of any these disks ? > > - Priya > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > Mr. Bruce Claremont, Software Preservationist > Migration Specialties International, Inc. > 217 West 2nd Street, Florence, CO 81226-1403 > Bruce.Claremont at MigrationSpecialties.com > www.MigrationSpecialties.com > +1 719-784-9196, Fax: +1 > 888-854-3417 > > Get your free Virtual Alpha at FreeAXP.com . > > *Continuity in Computing*: Founded in 1992, Migration Specialties offers > modern solutions for legacy hardware & software. Look to us for virtual > VAX and Alpha solutions along with OpenVMS and Tru64 Unix support. Visit > our web site for more information. > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh > -------------- next part -------------- An HTML attachment was scrubbed... URL: From andreas.bucher at alcatel-lucent.com Mon Nov 11 08:50:13 2013 From: andreas.bucher at alcatel-lucent.com (Bucher, Andreas (Andreas)** CTR **) Date: Mon, 11 Nov 2013 13:50:13 +0000 Subject: [Simh] Size of disks created by Simulator In-Reply-To: References: Message-ID: Hi, that's quite easy: 1) Either in the SIMH console or in the VAX.INI file used to configure your simulation, use the following commands: {from VAX.INI} ; This virtual machine has 256M memory (cpu extend to enable mem >64M) ; note: set cpu extend is not needed, as it is implicitely included in the 256m setting ;set cpu extend set cpu 256m ; Define disk drive types. (RAUSER=sizeMB is variable size) set rq0 ra92 set rq1 rauser=2000 set rq2 cdrom ;set rq3 cdrom set rq3 rauser=20000 ; the latter will define DUA3: in VMS as ~20GB = ~40Mio blocks ; Attach defined drives to local files attach rq0 d0.dsk attach rq1 d1.dsk attach rq3 d3.dsk ; d3.dsk will be the ~20GB image file of DUA3: ; Attach the CD-ROM to its image file (read-only) attach -r rq2 ..\images\vms072.iso 2) then boot up the system: simh> boot cpu (or put this command in the VAX.INI, and launch the VAX emulator) 3) Once VMS has loaded, you need to initialize the newly created disk: $ init dua3: test This may take a while, as now, the d3.dsk container file on the host is written, as VMS initializes the file system inside it. 4) Next, mount it: $ mount dua3: test 5) If you list your devices now, you should see about 40M Blocks = 20GB $ show dev d Device Device Error Volume Free Trans Mnt Name Status Count Label Blocks Count Cnt VXAB03$DUA0: Mounted 0 SYS1 762768 283 1 VXAB03$DUA1: Mounted 0 DAT1 3797752 1 1 VXAB03$DUA2: Online 0 VXAB03$DUA3: Mounted alloc 0 TEST 39079352 1 1 6) Your 20GB disk is now usable: $ dir dua3:[000000] Directory DUA3:[000000] 000000.DIR;1 BACKUP.SYS;1 BADBLK.SYS;1 BADLOG.SYS;1 BITMAP.SYS;1 CONTIN.SYS;1 CORIMG.SYS;1 INDEXF.SYS;1 SECURITY.SYS;1 VOLSET.SYS;1 Total of 10 files. 7) The next time you boot um VMS and need this disk, you only have to mount it. Hope this helps ! Kind Regards, Andreas > -----Original Message----- > From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing- > edge.com] On Behalf Of priya chincholikar > Sent: Montag, 11. November 2013 12:39 > To: Bruce Claremont > Cc: simh at trailing-edge.com > Subject: Re: [Simh] Size of disks created by Simulator > > Hi, > > I understand that sim> SET RQ1 RAUSER=4096 will give me 4096 MB space. > I want to create atleast 20GB disk size. > I read that > "RAUSER is a "user specified" disk; the user can specify the size of > the disk in either MB (1000000 bytes) or logical block numbers (LBN's, > 512 bytes each). The minimum size is 5MB; the maximum size is 2GB > without extended file support, 1TB with extended file support " > So that means its possible to create a 20 GB disk.. How do I proceed ? > > - Priya > > > On Fri, Nov 8, 2013 at 9:36 PM, Bruce Claremont > wrote: > > > The easiest way to increase the disk size under VMS is to create > new disks, then use BACKUP /IMAGE to move transfer the data from old to > new. > > > At 05:52 AM 11/8/2013, priya chincholikar wrote: > > > Hi, > > I have a question about the disks created during > simulation. > I noticed that 3 disks get attached when we run the > simulator for the first time. > > [root at localhost data]# ls > cd.iso d0.dsk d1.dsk d2.dsk ka655x.bin nvram.bin > > ford/system$ sho dev d > > Device Device Error Volume > Free > > Name Status Count Label > Blocks > DNFS0: Online 0 > FORD$DUA0: Mounted 0 FORD > 2371878 > FORD$DUA1: Mounted alloc 0 DATA1 > 2940579 > FORD$DUA2: Mounted alloc 0 DATA2 > 2940579 > FORD$DUA3: Online 0 > > > Is there a way to increase the size of any these disks ? > > - Priya > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > Mr. Bruce Claremont, Software Preservationist > Migration Specialties International, Inc. > 217 West 2nd Street, Florence, CO 81226-1403 > Bruce.Claremont at MigrationSpecialties.com > www.MigrationSpecialties.com > +1 719-784-9196, Fax: +1 > 888-854-3417 > > Get your free Virtual Alpha at FreeAXP.com > . > > Continuity in Computing: Founded in 1992, Migration Specialties > offers modern solutions for legacy hardware & software. Look to us > for virtual VAX and Alpha solutions along with OpenVMS and Tru64 Unix > support. Visit our web site for more information. > > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh > > From priyachinc at gmail.com Tue Nov 12 07:22:26 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Tue, 12 Nov 2013 17:52:26 +0530 Subject: [Simh] Size of disks created by Simulator In-Reply-To: References: Message-ID: Hi, Yes, I created two 30 GB disks. Should have tried the suggestions before reading too much :p Anyways Thanks for the help :) -Priya On Mon, Nov 11, 2013 at 7:20 PM, Bucher, Andreas (Andreas)** CTR ** < andreas.bucher at alcatel-lucent.com> wrote: > Hi, > > that's quite easy: > > 1) > Either in the SIMH console or in the VAX.INI file used to configure your > simulation, use the following commands: > > {from VAX.INI} > > ; This virtual machine has 256M memory (cpu extend to enable mem >64M) > ; note: set cpu extend is not needed, as it is implicitely included in the > 256m setting > ;set cpu extend > set cpu 256m > > ; Define disk drive types. (RAUSER=sizeMB is variable size) > set rq0 ra92 > set rq1 rauser=2000 > set rq2 cdrom > ;set rq3 cdrom > set rq3 rauser=20000 > ; the latter will define DUA3: in VMS as ~20GB = ~40Mio blocks > > ; Attach defined drives to local files > attach rq0 d0.dsk > attach rq1 d1.dsk > attach rq3 d3.dsk > ; d3.dsk will be the ~20GB image file of DUA3: > > ; Attach the CD-ROM to its image file (read-only) > attach -r rq2 ..\images\vms072.iso > > 2) > then boot up the system: > simh> boot cpu > (or put this command in the VAX.INI, and launch the VAX emulator) > > 3) > Once VMS has loaded, you need to initialize the newly created disk: > $ init dua3: test > > This may take a while, as now, the d3.dsk container file on the host is > written, as VMS initializes the file system inside it. > > 4) > Next, mount it: > $ mount dua3: test > > 5) > If you list your devices now, you should see about 40M Blocks = 20GB > > $ show dev d > > Device Device Error Volume Free > Trans Mnt > Name Status Count Label Blocks > Count Cnt > VXAB03$DUA0: Mounted 0 SYS1 762768 > 283 1 > VXAB03$DUA1: Mounted 0 DAT1 3797752 > 1 1 > VXAB03$DUA2: Online 0 > VXAB03$DUA3: Mounted alloc 0 TEST 39079352 > 1 1 > > 6) Your 20GB disk is now usable: > $ dir dua3:[000000] > > Directory DUA3:[000000] > > 000000.DIR;1 BACKUP.SYS;1 BADBLK.SYS;1 BADLOG.SYS;1 > BITMAP.SYS;1 CONTIN.SYS;1 CORIMG.SYS;1 INDEXF.SYS;1 > SECURITY.SYS;1 VOLSET.SYS;1 > > Total of 10 files. > > 7) The next time you boot um VMS and need this disk, you only have to > mount it. > > > Hope this helps ! > > Kind Regards, > Andreas > > > > -----Original Message----- > > From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing- > > edge.com] On Behalf Of priya chincholikar > > Sent: Montag, 11. November 2013 12:39 > > To: Bruce Claremont > > Cc: simh at trailing-edge.com > > Subject: Re: [Simh] Size of disks created by Simulator > > > > Hi, > > > > I understand that sim> SET RQ1 RAUSER=4096 will give me 4096 MB space. > > I want to create atleast 20GB disk size. > > I read that > > "RAUSER is a "user specified" disk; the user can specify the size of > > the disk in either MB (1000000 bytes) or logical block numbers (LBN's, > > 512 bytes each). The minimum size is 5MB; the maximum size is 2GB > > without extended file support, 1TB with extended file support " > > So that means its possible to create a 20 GB disk.. How do I proceed ? > > > > - Priya > > > > > > On Fri, Nov 8, 2013 at 9:36 PM, Bruce Claremont > > wrote: > > > > > > The easiest way to increase the disk size under VMS is to create > > new disks, then use BACKUP /IMAGE to move transfer the data from old to > > new. > > > > > > At 05:52 AM 11/8/2013, priya chincholikar wrote: > > > > > > Hi, > > > > I have a question about the disks created during > > simulation. > > I noticed that 3 disks get attached when we run the > > simulator for the first time. > > > > [root at localhost data]# ls > > cd.iso d0.dsk d1.dsk d2.dsk ka655x.bin nvram.bin > > > > ford/system$ sho dev d > > > > Device Device Error Volume > > Free > > > > Name Status Count Label > > Blocks > > DNFS0: Online 0 > > FORD$DUA0: Mounted 0 FORD > > 2371878 > > FORD$DUA1: Mounted alloc 0 DATA1 > > 2940579 > > FORD$DUA2: Mounted alloc 0 DATA2 > > 2940579 > > FORD$DUA3: Online 0 > > > > > > Is there a way to increase the size of any these disks ? > > > > - Priya > > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > > > > > Mr. Bruce Claremont, Software Preservationist > > Migration Specialties International, Inc. > > 217 West 2nd Street, Florence, CO 81226-1403 > > Bruce.Claremont at MigrationSpecialties.com > > www.MigrationSpecialties.com > > +1 719-784-9196, Fax: +1 > > 888-854-3417 > > > > Get your free Virtual Alpha at FreeAXP.com > > . > > > > Continuity in Computing: Founded in 1992, Migration Specialties > > offers modern solutions for legacy hardware & software. Look to us > > for virtual VAX and Alpha solutions along with OpenVMS and Tru64 Unix > > support. Visit our web site for more information. > > > > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob at supnik.org Tue Nov 12 09:51:07 2013 From: bob at supnik.org (Bob Supnik) Date: Tue, 12 Nov 2013 09:51:07 -0500 Subject: [Simh] Unaligned references to IO space Message-ID: <5282405B.6090706@supnik.org> A bug was reported that Ultrix conversational boot fails because the handling of unaligned references into IO space was incorrect. The issue is that the unaligned code in vax_mmu.c issues a pair of longword reads surrounding the unaligned reference, but the Qbus IO routine sees the full address (with <1:0> intact) and tries to fetch two sequential 16b words starting at the odd word address. The suggested fix was to force alignment of the PA by zeroing <1:0> for the unaligned reads. Unfortunately, the problem is much more complex, and that fix won't work as a general solution. First of all, the VAX Architecture Spec (DEC STD 032) says of IO space: "References using a length attribute other than the length of the register, or to unaligned addresses, may produce UNPREDICTABLE results." The code is question is doing a BLBC (longword operand) on a 16b register as its odd byte address. This seems to be the result of an "optimization" in the C compiler going awry. The code should have generated a BITW #xyz,register. Second, the handling of unaligned longword references, in CVAX anyway, is much more nuanced than fetching 8 bytes all the time. CVAX doesn't use the low order two bits of the physical address at all; it uses bits<29:2> and then a four bit byte mask to indicate which bytes are wanted. So an aligned longword read would generate: pa<29:2> + 1111 while an aligned word read would generate: pa<29:2> + 0011 or 1100, depending on which half is needed while a byte read would generate pa<29:2> + 0001 or 0010 or 0100 or 1000 Unaligned longword reads generate a pair of longword reads: pa<29:2> + 1110/1100/1000 pa<29:2>+1 + 0001/0011/0111 This is important because the QBus interface generates the transaction based on the byte mask, NOT the length. To look at the details for unaligned longword read: pa<1:0> = 01 - generates pa<29:2> + 1110, creating 2 Qbus reads - generates pa<29:2>+1 + 0001, creating 1 Qbus read - the upper word isn't read because the byte masks are 0 pa<1:0> = 10 - generates pa<29:2> + 1100, creating 1 Qbus read - the lower word isn't read - generates pa<29:2>+1 + 0011, creating 1 Qbus read - the upper word isn't read pa<1:0> = 11 - generates pa<29:2> + 1000, creating 1 Qbus read - the lower word isn't read - generates pa<29:2>+1 + 0111, creating 2 Qbus reads The reason this matters is that Qbus reads can have side effects. So if a read transaction occurs that wasn't expected, it can mess up state. Admittedly, this is not likely, but it can happen and apparently does in the QDSS code. Thus, the unaligned flows are wrong, at least for CVAX. The simulator uses PA<1:0> plus length (forced to longword in the unaligned case) as a substitute for byte mask. This doesn't work when going to IO space; there's not enough detail preserved to parse the second reference properly. The simulator will generate 4 Qbus operations on an unaligned reference, when in fact either 2 or 3 occur. Ugh! I am not at all sure how to fix this. The standard Read and Write routines don't pass enough information to lower-level routines to figure out what's going on. The current fix breaks the 780 as well. Nexus adapters only support aligned longword operations and detect unaligned operations by looking at address<1:0>. Unibus IO space only supports aligned word and byte operations. One possibility is to make the unaligned flows more nuanced, and fetch exactly as many words/longwords as are needed for the extraction. However, I suspect that fixing this properly will require generalization of the vax_mmu.c Read and Write unaligned flows. I will probably need to add a model-dependent test to see whether unaligned non-memory references need special handling, and then add model-dependent routines for unaligned IO references. This will allow passing enough information to create the correct behavior. This would be fine for my version of the simulator, which just has two models. However, I understand that the GIT pool now has many other models, and all of them would be affected by this change. Further, the authors would need to understand the behavior of unaligned IO space accesses, which is quite difficult without going through schematics. /Bob Supnik From bsupnik at comcast.net Thu Nov 14 07:41:57 2013 From: bsupnik at comcast.net (Bob Supnik) Date: Thu, 14 Nov 2013 12:41:57 +0000 (UTC) Subject: [Simh] VAX unaligned In-Reply-To: <784806969.4134004.1384380200258.JavaMail.root@comcast.net> Message-ID: <1085276092.4456773.1384432917407.JavaMail.root@comcast.net> As I wrote, the unaligned logic on the VAX is not quite right. Right now, the simulator fetches the 2 longwords (64b) that surround the unaligned object. That's fine for memory, but in IO space, it doesn't work. One suggestion was to force longword alignment of the addresses being used, but that doesn't work either - the 780 aborts on unaligned references and would now see the requests as aligned. CVAX does byte-masked transactions that touch exactly the bytes that are needed, and the Qbus adapter changes those transactions into appropriate word transactions (on reads) and byte/word transactions on writes. However, this behavior may or may not be right for other models (it's certainly wrong for 780). Accordingly, I believe that handling of unaligned access to IO space will have to be broken out to model-specific code. /Bob Supnik From bob at jfcl.com Fri Nov 22 09:41:33 2013 From: bob at jfcl.com (Bob Armstrong) Date: Fri, 22 Nov 2013 06:41:33 -0800 Subject: [Simh] Resurrecting the ARPAnet IMP Message-ID: <004a01cee790$f0d411e0$d27c35a0$@com> This summer a group of us worked together to resurrect the original ARPAnet IMP software, and I'm now happy to say that the IMP lives again in simulation. It's possible to run the original IMP software on a modified version of the H316 simh and to set up a virtual network of simulated IMPs talking to each other. IMP to IMP connections, which would have originally been carried over leased telephone lines, are tunneled over IP. As far as we can tell, everything works pretty much as it did in the early 1970s. IMPs are able to exchange routing information, console to console communications, network statistics, and they would carry host traffic if there were hosts on the network. The hooks are in there to allow simh to support the IMP side of the 1822 host interface, and the next step would be to recover the OS for an ARPAnet era host and then extend the corresponding simulator to talk to the IMP simulation. If you'd like to know more, you can read a detailed account of the whole adventure here - http://walden-family.com/bbn/imp-code.pdf Everyone involved has agreed to release their work under the same terms as Bob Supnik's original simh license, and I'm looking for suggestions as to how to handle that. We could just ZIP everything up and host it on the website along with all the other BBN and ARPAnet documentation. If the community considers the simh extensions for the BBN hardware to be of general interest then it could be submitted to the current simh repository. Or it could go somewhere else - I am open to suggestions. Thanks, Bob Armstrong -------------- next part -------------- An HTML attachment was scrubbed... URL: From vince at mulhollon.com Fri Nov 22 10:59:47 2013 From: vince at mulhollon.com (Vince Mulhollon) Date: Fri, 22 Nov 2013 09:59:47 -0600 Subject: [Simh] Resurrecting the ARPAnet IMP In-Reply-To: <004a01cee790$f0d411e0$d27c35a0$@com> References: <004a01cee790$f0d411e0$d27c35a0$@com> Message-ID: On Fri, Nov 22, 2013 at 8:41 AM, Bob Armstrong wrote: > IMP to IMP connections, which would have originally been carried over > leased telephone lines, are tunneled over IP. > Are you familiar with the decnet HECnet that runs over the net? Might be interesting to have something for simh users to connect themselves to. -------------- next part -------------- An HTML attachment was scrubbed... URL: From frisbie at flying-disk.com Fri Nov 22 11:01:45 2013 From: frisbie at flying-disk.com (Alan Frisbie) Date: Fri, 22 Nov 2013 08:01:45 -0800 (PST) Subject: [Simh] Resurrecting the ARPAnet IMP Message-ID: <13112208014513_448@slug.flying-disk.com> > This summer a group of us worked together to resurrect the > original ARPAnet IMP software, and I'm now happy to say that the > IMP lives again in simulation. That is so cool! It brings back many memories of working at SDC in Santa Monica back in the early 1970s. One memorable item was the teletype listing posted on the wall showing the interaction between "Doctor" and "Parry". I don't recall the sites the two programs were running at, or even if the connection between the two had a human in the loop, but it was quite amusing to read. Does anyone else remember that? Alan Frisbie From bob at supnik.org Mon Nov 25 20:33:51 2013 From: bob at supnik.org (Bob Supnik) Date: Mon, 25 Nov 2013 20:33:51 -0500 Subject: [Simh] Unaligned references Message-ID: <5293FA7F.9060703@supnik.org> I have a design with probe coding for fixing the unaligned IO space problem recently uncovered in the VAX emulator. Because it tears up the core of unaligned processing, I'd like some other eyes to look at it before I start editing code and debugging. My plan is: a) verify all cases of unaligned access to memory by simple tests (read B, W, L, Q unaligned at every possible offset; write B, W, L, Q unaligned at every possible offset) b) run HCORE, the hard core diagnostic - this will test unaligned references with memory management c) verify that the VAX 780 still runs VMS (unaligned IO references are not allowed, so only unaligned memory references need to be working correctly) d) verify all cases of unaligned access to Qbus IO space - a bit tricky, as I need to find IO registers that are not "sparse" e) verify that CVAX still runs VMS f) turn over the changes to the community for further testing The design paper is attached, for review. /Bob -------------- next part -------------- Design Notes for Fixing VAX Unaligned Access to IO and Register Space Problem Statement: VAX unaligned accesses are handled by reading the surrounding longword (or longwords) and a) for reads, extracting the addressed addressed word or longword b) for writes, inserting the addressed word or longword and then writing the surrounding longword (or longwords) back This is correct for all memory cases. On the 11/780, the unaligned access to register or IO space causes an error, as it should. On CVAX, it causes incorrect behavior, by either performing too many QBus references, or performing read-modify-writes instead of pure writes, or accessing the wrong Qbus locations. The problem cannot be trivially solved with address manipulation. The core issues is that on CVAX, unaligned access is done to exactly as many bytes as are required, using a base longword address and a byte mask. There are five cases, corresponding to word and longword lengths, and byte offsets 1, 2 (longword only), and 3. Further, behavior is different for reads and writes, because the Qbus always performs word operations on reads, leaving it to the processor to extract a byte if needed. Conceptual design: Changes in vax_mmu.c: Unaligned access is done with two separate physical addresses, pa and pa1, because if the access crosses a page boundary, pa1 may not be contiguous with pa. It's worth noting that in an unaligned access, the low part of the data begins at pa (complete with byte offset), but the high parts begins at pa1 & ~03 (always in the low-order end of the second longword). To handle unaligned data, we will add two routines for read and write unaligned: data = ReadU (pa, len); WriteU (pa, len, val); Note that the length can be 1, 2, or 3 bytes. For ReadU, data is return right-aligned and masked. For WriteU, val is expected to be right-aligned and masked. The read-unaligned flows are changed as follows: if (mapen && ((off + lnt) > VA_PAGSIZE)) { /* cross page? */ vpn = VA_GETVPN (va + lnt); /* vpn 2nd page */ tbi = VA_GETTBI (vpn); xpte = (va & VA_S0)? stlb[tbi]: ptlb[tbi]; /* access tlb */ if (((xpte.pte & acc) == 0) || (xpte.tag != vpn) || ((acc & TLB_WACC) && ((xpte.pte & TLB_M) == 0))) xpte = fill (va + lnt, lnt, acc, NULL); /* fill if needed */ pa1 = ((xpte.pte & TLB_PFN) | VA_GETOFF (va + 4)) & ~03; } else pa1 = ((pa + 4) & PAMASK) & ~03; /* not cross page */ bo = pa & 3; if (lnt >= L_LONG) { /* lw unaligned? */ sc = bo << 3; wl = ReadU (pa, L_LONG - bo); /* read both fragments */ wh = ReadU (pa1, bo); /* extract */ return ((wl | (wh << (32 - sc))) & LMASK); } else if (bo == 1) /* read within lw */ return ReadU (pa, L_WORD); else { wl = ReadU (pa, L_BYTE); /* word cross lw */ wh = ReadU (pa1, L_BYTE); /* read, extract */ return (wl | (wh << 8)); } These are not very different, but they do reflect that ReadU returns right-aligned and properly masked data, rather than the encapsulating longword. The write-unaligned flows change rather more drastically: if (mapen && ((off + lnt) > VA_PAGSIZE)) { vpn = VA_GETVPN (va + 4); tbi = VA_GETTBI (vpn); xpte = (va & VA_S0)? stlb[tbi]: ptlb[tbi]; /* access tlb */ if (((xpte.pte & acc) == 0) || (xpte.tag != vpn) || ((xpte.pte & TLB_M) == 0)) xpte = fill (va + lnt, lnt, acc, NULL); pa1 = ((xpte.pte & TLB_PFN) | VA_GETOFF (va + 4)) & ~03; } else pa1 = ((pa + 4) & PAMASK) & ~03; bo = pa & 3; if (lnt >= L_LONG) { sc = bo << 3; WriteU (pa, L_LONG - bo, val & insert[L_LONG - bo]); WriteU (pa, bo, (val >> (32 - sc)) & insert[bo]); } else if (bo == 1) /* read within lw */ WriteU (pa, L_WORD, val & WMASK); else { /* word cross lw */ WriteU (pa, L_BYTE, val & BMASK); WriteU (pa, L_BYTE, (val >> 8) & BMASK); } return; } Note that all the burden here has been thrown on the WriteU routine. ------------- ReadU is the simpler of the two routines that needs to be written. It will handle memory reads and defer register and IO space to model-specific unaligned handlers. int32 ReadU (uint32 pa, int32 lnt) { int32 dat; int32 sc = (pa & 3) << 3; if (ADDR_IS_MEM (pa)) dat = M[pa >> 2]; else { mchk = REF_V; if (ADDR_IS_IO (pa)) dat = ReadIOU (pa, lnt); else dat = ReadRegU (pa, lnt); } return ((dat >> sc) & insert[lnt]); } Note that the ReadIOU and ReadRegU return a "full longword," just like their aligned counterparts, and ReadU right-aligns the result, just as ReadB, ReadW, and ReadL do. WriteU must handle the memory read-modify-write sequence. However, it defers register and IO space to model-specific unaligned handlers. void WriteU (uint32 pa, int32 lnt, int32 val) { if (ADDR_IS_MEM (pa)) { int32 bo = pa & 3; int32 sc = bo << 3; M[pa >> 2] = (M[pa >> 2] & ~(insert[len] << sc) | (val << sc); } else if ADDR_IS_IO (pa) WriteIOU (pa, lnt, val); else WriteRegU (pa, lnt, val); return; } -------------- For the 11/780, ReadIOU, ReadRegU, WriteIOU, and WriteRegU all do the same thing: they throw an SBI machine check. We can write explicit routines to do this (and remove the unaligned checks from all the normal adapter flows), or leave things as they are and simply define the four routines as macros that go to the normal routines. So there's very little to do. On CVAX, I suspect that ReadRegU and WriteRegU behave like the normal routines. The CVAX specs don't say much, but CMCTL (the memory controller) notes that it ignores the byte mask and treats every access as an aligned longword access. I suspect this is true for the other CVAX support chips, but I no longer have chip specs. The Qbus, on the other hand... that's a fun one. Note that all of these cases are presented to the existing aligned IO routine: bo = 0, byte, word, or longword length bo = 2, word bo = 1, 2, 3, byte length All the other cases are going to end up at ReadIOU and WriteIOU, and they must turn the request into the exactly correct number of Qbus accesses AND NO MORE, because Qbus reads can have side-effects, and word read-modify-write is NOT the same as a byte write. The read cases are: bo = 0, byte or word - read one word bo = 1, byte - read one word bo = 2, byte or word - read one word bo = 3, byte - read one word bo = 0, triword - read two words bo = 1, word or triword - read two words ReadIOU is very similar to the existing ReadIO: int32 ReadIOU (uint32 pa, int32 lnt) { int32 iod; iod = ReadQb (pa); /* wd from Qbus */ if ((lnt + (pa & 1)) <= 2) /* byte or word & even */ iod = iod << ((pa & 2)? 16: 0); /* one op */ else iod = (ReadQb (pa + 2) << 16) | iod; /* two ops, get 2nd wd */ SET_IRQL; return iod; } The write cases are: bo = x, lnt = byte - write one byte bo = 0 or 2, lnt = word - write one word bo = 1, lnt = word - write two bytes bo = 0, lnt = triword - write word, byte bo = 1, lnt = triword - write byte, word WriteIOU is similar to the existing WriteIO: void WriteIO (uint32 pa, int32 val, int32 lnt) { switch (lnt) { case L_BYTE: /* byte */ WriteQb (pa, val & BMASK, WRITEB); break; case L_WORD: /* word */ if (pa & 1) { /* odd addr? */ WriteQb (pa, val & BMASK, WRITEB); WriteQb (pa + 1, (val >> 8) & BMASK, WRITEB); } else WriteQb (pa, val, WRITE); break; case 3: /* triword */ if (pa & 1) { /* odd addr? */ WriteQb (pa, val & BMASK, WRITEB); WriteQb (pa + 1, (val >> 8) & WMASK, WRITE); } else { WriteQb (pa, val & WMASK, WRITE); WriteQb (pa + 2, (val >> 16) & BMASK, WRITEB); } break; } SET_IRQL; return; } ----------------- I think this handles all the cases. /Bob Supnik From jim at deitygraveyard.com Tue Nov 26 22:49:44 2013 From: jim at deitygraveyard.com (Jim Carpenter) Date: Tue, 26 Nov 2013 22:49:44 -0500 Subject: [Simh] Resurrecting the ARPAnet IMP In-Reply-To: <004a01cee790$f0d411e0$d27c35a0$@com> References: <004a01cee790$f0d411e0$d27c35a0$@com> Message-ID: On Fri, Nov 22, 2013 at 9:41 AM, Bob Armstrong wrote: > This summer a group of us worked together to resurrect the original ARPAnet > IMP software, and I?m now happy to say that the IMP lives again in > simulation. I am really excited about this. I was just thinking a few months back how cool this would be. I can't wait to play with it! Jim Carpenter From aek at bitsavers.org Tue Nov 26 23:13:05 2013 From: aek at bitsavers.org (Al Kossow) Date: Tue, 26 Nov 2013 20:13:05 -0800 Subject: [Simh] bitsavers.org/pdf/dec/pdp11/xxdp update Message-ID: <52957151.1020800@bitsavers.org> I decided to clear my postprocessing backlog of diagnostic scans. Lots of new/rearranged material. In particular a large set of 11/45 diag writeups and a pretty complete set for the 11/34 as well. From danjcla at danjcla.com Tue Nov 26 23:50:11 2013 From: danjcla at danjcla.com (Daniel J Clark) Date: Wed, 27 Nov 2013 04:50:11 +0000 Subject: [Simh] forcing simh to build without pcap Message-ID: <3e06d053ba4343fbac4ae77a25e6281c@CO1PR02MB095.namprd02.prod.outlook.com> Is there an easy way to force simh to not try to use libpcap / pcap during the compile process, even if it thinks it exists / will work? I thought I'd ask here before spending a significant amount of time trying to understand the makefile; I'm guessing I'm just missing something obvious in the compiling system. I did try to temporarily move pcap.h elsewhere so it wasn't found, but that didn't work. Thanks, -Danny -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Wed Nov 27 00:12:40 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Tue, 26 Nov 2013 21:12:40 -0800 Subject: [Simh] forcing simh to build without pcap In-Reply-To: <3e06d053ba4343fbac4ae77a25e6281c@CO1PR02MB095.namprd02.prod.outlook.com> References: <3e06d053ba4343fbac4ae77a25e6281c@CO1PR02MB095.namprd02.prod.outlook.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF9890B0B7@REDROOF2.alohasunset.com> HI Danny, What platform are you running on? Can you explain what you are actually trying to do and why? Have you tried with the code from https://github.com/simh/simh/archive/master.zip You only need to compile with the following command: $ make vax The resulting binary should run even if you subsequently remove libpcap from the system you are running on. - Mark From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] On Behalf Of Daniel J Clark Sent: Tuesday, November 26, 2013 8:50 PM To: simh at trailing-edge.com Subject: [Simh] forcing simh to build without pcap Is there an easy way to force simh to not try to use libpcap / pcap during the compile process, even if it thinks it exists / will work? I thought I'd ask here before spending a significant amount of time trying to understand the makefile; I'm guessing I'm just missing something obvious in the compiling system. I did try to temporarily move pcap.h elsewhere so it wasn't found, but that didn't work. Thanks, -Danny -------------- next part -------------- An HTML attachment was scrubbed... URL: From lbickley at bickleywest.com Wed Nov 27 00:13:47 2013 From: lbickley at bickleywest.com (Lyle Bickley) Date: Tue, 26 Nov 2013 21:13:47 -0800 Subject: [Simh] bitsavers.org/pdf/dec/pdp11/xxdp update In-Reply-To: <52957151.1020800@bitsavers.org> References: <52957151.1020800@bitsavers.org> Message-ID: <20131126211347.35bdf484@asrock.bcwi.net> On Tue, 26 Nov 2013 20:13:05 -0800 Al Kossow wrote: > I decided to clear my postprocessing backlog of diagnostic scans. > Lots of new/rearranged material. In particular a large set of 11/45 > diag writeups and a pretty complete set for the 11/34 as well. Great! Happy Thanksgiving, BTW... Lyle -- Bickley Consulting West Inc. http://bickleywest.com "Black holes are where God is dividing by zero" From matt at 9track.net Wed Nov 27 20:39:49 2013 From: matt at 9track.net (Matt Burke) Date: Thu, 28 Nov 2013 01:39:49 +0000 Subject: [Simh] Unaligned references In-Reply-To: <5293FA7F.9060703@supnik.org> References: <5293FA7F.9060703@supnik.org> Message-ID: <52969EE5.8030000@9track.net> Bob, It all looks OK to me. The fact that both I/O and register space have unaligned read/write functions should provide enough flexibility to support the variety of VAX models now simulated. I still have a few details to work out for these other models. I may also need to do something about accesses to Qbus memory space (0x30000000 upwards) as I guess this should behave the same as Qbus I/O space? It's not really an issue for CVAX at the moment as accesses reflect to main memory. Matt On 26/11/2013 01:33, Bob Supnik wrote: > I have a design with probe coding for fixing the unaligned IO space > problem recently uncovered in the VAX emulator. > > Because it tears up the core of unaligned processing, I'd like some > other eyes to look at it before I start editing code and debugging. > > My plan is: > > a) verify all cases of unaligned access to memory by simple tests > (read B, W, L, Q unaligned at every possible offset; write B, W, L, Q > unaligned at every possible offset) > b) run HCORE, the hard core diagnostic - this will test unaligned > references with memory management > c) verify that the VAX 780 still runs VMS (unaligned IO references are > not allowed, so only unaligned memory references need to be working > correctly) > d) verify all cases of unaligned access to Qbus IO space - a bit > tricky, as I need to find IO registers that are not "sparse" > e) verify that CVAX still runs VMS > f) turn over the changes to the community for further testing > > The design paper is attached, for review. > > /Bob > > > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh -------------- next part -------------- An HTML attachment was scrubbed... URL: From spedraja at gmail.com Thu Nov 28 12:42:15 2013 From: spedraja at gmail.com (SPC) Date: Thu, 28 Nov 2013 18:42:15 +0100 Subject: [Simh] Resurrecting the ARPAnet IMP In-Reply-To: <004a01cee790$f0d411e0$d27c35a0$@com> References: <004a01cee790$f0d411e0$d27c35a0$@com> Message-ID: Marvelous. I asked and collected information about this matter (old ARPA documents, messages to BBN, messages to some Arpanet creators and other people involved in the project) but it was clear for me soon that it would be very difficult to someone without a more close contact to the sources to do this work. My congratulations for this great addition to classic computing collection of recovered systems and software. I only can add a desire to this: it would be great to recover the diverse adaptors used to connect to ARPANET from some real (and today emulated) systems (as IBM S/360 or 370, PDP ans VAX, GRI, and so...) plus the corresponding ARPANET software or NCP installed in everyone. Regards SPc. 2013/11/22 Bob Armstrong > This summer a group of us worked together to resurrect the original > ARPAnet IMP software, and I?m now happy to say that the IMP lives again in > simulation. It?s possible to run the original IMP software on a modified > version of the H316 simh and to set up a virtual network of simulated IMPs > talking to each other. IMP to IMP connections, which would have > originally been carried over leased telephone lines, are tunneled over IP. > As far as we can tell, everything works pretty much as it did in the early > 1970s. IMPs are able to exchange routing information, console to console > communications, network statistics, and they would carry host traffic if > there were hosts on the network. The hooks are in there to allow simh to > support the IMP side of the 1822 host interface, and the next step would be > to recover the OS for an ARPAnet era host and then extend the corresponding > simulator to talk to the IMP simulation. > > > > If you?d like to know more, you can read a detailed account of the whole > adventure here ? > > > > http://walden-family.com/bbn/imp-code.pdf > > > > Everyone involved has agreed to release their work under the same terms > as Bob Supnik?s original simh license, and I?m looking for suggestions as > to how to handle that. We could just ZIP everything up and host it on the > website along with all the other BBN and ARPAnet documentation. If the > community considers the simh extensions for the BBN hardware to be of > general interest then it could be submitted to the current simh > repository. Or it could go somewhere else - I am open to suggestions. > > > > Thanks, > > Bob Armstrong > > > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh > -- Gracias | Regards Saludos - Greetings - Freundliche Gr??e - Salutations -- *Sergio Pedraja* twitter: @sergio_pedraja skype: Sergio Pedraja http://plus.google.com/u/0/101292256663392735405 http://www.linkedin.com/in/sergiopedraja http://www.quora.com/Sergio-Pedraja http://spedraja.wordpress.com https://www.xing.com/profile/Sergio_Pedraja http://www.viadeo.com http://www.avalonred.com/ ----- No crea todo lo que ve, ni crea que est? vi?ndolo todo -------------- next part -------------- An HTML attachment was scrubbed... URL: From danjcla at danjcla.com Fri Nov 29 08:37:00 2013 From: danjcla at danjcla.com (Daniel J Clark) Date: Fri, 29 Nov 2013 13:37:00 +0000 Subject: [Simh] forcing simh to build without pcap In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF9890B0B7@REDROOF2.alohasunset.com> References: <3e06d053ba4343fbac4ae77a25e6281c@CO1PR02MB095.namprd02.prod.outlook.com>, <0CC6789C1C831B4C8CCFF49D45D7010FDF9890B0B7@REDROOF2.alohasunset.com> Message-ID: <20131129133658.5501069.75241.7488@danjcla.com> Trying to build on QNX? 6 Neutrino. Need to use slirp patch anyway - no need to build with pcap support, even if it did happen to work right away.? From: Mark Pizzolato - Info Comm Sent: Wednesday, November 27, 2013 12:12 AM To: Daniel J Clark; simh at trailing-edge.com Subject: RE: forcing simh to build without pcap HI Danny, What platform are you running on? Can you explain what you are actually trying to do and why? Have you tried with the code from https://github.com/simh/simh/archive/master.zip You only need to compile with the following command: $ make vax The resulting binary should run even if you subsequently remove libpcap from the system you are running on. - Mark From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] On Behalf Of Daniel J Clark Sent: Tuesday, November 26, 2013 8:50 PM To: simh at trailing-edge.com Subject: [Simh] forcing simh to build without pcap Is there an easy way to force simh to not try to use libpcap / pcap during the compile process, even if it thinks it exists / will work? I thought I'd ask here before spending a significant amount of time trying to understand the makefile; I'm guessing I'm just missing something obvious in the compiling system. I did try to temporarily move pcap.h elsewhere so it wasn't found, but that didn't work. Thanks, -Danny -------------- next part -------------- An HTML attachment was scrubbed... URL: From phil at ultimate.com Fri Nov 29 09:15:58 2013 From: phil at ultimate.com (Phil Budne) Date: Fri, 29 Nov 2013 09:15:58 -0500 Subject: [Simh] Resurrecting the ARPAnet IMP In-Reply-To: <004a01cee790$f0d411e0$d27c35a0$@com> References: <004a01cee790$f0d411e0$d27c35a0$@com> Message-ID: <201311291415.rATEFwO0047598@ultimate.com> > .... The hooks are in there to allow simh to > support the IMP side of the 1822 host interface, and the next step would be > to recover the OS for an ARPAnet era host and then extend the corresponding > simulator to talk to the IMP simulation. I wonder if ITS NCP code could be resurected. The KLH KS10 simulation talks TCP thru an emulated ACC LHDH-11, but of course the modern (KS) IMP support file doesn't do NCP (but the old KA/KL IMP support file still exists); ;;; -*- Mode:MIDAS -*- IMPVRS==.IFNM2 ; Version of IMP code IFN NCPP,.FATAL IMP Code doesn't support NCP any more! IFE KSIMP\SSIMP,.FATAL Wrong IMP driver file included! OVHMTR IMP ;Charge all this stuff to the IMP $INSRT LHDH ; IMP 1822 PROTOCOL INFORMATION (EXTENDED-LEADER VERSION) ; The IMP leader is 96 bits long, usually organized as 3 words of 32 bits. ; For further details, these documents are available from the Network ; Information Center: ; IMP-HOST protocol: BBN Report No. 1822 ; NCP protocol: NIC 8246, Host-to-Host Protocol for the ARPANET ; IP, TCP: Internet Protocol Transition Workbook, and ; Internet Protocol Implementor's Guide ; ; Here is the leader format used by the IMP code. This format uses ; no IMP padding, assumes IP only, and expects all IMP<->HOST data ; transfers in 32-bit mode. ; ; Previous versions of this code which supported NCP used a much more ; complicated leader formatting scheme based on 36 bit transfers and ; IMP padding. That scheme is dead, see SYSTEM;IMPOLD WTHNCP for details. From phil at ultimate.com Fri Nov 29 15:17:01 2013 From: phil at ultimate.com (Phil Budne) Date: Fri, 29 Nov 2013 15:17:01 -0500 Subject: [Simh] Resurrecting the ARPAnet IMP In-Reply-To: <201311291415.rATEFwO0047598@ultimate.com> References: <004a01cee790$f0d411e0$d27c35a0$@com> <201311291415.rATEFwO0047598@ultimate.com> Message-ID: <201311292017.rATKH1bt061384@ultimate.com> Oh yeah, there was also an interface called the AN22 for the KS10 in the NCP era.... Maybe there's a copy of TOPS-20 (v3?) out there with KS & NCP support. From gerard.calliet at pia-sofer.fr Sun Nov 3 17:47:03 2013 From: gerard.calliet at pia-sofer.fr (=?ISO-8859-1?Q?G=E9rard_Calliet?=) Date: Sun, 03 Nov 2013 23:47:03 +0100 Subject: [Simh] how to get eth connexion In-Reply-To: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> Message-ID: <5276D267.2030200@pia-sofer.fr> Hello, I am a beginer on simh. I have tried a lot of thing to get connected by ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms 5.5 ... / ucx 4.0 I have instaled wincap on a Windows Seven I cannot get any connexion my init : ; ; Load CPU microcode ;load -r /usr/local/vax/data/ka655.bin ; ; Attach non-volatile RAM to a file; ;attach nvr /usr/local/vax/data/nvram.bin ; ; This virtual machine has 64M memory set cpu 128m ; ; Define disk drive types. RA92 is largest-supported VAX drive. ;set rq0 ra92 ;set rq1 ra92 set rq2 ra92 set rq3 cdrom ; ; Attach defined drives to local files attach rq0 rq0.dsk ;attach rq1 /usr/local/vax/data/d1.dsk attach rq2 rq0_55.dsk ; ; Attach the CD-ROM to its file (read-only) attach -r rq3 image.iso ; ; Disable unused devices. It's also possible to disable individual devices, ; using a construction like "set rq2 disable" if desired. ; ;set rl disable ;set ts disable ; ; Attach Ethernet to a network interface set xq enabled set xq mac=74-2F-68-CD-07-05 attach xq0 eth1 ; set console telnet=9000 ; ; Now start the emulator boot cpu I join what is said on the consol. What is wrong ? Is there anything to do on the hardware interfaces ? Are there possible incompatibilities ? Any help would be good. Think you. Gérard Calliet -------------- next part -------------- A non-text attachment was scrubbed... Name: console simh.JPG Type: image/jpeg Size: 33821 bytes Desc: not available URL: From Mark at infocomm.com Sun Nov 3 18:37:40 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Sun, 3 Nov 2013 15:37:40 -0800 Subject: [Simh] how to get eth connexion In-Reply-To: <5276D267.2030200@pia-sofer.fr> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> On Sunday, November 03, 2013 at 2:47 PM, Gérard Calliet wrote: > Hello, > > I am a beginer on simh. I have tried a lot of thing to get connected by > ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms 5.5 ... / ucx 4.0 I have > instaled wincap on a Windows Seven I cannot get any connexion Hi Gérard, Try using the latest simh binaries from https://github.com/simh/Win32-Development-Binaries/blob/Win32-Development-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip Alternatively, if you've got a Visual Studio environment (or MinGW) available, you can build from the latest sources available from: https://github.com/simh/simh/archive/master.zip If you are still having problems, provide the output of "SHOW ETHERNET" from a "sim>" prompt along with the output of IPCONFIG/ALL from a Windows command prompt, and explain what makes you think that the ethernet is not working. Good Luck. - Mark From bob at supnik.org Sun Nov 3 19:53:29 2013 From: bob at supnik.org (Bob Supnik) Date: Sun, 03 Nov 2013 19:53:29 -0500 Subject: [Simh] [simh] testing simulated CPUs In-Reply-To: References: Message-ID: <5276F009.6010908@supnik.org> This sounds like AXE, the VAX architectural exerciser. AXE had a wide variety of tests - 5M or more in each major instruction group - and logic for positioning operands and setting up memory management to stress paging boundary conditions, unaligned operands, tracing, and other special conditions. AXE's limitations were that it couldn't test for pipeline-related problems (addressed in later verifiers such as MAX, which did multiple instruction sequences), for real-time conditions like interrupts or I/O, or for console HALT. AXE was intended to be run without a reference host. The test cases were first run on the reference, and the results added to the test cases as the correct answers. AXE could then be run either as a test harness to drive a simulator or on new hardware (or simulated hardware). When AXE was finally run against SimH VAX, it turned up a couple of corner case bugs in the deprecated floating point instructions (POLY, EMOD, ACB). From an analysis I did after NVAX, here are all the VLSI VAX microcode bugs that made it past tape-out of the first pass chip: uVAX CVAX Rigel NVAX comment ---- ---- ----- ---- ------- Indexed immediate 1 ECO'd out of SRM Interrupt passive rel 1 1 Interrupt to string 1 LDPCTX 1 ECO'd out of SRM POLYG restart 1 ECO'd out of SRM CALLx cross page 1 Improved in AXE V15 POPR to SP 1 Added to AXE V14 MFPR external to memory 2 Added to HCORE MTPR ASTLVL 1 1 Added to AXE V15 Vectors 2 Added to AXE V15 IB prefetch error 2 IB TB miss error 1 Halt PC when FPD set 1 1 Restriction violation 2 INSV reserved operand 1 INSV specifier combination 1 Found by MAX after tape-out MULL2 PSL result 1 VIC flushing on HALT 1 Powerup initialization 1 As can be seen, some boundary conditions and tests had to be manually added to various test suites. /Bob From gerard.calliet at pia-sofer.fr Mon Nov 4 01:49:42 2013 From: gerard.calliet at pia-sofer.fr (=?ISO-8859-1?Q?G=E9rard_Calliet?=) Date: Mon, 04 Nov 2013 07:49:42 +0100 Subject: [Simh] how to get eth connexion In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> Message-ID: <52774386.1030802@pia-sofer.fr> Hi Mark, Thanks for your answer. I tried the simh 4.0 beta. It's still not working. I join show ethernet result, ipconfig/all result, my ucx config, the init file. I choosed the right eth (eth0 is the active wifi interface on windows). I gave its mac address as interf mac address in the simh init file. I don't understand where is the problem. I am just a beginner on simh, so I could have done some error, but I don't see what it is. Gérard Calliet pia-sofer Le 04/11/2013 00:37, Mark Pizzolato - Info Comm a écrit : > On Sunday, November 03, 2013 at 2:47 PM, Gérard Calliet wrote: >> Hello, >> >> I am a beginer on simh. I have tried a lot of thing to get connected by >> ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms 5.5 ... / ucx 4.0 I have >> instaled wincap on a Windows Seven I cannot get any connexion > Hi Gérard, > > Try using the latest simh binaries from https://github.com/simh/Win32-Development-Binaries/blob/Win32-Development-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip > > Alternatively, if you've got a Visual Studio environment (or MinGW) available, you can build from the latest sources available from: https://github.com/simh/simh/archive/master.zip > > > If you are still having problems, provide the output of "SHOW ETHERNET" from a "sim>" prompt along with the output of IPCONFIG/ALL from a Windows command prompt, and explain what makes you think that the ethernet is not working. > > Good Luck. > > - Mark > -------------- next part -------------- A non-text attachment was scrubbed... Name: ucx conf.JPG Type: image/jpeg Size: 35621 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ipconfig.JPG Type: image/jpeg Size: 174115 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: console simh.JPG Type: image/jpeg Size: 66430 bytes Desc: not available URL: From robert.jarratt at ntlworld.com Mon Nov 4 02:28:45 2013 From: robert.jarratt at ntlworld.com (Robert Jarratt) Date: Mon, 4 Nov 2013 07:28:45 -0000 Subject: [Simh] how to get eth connexion In-Reply-To: <52774386.1030802@pia-sofer.fr> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> Message-ID: <00d201ced92f$7f365300$7da2f900$@ntlworld.com> Hello Gérard, If I have understood you correctly you have given the simulated Ethernet interface the same MAC address as the physical interface, although if that is right there seems to be a typo in your first email. I would definitely give SIMH a unique MAC address that is not already on your network. Additionally, although I suspect it may not make a difference, it might be best to use a DEC MAC address in your SIMH config, DEC MACs start with 08-00-2B. Regards Rob > -----Original Message----- > From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing- > edge.com] On Behalf Of Gérard Calliet > Sent: 04 November 2013 06:50 > To: simh at trailing-edge.com > Subject: Re: [Simh] how to get eth connexion > > Hi Mark, > > Thanks for your answer. > > I tried the simh 4.0 beta. It's still not working. > I join show ethernet result, ipconfig/all result, my ucx config, the init file. > I choosed the right eth (eth0 is the active wifi interface on windows). > I gave its mac address as interf mac address in the simh init file. > > I don't understand where is the problem. I am just a beginner on simh, so I > could have done some error, but I don't see what it is. > > Gérard Calliet > pia-sofer > > Le 04/11/2013 00:37, Mark Pizzolato - Info Comm a écrit : > > On Sunday, November 03, 2013 at 2:47 PM, Gérard Calliet wrote: > >> Hello, > >> > >> I am a beginer on simh. I have tried a lot of thing to get connected > >> by ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms 5.5 ... / ucx > >> 4.0 I have instaled wincap on a Windows Seven I cannot get any > >> connexion > > Hi Gérard, > > > > Try using the latest simh binaries from > > https://github.com/simh/Win32-Development-Binaries/blob/Win32- > Developm > > ent-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip > > > > Alternatively, if you've got a Visual Studio environment (or MinGW) > > available, you can build from the latest sources available from: > > https://github.com/simh/simh/archive/master.zip > > > > > > If you are still having problems, provide the output of "SHOW ETHERNET" > from a "sim>" prompt along with the output of IPCONFIG/ALL from a > Windows command prompt, and explain what makes you think that the > ethernet is not working. > > > > Good Luck. > > > > - Mark > > From prenouvel at yahoo.fr Mon Nov 4 05:30:21 2013 From: prenouvel at yahoo.fr (prenouvel) Date: Mon, 04 Nov 2013 11:30:21 +0100 Subject: [Simh] how to get eth connexion In-Reply-To: <52774386.1030802@pia-sofer.fr> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> Message-ID: <5277773D.5050504@yahoo.fr> Hi Gérard, What does the command XQ show eth returns ? You try with Wifi, does it works with a RJ45 cable ? Didn't you deactivate an ethernet connection recently oh the PC host ? Regards. Patrick. Le 04/11/2013 07:49, Gérard Calliet a écrit : > Hi Mark, > > Thanks for your answer. > > I tried the simh 4.0 beta. It's still not working. > I join show ethernet result, ipconfig/all result, my ucx config, the > init file. > I choosed the right eth (eth0 is the active wifi interface on > windows). I gave its mac address as interf mac address in the simh > init file. > > I don't understand where is the problem. I am just a beginner on simh, > so I could have done some error, but I don't see what it is. > > Gérard Calliet > pia-sofer > > Le 04/11/2013 00:37, Mark Pizzolato - Info Comm a écrit : >> On Sunday, November 03, 2013 at 2:47 PM, Gérard Calliet wrote: >>> Hello, >>> >>> I am a beginer on simh. I have tried a lot of thing to get connected by >>> ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms 5.5 ... / ucx >>> 4.0 I have >>> instaled wincap on a Windows Seven I cannot get any connexion >> Hi Gérard, >> >> Try using the latest simh binaries from >> https://github.com/simh/Win32-Development-Binaries/blob/Win32-Development-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip >> >> Alternatively, if you've got a Visual Studio environment (or MinGW) >> available, you can build from the latest sources available from: >> https://github.com/simh/simh/archive/master.zip >> >> >> If you are still having problems, provide the output of "SHOW >> ETHERNET" from a "sim>" prompt along with the output of IPCONFIG/ALL >> from a Windows command prompt, and explain what makes you think that >> the ethernet is not working. >> >> Good Luck. >> >> - Mark >> > > > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh --- Ce courrier électronique ne contient aucun virus ou logiciel malveillant parce que la protection avast! Antivirus est active. http://www.avast.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From priyachinc at gmail.com Mon Nov 4 06:50:34 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Mon, 4 Nov 2013 17:20:34 +0530 Subject: [Simh] Unable to telnet to other hosts Message-ID: Hi, I'm new to openvms and simh. I installed open vms 7.3 and have configured tcpip too. I want to connect to other hosts to test my tcpip. $ telnet 192.168.0.37 %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 -TCPIP-E-NO_RECOVERY, unexpected name server failure $ ucx TCPIP> ping 192.168.0.37 PING 192.168.0.37 (192.168.0.37): 56 data bytes ----192.168.0.37 PING Statistics---- 4 packets transmitted, 0 packets received, 100% packet loss %SYSTEM-F-TIMEOUT, device timeout I'm not able to understand where I went wrong. Thanks, Priya -------------- next part -------------- An HTML attachment was scrubbed... URL: From gerard.calliet at pia-sofer.fr Mon Nov 4 07:25:16 2013 From: gerard.calliet at pia-sofer.fr (gerard.calliet at pia-sofer.fr) Date: Mon, 04 Nov 2013 13:25:16 +0100 Subject: [Simh] how to get eth connexion In-Reply-To: <00d201ced92f$7f365300$7da2f900$@ntlworld.com> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> <00d201ced92f$7f365300$7da2f900$@ntlworld.com> Message-ID: <9e67492f8960c584db035ee4699c71b4@pia-sofer.fr> Hello, Thanks for all the answers. But it doesn't work. I tried with another pc, and on rj45, and I gave a specific (dec)Mac address. Same thing. An idea ? Gérard Calliet Le 2013-11-04 08:28, Robert Jarratt a écrit : > Hello Gérard, > > If I have understood you correctly you have given the simulated > Ethernet > interface the same MAC address as the physical interface, although if > that > is right there seems to be a typo in your first email. I would > definitely > give SIMH a unique MAC address that is not already on your network. > > Additionally, although I suspect it may not make a difference, it > might be > best to use a DEC MAC address in your SIMH config, DEC MACs start > with > 08-00-2B. > > Regards > > Rob > >> -----Original Message----- >> From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing- >> edge.com] On Behalf Of Gérard Calliet >> Sent: 04 November 2013 06:50 >> To: simh at trailing-edge.com >> Subject: Re: [Simh] how to get eth connexion >> >> Hi Mark, >> >> Thanks for your answer. >> >> I tried the simh 4.0 beta. It's still not working. >> I join show ethernet result, ipconfig/all result, my ucx config, the >> init > file. >> I choosed the right eth (eth0 is the active wifi interface on >> windows). >> I gave its mac address as interf mac address in the simh init file. >> >> I don't understand where is the problem. I am just a beginner on >> simh, so > I >> could have done some error, but I don't see what it is. >> >> Gérard Calliet >> pia-sofer >> >> Le 04/11/2013 00:37, Mark Pizzolato - Info Comm a écrit : >> > On Sunday, November 03, 2013 at 2:47 PM, Gérard Calliet wrote: >> >> Hello, >> >> >> >> I am a beginer on simh. I have tried a lot of thing to get >> connected >> >> by ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms 5.5 ... / >> ucx >> >> 4.0 I have instaled wincap on a Windows Seven I cannot get any >> >> connexion >> > Hi Gérard, >> > >> > Try using the latest simh binaries from >> > https://github.com/simh/Win32-Development-Binaries/blob/Win32- >> Developm >> > ent-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip >> > >> > Alternatively, if you've got a Visual Studio environment (or >> MinGW) >> > available, you can build from the latest sources available from: >> > https://github.com/simh/simh/archive/master.zip >> > >> > >> > If you are still having problems, provide the output of "SHOW >> ETHERNET" >> from a "sim>" prompt along with the output of IPCONFIG/ALL from a >> Windows command prompt, and explain what makes you think that the >> ethernet is not working. >> > >> > Good Luck. >> > >> > - Mark >> > From lennert at vanalboom.org Mon Nov 4 07:28:46 2013 From: lennert at vanalboom.org (Lennert Van Alboom) Date: Mon, 4 Nov 2013 13:28:46 +0100 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: Message-ID: <20131104122846.GA1687@ziff.soleus.nu> The output you sent seems to indicate that your problem isn't with telnet, but with the guest not having networking at all (configuring the network inside simh alone doesn't do much). What host OS are you doing this on? What does your host networking stack look like? Can you show your simh configuration file? Regards, Lennert On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > Hi, > I'm new to openvms and simh. I installed open vms 7.3 and have configured > tcpip too. > I want to connect to other hosts to test my tcpip. > $ telnet 192.168.0.37 > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > -TCPIP-E-NO_RECOVERY, unexpected name server failure > $ ucx > TCPIP> ping 192.168.0.37 > PING 192.168.0.37 (192.168.0.37): 56 data bytes > ----192.168.0.37 PING Statistics---- > 4 packets transmitted, 0 packets received, 100% packet loss > %SYSTEM-F-TIMEOUT, device timeout > I'm not able to understand where I went wrong. > Thanks, > Priya > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 836 bytes Desc: Digital signature URL: From Mark at infocomm.com Mon Nov 4 07:32:20 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Mon, 4 Nov 2013 04:32:20 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <20131104122846.GA1687@ziff.soleus.nu> References: <20131104122846.GA1687@ziff.soleus.nu> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > The output you sent seems to indicate that your problem isn't with telnet, > but with the guest not having networking at all (configuring the network > inside simh alone doesn't do much). > > What host OS are you doing this on? > What does your host networking stack look like? > Can you show your simh configuration file? Also include the output of SHOW VERSION from within the simulator you are using... > Regards, > > > Lennert > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > Hi, > > I'm new to openvms and simh. I installed open vms 7.3 and have > configured > > tcpip too. > > I want to connect to other hosts to test my tcpip. > > $ telnet 192.168.0.37 > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > $ ucx > > TCPIP> ping 192.168.0.37 > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > ----192.168.0.37 PING Statistics---- > > 4 packets transmitted, 0 packets received, 100% packet loss > > %SYSTEM-F-TIMEOUT, device timeout > > I'm not able to understand where I went wrong. > > Thanks, > > Priya > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh From MV at pdv-systeme.de Mon Nov 4 07:34:04 2013 From: MV at pdv-systeme.de (=?utf-8?B?Vm9ybMOkbmRlciwgTWFydGlu?=) Date: Mon, 4 Nov 2013 12:34:04 +0000 Subject: [Simh] how to get eth connexion Message-ID: <900B141A56D06B40B719F9709BC01C99734089BA@gsmail02.goslar.hit.pdv> gerard.calliet at pia-sofer.fr wrote: > Thanks for all the answers. > But it doesn't work. I tried with another pc, and on rj45, and I gave a > specific (dec)Mac address. Same thing. > An idea ? I'll repeat Mark's suggestion: > provide the output of "SHOW ETHERNET" from a "sim>" prompt along with the output of IPCONFIG/ALL from a Windows command prompt and add that "SHOW ETHERNET" was spelled "XQ SHOW ETH" in older SimH versions (as Patrick suggested). cu, Martin From Mark at infocomm.com Mon Nov 4 07:42:09 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Mon, 4 Nov 2013 04:42:09 -0800 Subject: [Simh] how to get eth connexion In-Reply-To: <52774386.1030802@pia-sofer.fr> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19B@REDROOF2.alohasunset.com> Hi Gérard, On Sunday, November 03, 2013 at 10:50 PM, Gérard Calliet wrote: > Hi Mark, > > Thanks for your answer. > > I tried the simh 4.0 beta. It's still not working. > I join show ethernet result, ipconfig/all result, my ucx config, the init file. > I choosed the right eth (eth0 is the active wifi interface on windows). > I gave its mac address as interf mac address in the simh init file. This is likely your key issue. Attempting to get a simh simulator to use a Wifi network interface is likely to be a challenge. Depending on details of how your simulated system is configured, it may be impossible. I suggest that you try working with a Wired Network interface first and make sure you've to things working there BEFORE you explore the challenges of trying to 'share' the WiFi connection with your host operating system. The issues with sharing the WiFi connection come down to several facts: 1) the fact that the WiFi network expects ONLY a single MAC address to be transmitting from a single WiFi connection. 2) Normal windows WiFi network interfaces cannot operate in promiscuous mode, which means that they can only receive traffic destined for a single MAC address. Depending on subtle details of your VMS system's configuration the Operating system and/or pieces of the network software will dynamically change the MAC address that is being used on the XQ or XU interface from the built in hardware MAC address (which you specify in the simh configuration file) to a DECnet form MAC address. As mentioned above, a WiFi network connection will not expect (or work) with multiple MAC addresses, so this will be why things don't work. On a windows system using a wired network connection, the following tests should be performed (and succeed): 1) PING the host computer's wired network IP address. 2) PING the router's IP address. If this doesn't succeed, then describe the firewall/anti-virus software installed on the windows system. You should be able to use WireShark to watch your simulated system's network traffic. Capturing with a capture filter of "ip host 192.168.1.222" 3) PING other devices on your network. 4) PING something beyond your router. Let us know how far this gets. - Mark > I don't understand where is the problem. I am just a beginner on simh, so I > could have done some error, but I don't see what it is. > > Gérard Calliet > pia-sofer From priyachinc at gmail.com Mon Nov 4 07:50:01 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Mon, 4 Nov 2013 18:20:01 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> Message-ID: I'm using fedora 18 as the host. *This is the message i get when i run the simulator :* VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 *This is the vax.ini file :* ; ; Load CPU microcode load -r /usr/local/vax/data/ka655x.bin ; ; Attach non-volatile RAM to a file attach nvr /usr/local/vax/data/nvram.bin ; ; This virtual machine has 64M memory set cpu 64m ; ; Define disk drive types. RA92 is largest-supported VAX drive. set rq0 ra92 set rq1 ra92 set rq2 ra92 set rq3 cdrom ; ; Attach defined drives to local files attach rq0 /usr/local/vax/data/d0.dsk attach rq1 /usr/local/vax/data/d1.dsk attach rq2 /usr/local/vax/data/d2.dsk ; ; Attach the CD-ROM to its file (read-only) attach -r rq3 /usr/local/vax/data/cd.iso ; ; Disable unused devices. It's also possible to disable individual devices, ; using a construction like "set rq2 disable" if desired. ; set rl disable set ts disable ; ; Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 ; ;Uncomment the line below to enable auto-boot dep bdr 0 ; ;Choose one of the following lines.SET CPU CONHALT returns control to the ; VAX console monitor on a halt event (where behavior will be further ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will ; cause the simulator to get control instead. set cpu conhalt ;set cpu simhalt ; ;Now start the emulator boot cpu ; ; Exit the simulator exit Regards, Priya On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm < Mark at infocomm.com> wrote: > On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > > The output you sent seems to indicate that your problem isn't with > telnet, > > but with the guest not having networking at all (configuring the network > > inside simh alone doesn't do much). > > > > What host OS are you doing this on? > > What does your host networking stack look like? > > Can you show your simh configuration file? > > Also include the output of SHOW VERSION from within the simulator you are > using... > > > Regards, > > > > > > Lennert > > > > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > > Hi, > > > I'm new to openvms and simh. I installed open vms 7.3 and have > > configured > > > tcpip too. > > > I want to connect to other hosts to test my tcpip. > > > $ telnet 192.168.0.37 > > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > $ ucx > > > TCPIP> ping 192.168.0.37 > > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > > ----192.168.0.37 PING Statistics---- > > > 4 packets transmitted, 0 packets received, 100% packet loss > > > %SYSTEM-F-TIMEOUT, device timeout > > > I'm not able to understand where I went wrong. > > > Thanks, > > > Priya > > > > > _______________________________________________ > > > Simh mailing list > > > Simh at trailing-edge.com > > > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Mon Nov 4 08:00:02 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Mon, 4 Nov 2013 05:00:02 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> Hi Priya, I was looking for the output of "SHOW VERSION" from the "sim> " prompt. The "SHOW VERSION" output from the ">>> " prompt is the version of the VAX console ROM. The "sim>" Version information describes the simulator's capabilities. >From the simulator startup message I can see you're running simh V3.9. Please download and build the source from https://github.com/simh/simh/archive/master.zip You should just be able to unzip the file and build the vax simulator with "make vax". The "messages you get when you run the simulator" include an error message. It would be useful to see what command caused that error. To do so you can invoke the simulator with the "-v" command switch. If this doesn't help, then the output produced when you invoked the "make vax" command to build the simulator will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 4:50 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I'm using fedora 18 as the host. This is the message i get when i run the simulator : VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 This is the vax.ini file : ; ; Load CPU microcode load -r /usr/local/vax/data/ka655x.bin ; ; Attach non-volatile RAM to a file attach nvr /usr/local/vax/data/nvram.bin ; ; This virtual machine has 64M memory set cpu 64m ; ; Define disk drive types. RA92 is largest-supported VAX drive. set rq0 ra92 set rq1 ra92 set rq2 ra92 set rq3 cdrom ; ; Attach defined drives to local files attach rq0 /usr/local/vax/data/d0.dsk attach rq1 /usr/local/vax/data/d1.dsk attach rq2 /usr/local/vax/data/d2.dsk ; ; Attach the CD-ROM to its file (read-only) attach -r rq3 /usr/local/vax/data/cd.iso ; ; Disable unused devices. It's also possible to disable individual devices, ; using a construction like "set rq2 disable" if desired. ; set rl disable set ts disable ; ; Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 ; ;Uncomment the line below to enable auto-boot dep bdr 0 ; ;Choose one of the following lines.SET CPU CONHALT returns control to the ; VAX console monitor on a halt event (where behavior will be further ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will ; cause the simulator to get control instead. set cpu conhalt ;set cpu simhalt ; ;Now start the emulator boot cpu ; ; Exit the simulator exit Regards, Priya On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm > wrote: On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > The output you sent seems to indicate that your problem isn't with telnet, > but with the guest not having networking at all (configuring the network > inside simh alone doesn't do much). > > What host OS are you doing this on? > What does your host networking stack look like? > Can you show your simh configuration file? Also include the output of SHOW VERSION from within the simulator you are using... > Regards, > > > Lennert > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > Hi, > > I'm new to openvms and simh. I installed open vms 7.3 and have > configured > > tcpip too. > > I want to connect to other hosts to test my tcpip. > > $ telnet 192.168.0.37 > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > $ ucx > > TCPIP> ping 192.168.0.37 > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > ----192.168.0.37 PING Statistics---- > > 4 packets transmitted, 0 packets received, 100% packet loss > > %SYSTEM-F-TIMEOUT, device timeout > > I'm not able to understand where I went wrong. > > Thanks, > > Priya > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh -------------- next part -------------- An HTML attachment was scrubbed... URL: From lennert at vanalboom.org Mon Nov 4 08:06:51 2013 From: lennert at vanalboom.org (Lennert Van Alboom) Date: Mon, 4 Nov 2013 14:06:51 +0100 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> Message-ID: <20131104130651.GB1687@ziff.soleus.nu> Oi, On Mon, Nov 04, 2013 at 06:20:01PM +0530, priya chincholikar wrote: > I'm using fedora 18 as the host. Ah, Linux. Good. Should be easier to troubleshoot then. Interesting part: > /usr/local/vax/bin/vax.ini> attach XQ em1 > Command not allowed Check if you still get "Command not allowed" when running simh as root. I have my vax binaries as setuid root for this same reason. Lennert -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 836 bytes Desc: Digital signature URL: From priyachinc at gmail.com Mon Nov 4 08:31:07 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Mon, 4 Nov 2013 19:01:07 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> Message-ID: I have followed steps from http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the simulator, earlier I was having a problem while starting TCP/IP, but I solved that by attaching the interface type in vax.ini file, Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 I don't think I have to build it again unless of course that is the only solution to make this work. I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, Please check this, VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 >>>boot dua0 (BOOT/R5:0 DUA0 2.. -DUA0 1..0.. %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id = 0 %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. $! Copyright 2001 Compaq Computer Corporation. %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 %RUN-S-PROC_ID, identification of created process is 00000206 %DCL-S-SPAWNED, process SYSTEM_1 spawned %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% Operator _FORD$OPA0: has been enabled, username SYSTEM %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% Operator status for operator _FORD$OPA0: CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% Logfile has been initialized by operator _FORD$OPA0: Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-SERVERSTARTINGU, security server starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% Message from user SYSTEM on FORD %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager Startup processing continuing... %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% Message from user SYSTEM on FORD Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) %RMS-E-FNF, file not found TP server process waiting %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% Message from user AUDIT$SERVER on FORD Security alarm (SECURITY) and security audit (SECURITY) on FORD, system id: 1025 Auditable event: Audit server starting up Event time: 4-NOV-2013 18:45:18.58 PID: 00000203 Username: SYSTEM %STARTUP-I-AUDITCONTINUE, audit server initialization complete The OpenVMS VAX system is now executing the site-specific startup commands. %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 %TCPIP-I-NORMAL, timezone information verified %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Loaded %RUN-S-PROC_ID, identification of created process is 00000211 %TCPIP-I-SETLOCAL, setting domain and/or local host %TCPIP-I-STARTCOMM, starting communication %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Started %TCPIP-I-SETPROTP, setting protocol parameters %TCPIP-I-DEFINTE, defining interfaces %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Created INTERnet interface: QE0 %TCPIP-I-STARTNAME, starting name service %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% Message from user Proxy Server on FORD Loading proxy server image TCPIP$PROXY_SERVICES %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-I-LOADSERV, loading TCPIP server proxy information %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records -TCPIP-I-SERVSKIP, skipped 0 communication proxy records -TCPIP-I-SERVTOTAL, total of 0 proxy records read %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate FTP Server %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP NOLISTEN Process creation success: Service - FTP %TCPIP-S-STARTDONE, TCPIP$FTP startup completed %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% Message from user PWIPdriver on FORD PWIPdriver successfully started. %RUN-S-PROC_ID, identification of created process is 00000213 %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate TELNET Server %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 18:45:50.33 %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 SYSTEM job terminated at 4-NOV-2013 18:45:53.04 Accounting information: Buffered I/O count: 2340 Peak working set size: 1821 Direct I/O count: 866 Peak page file size: 8473 Page faults: 12611 Mounted volumes: 2 Charged CPU time: 0 00:00:49.40 Elapsed time: 0 00:01:01.11 Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 After I login On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm < Mark at infocomm.com> wrote: > Hi Priya, > > > > I was looking for the output of “SHOW VERSION” from the “sim> “ prompt. > The “SHOW VERSION” output from the “>>> “ prompt is the version of the VAX > console ROM. The “sim>” Version information describes the simulator’s > capabilities. > > > > From the simulator startup message I can see you’re running simh V3.9. > > > > Please download and build the source from > https://github.com/simh/simh/archive/master.zip > > > > You should just be able to unzip the file and build the vax simulator with > “make vax”. > > > > The “messages you get when you run the simulator” include an error > message. It would be useful to see what command caused that error. To do > so you can invoke the simulator with the “-v” command switch. > > > > If this doesn’t help, then the output produced when you invoked the “make > vax” command to build the simulator will be useful. > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Monday, November 04, 2013 4:50 AM > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > I'm using fedora 18 as the host. > > *This is the message i get when i run the simulator :* > > > > VAX simulator V3.9-0 > > NVR: buffering file in memory > > RQ: unit is read only > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > > > > > KA655-B V5.3, VMB 2.7 > > Performing normal system tests. > > 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. > > 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. > > 08..07..06..05..04..03.. > > Tests completed. > > Loading system software. > > (BOOT/R5:0 EXIT > > > > > > > > 2.. > > ?41 DEVASSIGN, EXIT > > ?06 HLT INST > > PC = 00000C1A > > Failure. > > >>>show version > > KA655-B V5.3, VMB 2.7 > > > > *This is the vax.ini file :* > > > > ; > > ; Load CPU microcode > > load -r /usr/local/vax/data/ka655x.bin > > ; > > ; Attach non-volatile RAM to a file > > attach nvr /usr/local/vax/data/nvram.bin > > ; > > ; This virtual machine has 64M memory > > set cpu 64m > > ; > > ; Define disk drive types. RA92 is largest-supported VAX drive. > > set rq0 ra92 > > set rq1 ra92 > > set rq2 ra92 > > set rq3 cdrom > > ; > > ; Attach defined drives to local files > > attach rq0 /usr/local/vax/data/d0.dsk > > attach rq1 /usr/local/vax/data/d1.dsk > > attach rq2 /usr/local/vax/data/d2.dsk > > ; > > ; Attach the CD-ROM to its file (read-only) > > attach -r rq3 /usr/local/vax/data/cd.iso > > ; > > ; Disable unused devices. It's also possible to disable individual devices, > > ; using a construction like "set rq2 disable" if desired. > > ; > > set rl disable > > set ts disable > > ; > > ; Attach Ethernet to a network interface > > set XQ mac=08-00-2B-AC-AC-B1 > > set XQ type=DELQA > > attach XQ em1 > > ; > > ;Uncomment the line below to enable auto-boot > > dep bdr 0 > > ; > > ;Choose one of the following lines.SET CPU CONHALT returns control to the > > ; VAX console monitor on a halt event (where behavior will be further > > ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will > > ; cause the simulator to get control instead. > > set cpu conhalt > > ;set cpu simhalt > > ; > > ;Now start the emulator > > boot cpu > > ; > > ; Exit the simulator > > exit > > > > Regards, > > Priya > > > > On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > > The output you sent seems to indicate that your problem isn't with > telnet, > > but with the guest not having networking at all (configuring the network > > inside simh alone doesn't do much). > > > > What host OS are you doing this on? > > What does your host networking stack look like? > > Can you show your simh configuration file? > > Also include the output of SHOW VERSION from within the simulator you are > using... > > > > Regards, > > > > > > Lennert > > > > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > > Hi, > > > I'm new to openvms and simh. I installed open vms 7.3 and have > > configured > > > tcpip too. > > > I want to connect to other hosts to test my tcpip. > > > $ telnet 192.168.0.37 > > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > $ ucx > > > TCPIP> ping 192.168.0.37 > > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > > ----192.168.0.37 PING Statistics---- > > > 4 packets transmitted, 0 packets received, 100% packet loss > > > %SYSTEM-F-TIMEOUT, device timeout > > > I'm not able to understand where I went wrong. > > > Thanks, > > > Priya > > > > > _______________________________________________ > > > Simh mailing list > > > Simh at trailing-edge.com > > > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: telnet 1.JPG Type: image/jpeg Size: 78385 bytes Desc: not available URL: From priyachinc at gmail.com Mon Nov 4 08:33:42 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Mon, 4 Nov 2013 19:03:42 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <20131104130651.GB1687@ziff.soleus.nu> References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <20131104130651.GB1687@ziff.soleus.nu> Message-ID: I am running it as root. That " Command not allowed" part allowed part is bugging me since days. On Mon, Nov 4, 2013 at 6:36 PM, Lennert Van Alboom wrote: > Oi, > > > On Mon, Nov 04, 2013 at 06:20:01PM +0530, priya chincholikar wrote: > > I'm using fedora 18 as the host. > > Ah, Linux. Good. Should be easier to troubleshoot then. > > Interesting part: > > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > Check if you still get "Command not allowed" when running simh as root. I > have > my vax binaries as setuid root for this same reason. > > > Lennert > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Mon Nov 4 08:43:53 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Mon, 4 Nov 2013 05:43:53 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> >From what you've provided, I can't really tell EXACTLY what simulator you are running or how it was built or what it thinks is its capabilities are. The latest source is the most supportable and the build (makefile) tells us many things. Phillip Wherry wrote the instructions you are followed 9 years ago. Things have evolved since that time and become much smoother. You are getting the "BOOT/R5:0 EXIT" message since you have the system setup to autoboot (BDR set to 0) but your NVRAM doesn't yet specify a default boot device. This is NOT related to the network issues. Please build the latest source and if what you then need to do isn't obvious, then we can explore further. The total build instructions should be: $ wget https://github.com/simh/simh/archive/master.zip $ unzip simh-master.zip $ cd simh-master $ make vax As I said, if the simulator doesn't work correctly for you then the output produced during the above make will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 5:31 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I have followed steps from http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the simulator, earlier I was having a problem while starting TCP/IP, but I solved that by attaching the interface type in vax.ini file, Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 I don't think I have to build it again unless of course that is the only solution to make this work. I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, Please check this, VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 >>>boot dua0 (BOOT/R5:0 DUA0 2.. -DUA0 1..0.. %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id = 0 %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. $! Copyright 2001 Compaq Computer Corporation. %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 %RUN-S-PROC_ID, identification of created process is 00000206 %DCL-S-SPAWNED, process SYSTEM_1 spawned %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% Operator _FORD$OPA0: has been enabled, username SYSTEM %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% Operator status for operator _FORD$OPA0: CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% Logfile has been initialized by operator _FORD$OPA0: Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-SERVERSTARTINGU, security server starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% Message from user SYSTEM on FORD %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager Startup processing continuing... %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% Message from user SYSTEM on FORD Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) %RMS-E-FNF, file not found TP server process waiting %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% Message from user AUDIT$SERVER on FORD Security alarm (SECURITY) and security audit (SECURITY) on FORD, system id: 1025 Auditable event: Audit server starting up Event time: 4-NOV-2013 18:45:18.58 PID: 00000203 Username: SYSTEM %STARTUP-I-AUDITCONTINUE, audit server initialization complete The OpenVMS VAX system is now executing the site-specific startup commands. %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 %TCPIP-I-NORMAL, timezone information verified %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Loaded %RUN-S-PROC_ID, identification of created process is 00000211 %TCPIP-I-SETLOCAL, setting domain and/or local host %TCPIP-I-STARTCOMM, starting communication %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Started %TCPIP-I-SETPROTP, setting protocol parameters %TCPIP-I-DEFINTE, defining interfaces %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Created INTERnet interface: QE0 %TCPIP-I-STARTNAME, starting name service %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% Message from user Proxy Server on FORD Loading proxy server image TCPIP$PROXY_SERVICES %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-I-LOADSERV, loading TCPIP server proxy information %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records -TCPIP-I-SERVSKIP, skipped 0 communication proxy records -TCPIP-I-SERVTOTAL, total of 0 proxy records read %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate FTP Server %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP NOLISTEN Process creation success: Service - FTP %TCPIP-S-STARTDONE, TCPIP$FTP startup completed %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% Message from user PWIPdriver on FORD PWIPdriver successfully started. %RUN-S-PROC_ID, identification of created process is 00000213 %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate TELNET Server %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 18:45:50.33 %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 SYSTEM job terminated at 4-NOV-2013 18:45:53.04 Accounting information: Buffered I/O count: 2340 Peak working set size: 1821 Direct I/O count: 866 Peak page file size: 8473 Page faults: 12611 Mounted volumes: 2 Charged CPU time: 0 00:00:49.40 Elapsed time: 0 00:01:01.11 Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 After I login On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm > wrote: Hi Priya, I was looking for the output of "SHOW VERSION" from the "sim> " prompt. The "SHOW VERSION" output from the ">>> " prompt is the version of the VAX console ROM. The "sim>" Version information describes the simulator's capabilities. >From the simulator startup message I can see you're running simh V3.9. Please download and build the source from https://github.com/simh/simh/archive/master.zip You should just be able to unzip the file and build the vax simulator with "make vax". The "messages you get when you run the simulator" include an error message. It would be useful to see what command caused that error. To do so you can invoke the simulator with the "-v" command switch. If this doesn't help, then the output produced when you invoked the "make vax" command to build the simulator will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 4:50 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I'm using fedora 18 as the host. This is the message i get when i run the simulator : VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 This is the vax.ini file : ; ; Load CPU microcode load -r /usr/local/vax/data/ka655x.bin ; ; Attach non-volatile RAM to a file attach nvr /usr/local/vax/data/nvram.bin ; ; This virtual machine has 64M memory set cpu 64m ; ; Define disk drive types. RA92 is largest-supported VAX drive. set rq0 ra92 set rq1 ra92 set rq2 ra92 set rq3 cdrom ; ; Attach defined drives to local files attach rq0 /usr/local/vax/data/d0.dsk attach rq1 /usr/local/vax/data/d1.dsk attach rq2 /usr/local/vax/data/d2.dsk ; ; Attach the CD-ROM to its file (read-only) attach -r rq3 /usr/local/vax/data/cd.iso ; ; Disable unused devices. It's also possible to disable individual devices, ; using a construction like "set rq2 disable" if desired. ; set rl disable set ts disable ; ; Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 ; ;Uncomment the line below to enable auto-boot dep bdr 0 ; ;Choose one of the following lines.SET CPU CONHALT returns control to the ; VAX console monitor on a halt event (where behavior will be further ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will ; cause the simulator to get control instead. set cpu conhalt ;set cpu simhalt ; ;Now start the emulator boot cpu ; ; Exit the simulator exit Regards, Priya On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm > wrote: On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > The output you sent seems to indicate that your problem isn't with telnet, > but with the guest not having networking at all (configuring the network > inside simh alone doesn't do much). > > What host OS are you doing this on? > What does your host networking stack look like? > Can you show your simh configuration file? Also include the output of SHOW VERSION from within the simulator you are using... > Regards, > > > Lennert > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > Hi, > > I'm new to openvms and simh. I installed open vms 7.3 and have > configured > > tcpip too. > > I want to connect to other hosts to test my tcpip. > > $ telnet 192.168.0.37 > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > $ ucx > > TCPIP> ping 192.168.0.37 > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > ----192.168.0.37 PING Statistics---- > > 4 packets transmitted, 0 packets received, 100% packet loss > > %SYSTEM-F-TIMEOUT, device timeout > > I'm not able to understand where I went wrong. > > Thanks, > > Priya > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh -------------- next part -------------- An HTML attachment was scrubbed... URL: From priyachinc at gmail.com Mon Nov 4 08:48:57 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Mon, 4 Nov 2013 19:18:57 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> Message-ID: Thank you, I will build it again and post the details :) - Priya On Mon, Nov 4, 2013 at 7:13 PM, Mark Pizzolato - Info Comm < Mark at infocomm.com> wrote: > From what you’ve provided, I can’t really tell EXACTLY what simulator you > are running or how it was built or what it thinks is its capabilities are. > The latest source is the most supportable and the build (makefile) tells us > many things. Phillip Wherry wrote the instructions you are followed 9 > years ago. Things have evolved since that time and become much smoother. > > > > You are getting the “BOOT/R5:0 EXIT” message since you have the system > setup to autoboot (BDR set to 0) but your NVRAM doesn’t yet specify a > default boot device. This is NOT related to the network issues. > > > > Please build the latest source and if what you then need to do isn’t > obvious, then we can explore further. > > > > The total build instructions should be: > > $ wget https://github.com/simh/simh/archive/master.zip > > $ unzip simh-master.zip > > $ cd simh-master > > $ make vax > > > > As I said, if the simulator doesn’t work correctly for you then the output > produced during the above make will be useful. > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Monday, November 04, 2013 5:31 AM > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > I have followed steps from > http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the > simulator, earlier I was having a problem while starting TCP/IP, but I > solved that by attaching the interface type in vax.ini file, > > > > Attach Ethernet to a network interface > > set XQ mac=08-00-2B-AC-AC-B1 > > set XQ type=DELQA > > attach XQ em1 > > > > I don't think I have to build it again unless of course that is the only > solution to make this work. > > > > I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, > > Please check this, > > > > VAX simulator V3.9-0 > > NVR: buffering file in memory > > RQ: unit is read only > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > > > > > KA655-B V5.3, VMB 2.7 > > Performing normal system tests. > > 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. > > 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. > > 08..07..06..05..04..03.. > > Tests completed. > > Loading system software. > > (BOOT/R5:0 EXIT > > > > > > > > 2.. > > ?41 DEVASSIGN, EXIT > > ?06 HLT INST > > PC = 00000C1A > > Failure. > > >>>show version > > KA655-B V5.3, VMB 2.7 > > >>>boot dua0 > > (BOOT/R5:0 DUA0 > > > > > > > > 2.. > > -DUA0 > > 1..0.. > > > > > > %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk > > %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped > > %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk > > %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS > > OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id > = 0 > > %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. > > $! Copyright 2001 Compaq Computer Corporation. > > > > %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 > > %RUN-S-PROC_ID, identification of created process is 00000206 > > %DCL-S-SPAWNED, process SYSTEM_1 spawned > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% > > Operator _FORD$OPA0: has been enabled, username SYSTEM > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% > > Operator status for operator _FORD$OPA0: > > CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, > > LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, > OPER10, > > OPER11, OPER12 > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% > > Logfile has been initialized by operator _FORD$OPA0: > > Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% > > Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 > > CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, > > LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, > OPER10, > > OPER11, OPER12 > > > > %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-SERVERSTARTINGU, security server starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now > starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node > > -LICENSE-F-NOLICENSE, no license is active for this software product > > -LICENSE-I-SYSMGR, please see your system manager > > > > > > %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node > > -LICENSE-F-NOLICENSE, no license is active for this software product > > -LICENSE-I-SYSMGR, please see your system manager > > Startup processing continuing... > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) > > %RMS-E-FNF, file not found > > TP server process waiting > > > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% > > Message from user AUDIT$SERVER on FORD > > Security alarm (SECURITY) and security audit (SECURITY) on FORD, system > id: 1025 > > Auditable event: Audit server starting up > > Event time: 4-NOV-2013 18:45:18.58 > > PID: 00000203 > > Username: SYSTEM > > > > %STARTUP-I-AUDITCONTINUE, audit server initialization complete > > > > The OpenVMS VAX system is now executing the site-specific startup commands. > > > > > > %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 > > %TCPIP-I-NORMAL, timezone information verified > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet Loaded > > > > %RUN-S-PROC_ID, identification of created process is 00000211 > > %TCPIP-I-SETLOCAL, setting domain and/or local host > > %TCPIP-I-STARTCOMM, starting communication > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet Started > > > > %TCPIP-I-SETPROTP, setting protocol parameters > > %TCPIP-I-DEFINTE, defining interfaces > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Created INTERnet interface: QE0 > > > > %TCPIP-I-STARTNAME, starting name service > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% > > Message from user Proxy Server on FORD > > Loading proxy server image TCPIP$PROXY_SERVICES > > > > %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed > > %TCPIP-E-PROXYERROR, error processing proxy request > > -TCPIP-W-NORECORD, information not found > > -RMS-E-RNF, record not found > > %TCPIP-E-PROXYERROR, error processing proxy request > > -TCPIP-W-NORECORD, information not found > > -RMS-E-RNF, record not found > > %TCPIP-I-LOADSERV, loading TCPIP server proxy information > > %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records > > -TCPIP-I-SERVSKIP, skipped 0 communication proxy records > > -TCPIP-I-SERVTOTAL, total of 0 proxy records read > > %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Activate FTP Server > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP NOLISTEN Process creation success: Service - FTP > > > > %TCPIP-S-STARTDONE, TCPIP$FTP startup completed > > %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% > > Message from user PWIPdriver on FORD > > > > PWIPdriver successfully started. > > > > %RUN-S-PROC_ID, identification of created process is 00000213 > > %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Activate TELNET Server > > > > %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed > > %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 > 18:45:50.33 > > > > %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: > > %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: > > %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 > > SYSTEM job terminated at 4-NOV-2013 18:45:53.04 > > > > Accounting information: > > Buffered I/O count: 2340 Peak working set size: > 1821 > > Direct I/O count: 866 Peak page file size: > 8473 > > Page faults: 12611 Mounted volumes: > 2 > > Charged CPU time: 0 00:00:49.40 Elapsed time: 0 > 00:01:01.11 > > > > Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 > > > > After I login > > > > > > On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > Hi Priya, > > > > I was looking for the output of “SHOW VERSION” from the “sim> “ prompt. > The “SHOW VERSION” output from the “>>> “ prompt is the version of the VAX > console ROM. The “sim>” Version information describes the simulator’s > capabilities. > > > > From the simulator startup message I can see you’re running simh V3.9. > > > > Please download and build the source from > https://github.com/simh/simh/archive/master.zip > > > > You should just be able to unzip the file and build the vax simulator with > “make vax”. > > > > The “messages you get when you run the simulator” include an error > message. It would be useful to see what command caused that error. To do > so you can invoke the simulator with the “-v” command switch. > > > > If this doesn’t help, then the output produced when you invoked the “make > vax” command to build the simulator will be useful. > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Monday, November 04, 2013 4:50 AM > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > I'm using fedora 18 as the host. > > *This is the message i get when i run the simulator :* > > > > VAX simulator V3.9-0 > > NVR: buffering file in memory > > RQ: unit is read only > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > > > > > KA655-B V5.3, VMB 2.7 > > Performing normal system tests. > > 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. > > 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. > > 08..07..06..05..04..03.. > > Tests completed. > > Loading system software. > > (BOOT/R5:0 EXIT > > > > > > > > 2.. > > ?41 DEVASSIGN, EXIT > > ?06 HLT INST > > PC = 00000C1A > > Failure. > > >>>show version > > KA655-B V5.3, VMB 2.7 > > > > *This is the vax.ini file :* > > > > ; > > ; Load CPU microcode > > load -r /usr/local/vax/data/ka655x.bin > > ; > > ; Attach non-volatile RAM to a file > > attach nvr /usr/local/vax/data/nvram.bin > > ; > > ; This virtual machine has 64M memory > > set cpu 64m > > ; > > ; Define disk drive types. RA92 is largest-supported VAX drive. > > set rq0 ra92 > > set rq1 ra92 > > set rq2 ra92 > > set rq3 cdrom > > ; > > ; Attach defined drives to local files > > attach rq0 /usr/local/vax/data/d0.dsk > > attach rq1 /usr/local/vax/data/d1.dsk > > attach rq2 /usr/local/vax/data/d2.dsk > > ; > > ; Attach the CD-ROM to its file (read-only) > > attach -r rq3 /usr/local/vax/data/cd.iso > > ; > > ; Disable unused devices. It's also possible to disable individual devices, > > ; using a construction like "set rq2 disable" if desired. > > ; > > set rl disable > > set ts disable > > ; > > ; Attach Ethernet to a network interface > > set XQ mac=08-00-2B-AC-AC-B1 > > set XQ type=DELQA > > attach XQ em1 > > ; > > ;Uncomment the line below to enable auto-boot > > dep bdr 0 > > ; > > ;Choose one of the following lines.SET CPU CONHALT returns control to the > > ; VAX console monitor on a halt event (where behavior will be further > > ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will > > ; cause the simulator to get control instead. > > set cpu conhalt > > ;set cpu simhalt > > ; > > ;Now start the emulator > > boot cpu > > ; > > ; Exit the simulator > > exit > > > > Regards, > > Priya > > > > On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > > The output you sent seems to indicate that your problem isn't with > telnet, > > but with the guest not having networking at all (configuring the network > > inside simh alone doesn't do much). > > > > What host OS are you doing this on? > > What does your host networking stack look like? > > Can you show your simh configuration file? > > Also include the output of SHOW VERSION from within the simulator you are > using... > > > > Regards, > > > > > > Lennert > > > > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > > Hi, > > > I'm new to openvms and simh. I installed open vms 7.3 and have > > configured > > > tcpip too. > > > I want to connect to other hosts to test my tcpip. > > > $ telnet 192.168.0.37 > > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > $ ucx > > > TCPIP> ping 192.168.0.37 > > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > > ----192.168.0.37 PING Statistics---- > > > 4 packets transmitted, 0 packets received, 100% packet loss > > > %SYSTEM-F-TIMEOUT, device timeout > > > I'm not able to understand where I went wrong. > > > Thanks, > > > Priya > > > > > _______________________________________________ > > > Simh mailing list > > > Simh at trailing-edge.com > > > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From prenouvel at yahoo.fr Mon Nov 4 08:50:05 2013 From: prenouvel at yahoo.fr (prenouvel) Date: Mon, 04 Nov 2013 14:50:05 +0100 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <20131104130651.GB1687@ziff.soleus.nu> Message-ID: <5277A60D.7060200@yahoo.fr> Does Telnet 0 works ? Le 04/11/2013 14:33, priya chincholikar a écrit : > I am running it as root. > That " Command not allowed" part allowed part is bugging me since days. > > > On Mon, Nov 4, 2013 at 6:36 PM, Lennert Van Alboom > > wrote: > > Oi, > > > On Mon, Nov 04, 2013 at 06:20:01PM +0530, priya chincholikar wrote: > > I'm using fedora 18 as the host. > > Ah, Linux. Good. Should be easier to troubleshoot then. > > Interesting part: > > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > Check if you still get "Command not allowed" when running simh as > root. I have > my vax binaries as setuid root for this same reason. > > > Lennert > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh --- Ce courrier électronique ne contient aucun virus ou logiciel malveillant parce que la protection avast! Antivirus est active. http://www.avast.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From priyachinc at gmail.com Tue Nov 5 01:19:00 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Tue, 5 Nov 2013 11:49:00 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <5277A60D.7060200@yahoo.fr> References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <20131104130651.GB1687@ziff.soleus.nu> <5277A60D.7060200@yahoo.fr> Message-ID: Telnet 0 works. I wanted to know that before building the latest source, should I simply delete the previous simh folders I had created on the linux host?? or Is there anything more to be done ? - Priya -------------- next part -------------- An HTML attachment was scrubbed... URL: From dott.piergiorgio at fastwebnet.it Tue Nov 5 02:26:03 2013 From: dott.piergiorgio at fastwebnet.it (dott.Piergiorgio d' Errico) Date: Tue, 05 Nov 2013 08:26:03 +0100 Subject: [Simh] beta 4.0: my initial impressions. Message-ID: <52789D8B.4040008@fastwebnet.it> 1) the implemented graphic display works, perhaps too well; spacewar seems definitively *too* fast (both ships into singularity in less than five seconds) but I don't known if is the expected behaviour on the original. PDP-11 Lunar, OTOH, even following the suggested SIMH setup, the (Linux 64b) host system crash (unresponsive, and I end doing one of my really rare hard reset...) and the TX-0 mouse simulation seems to get confused in the x,y coordinates. 1bis) What I like on improved output is (n)curses interface; I'm looking into it (no holding breath, please: I have too many WIP than actual work done...) and I'm really pleased of the updated developers' documentation 2) The SSEM emulation is the nearest thing to the "skeleton" I now have; I remember that SIMH's strong point is the unique flexibility in emulated hardware configuration. and the step ahead in turning the SIMH shell into a programmable shell is more than good, even with the implementation of an instruction considered harmful ;) 3) no improvement on LGP issue, sadly... Best regards from Italy, dott. Piergiorgio. From priyachinc at gmail.com Tue Nov 5 05:01:11 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Tue, 5 Nov 2013 15:31:11 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> Message-ID: Hi, I built the vax as told : * $ make vax* lib paths are: /lib/ /lib/sse2/ /usr/lib/atlas/ /usr/lib/dyninst/ /usr/lib/llvm/ /usr/lib/mysql/ /usr/lib/tcl8.5/ /usr/lib/tracker-0.14/ /usr/lib/xulrunner/ using libm: /lib//libm.so using librt: /lib//librt.so using libpthread: /lib//libpthread.so /usr/include/pthread.h using libdl: /lib//libdl.so /usr/include/dlfcn.h using libpcap: /usr/include/pcap.h *** Warning *** *** Warning *** vax Simulator are being built with *** Warning *** minimal libpcap networking support *** Warning *** *** Warning *** Simulators on your Linux platform can also be built with *** Warning *** extended Ethernet networking support by using VDE Ethernet. *** Warning *** *** Warning *** To build simulator(s) with extended networking support you *** Warning *** should read 0readme_ethernet.txt and follow the instructions *** Warning *** regarding the needed libvdeplug components for your Linux *** Warning *** platform *** Warning *** *** *** vax Simulator being built with: *** - compiler optimizations and no debugging support. GCC Version: 4.7.2. *** - dynamic networking support using Linux provided libpcap components. *** *** git commit id is 32b8f063620db62213151f18403fcd9c02fae97f. *** mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB sim_BuildROMs.c -o BIN/BuildROMs BIN/BuildROMs rm -f BIN/BuildROMs mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB VAX/vax_cpu.c VAX/vax_cpu1.c VAX/vax_fpa.c VAX/vax_io.c VAX/vax_cis.c VAX/vax_octa.c VAX/vax_cmode.c VAX/vax_mmu.c VAX/vax_stddev.c VAX/vax_sysdev.c VAX/vax_sys.c VAX/vax_syscm.c VAX/vax_syslist.c PDP11/pdp11_rl.c PDP11/pdp11_rq.c PDP11/pdp11_ts.c PDP11/pdp11_dz.c PDP11/pdp11_lp.c PDP11/pdp11_tq.c PDP11/pdp11_xq.c PDP11/pdp11_vh.c PDP11/pdp11_cr.c PDP11/pdp11_io_lib.c scp.c sim_console.c sim_fio.c sim_timer.c sim_sock.c sim_tmxr.c sim_ether.c sim_tape.c sim_disk.c sim_serial.c sim_video.c -DVM_VAX -DUSE_INT64 -DUSE_ADDR64 -I VAX -I PDP11 -DUSE_SHARED -I/usr/include/ -DUSE_TAP_NETWORK -o BIN/microvax3900 -lm -lrt -lpthread -ldl cp BIN/microvax3900 BIN/vax [root at localhost simh-master]# What should I do after this? Create a vax.ini file ? - Priya On Mon, Nov 4, 2013 at 7:13 PM, Mark Pizzolato - Info Comm < Mark at infocomm.com> wrote: > From what you’ve provided, I can’t really tell EXACTLY what simulator you > are running or how it was built or what it thinks is its capabilities are. > The latest source is the most supportable and the build (makefile) tells us > many things. Phillip Wherry wrote the instructions you are followed 9 > years ago. Things have evolved since that time and become much smoother. > > > > You are getting the “BOOT/R5:0 EXIT” message since you have the system > setup to autoboot (BDR set to 0) but your NVRAM doesn’t yet specify a > default boot device. This is NOT related to the network issues. > > > > Please build the latest source and if what you then need to do isn’t > obvious, then we can explore further. > > > > The total build instructions should be: > > $ wget https://github.com/simh/simh/archive/master.zip > > $ unzip simh-master.zip > > $ cd simh-master > > $ make vax > > > > As I said, if the simulator doesn’t work correctly for you then the output > produced during the above make will be useful. > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Monday, November 04, 2013 5:31 AM > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > I have followed steps from > http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the > simulator, earlier I was having a problem while starting TCP/IP, but I > solved that by attaching the interface type in vax.ini file, > > > > Attach Ethernet to a network interface > > set XQ mac=08-00-2B-AC-AC-B1 > > set XQ type=DELQA > > attach XQ em1 > > > > I don't think I have to build it again unless of course that is the only > solution to make this work. > > > > I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, > > Please check this, > > > > VAX simulator V3.9-0 > > NVR: buffering file in memory > > RQ: unit is read only > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > > > > > KA655-B V5.3, VMB 2.7 > > Performing normal system tests. > > 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. > > 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. > > 08..07..06..05..04..03.. > > Tests completed. > > Loading system software. > > (BOOT/R5:0 EXIT > > > > > > > > 2.. > > ?41 DEVASSIGN, EXIT > > ?06 HLT INST > > PC = 00000C1A > > Failure. > > >>>show version > > KA655-B V5.3, VMB 2.7 > > >>>boot dua0 > > (BOOT/R5:0 DUA0 > > > > > > > > 2.. > > -DUA0 > > 1..0.. > > > > > > %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk > > %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped > > %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk > > %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS > > OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id > = 0 > > %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. > > $! Copyright 2001 Compaq Computer Corporation. > > > > %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 > > %RUN-S-PROC_ID, identification of created process is 00000206 > > %DCL-S-SPAWNED, process SYSTEM_1 spawned > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% > > Operator _FORD$OPA0: has been enabled, username SYSTEM > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% > > Operator status for operator _FORD$OPA0: > > CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, > > LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, > OPER10, > > OPER11, OPER12 > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% > > Logfile has been initialized by operator _FORD$OPA0: > > Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% > > Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 > > CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, > > LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, > OPER10, > > OPER11, OPER12 > > > > %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-SERVERSTARTINGU, security server starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now > starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node > > -LICENSE-F-NOLICENSE, no license is active for this software product > > -LICENSE-I-SYSMGR, please see your system manager > > > > > > %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node > > -LICENSE-F-NOLICENSE, no license is active for this software product > > -LICENSE-I-SYSMGR, please see your system manager > > Startup processing continuing... > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) > > %RMS-E-FNF, file not found > > TP server process waiting > > > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% > > Message from user AUDIT$SERVER on FORD > > Security alarm (SECURITY) and security audit (SECURITY) on FORD, system > id: 1025 > > Auditable event: Audit server starting up > > Event time: 4-NOV-2013 18:45:18.58 > > PID: 00000203 > > Username: SYSTEM > > > > %STARTUP-I-AUDITCONTINUE, audit server initialization complete > > > > The OpenVMS VAX system is now executing the site-specific startup commands. > > > > > > %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 > > %TCPIP-I-NORMAL, timezone information verified > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet Loaded > > > > %RUN-S-PROC_ID, identification of created process is 00000211 > > %TCPIP-I-SETLOCAL, setting domain and/or local host > > %TCPIP-I-STARTCOMM, starting communication > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet Started > > > > %TCPIP-I-SETPROTP, setting protocol parameters > > %TCPIP-I-DEFINTE, defining interfaces > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Created INTERnet interface: QE0 > > > > %TCPIP-I-STARTNAME, starting name service > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% > > Message from user Proxy Server on FORD > > Loading proxy server image TCPIP$PROXY_SERVICES > > > > %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed > > %TCPIP-E-PROXYERROR, error processing proxy request > > -TCPIP-W-NORECORD, information not found > > -RMS-E-RNF, record not found > > %TCPIP-E-PROXYERROR, error processing proxy request > > -TCPIP-W-NORECORD, information not found > > -RMS-E-RNF, record not found > > %TCPIP-I-LOADSERV, loading TCPIP server proxy information > > %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records > > -TCPIP-I-SERVSKIP, skipped 0 communication proxy records > > -TCPIP-I-SERVTOTAL, total of 0 proxy records read > > %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Activate FTP Server > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP NOLISTEN Process creation success: Service - FTP > > > > %TCPIP-S-STARTDONE, TCPIP$FTP startup completed > > %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% > > Message from user PWIPdriver on FORD > > > > PWIPdriver successfully started. > > > > %RUN-S-PROC_ID, identification of created process is 00000213 > > %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Activate TELNET Server > > > > %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed > > %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 > 18:45:50.33 > > > > %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: > > %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: > > %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 > > SYSTEM job terminated at 4-NOV-2013 18:45:53.04 > > > > Accounting information: > > Buffered I/O count: 2340 Peak working set size: > 1821 > > Direct I/O count: 866 Peak page file size: > 8473 > > Page faults: 12611 Mounted volumes: > 2 > > Charged CPU time: 0 00:00:49.40 Elapsed time: 0 > 00:01:01.11 > > > > Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 > > > > After I login > > > > > > On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > Hi Priya, > > > > I was looking for the output of “SHOW VERSION” from the “sim> “ prompt. > The “SHOW VERSION” output from the “>>> “ prompt is the version of the VAX > console ROM. The “sim>” Version information describes the simulator’s > capabilities. > > > > From the simulator startup message I can see you’re running simh V3.9. > > > > Please download and build the source from > https://github.com/simh/simh/archive/master.zip > > > > You should just be able to unzip the file and build the vax simulator with > “make vax”. > > > > The “messages you get when you run the simulator” include an error > message. It would be useful to see what command caused that error. To do > so you can invoke the simulator with the “-v” command switch. > > > > If this doesn’t help, then the output produced when you invoked the “make > vax” command to build the simulator will be useful. > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Monday, November 04, 2013 4:50 AM > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > I'm using fedora 18 as the host. > > *This is the message i get when i run the simulator :* > > > > VAX simulator V3.9-0 > > NVR: buffering file in memory > > RQ: unit is read only > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > > > > > KA655-B V5.3, VMB 2.7 > > Performing normal system tests. > > 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. > > 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. > > 08..07..06..05..04..03.. > > Tests completed. > > Loading system software. > > (BOOT/R5:0 EXIT > > > > > > > > 2.. > > ?41 DEVASSIGN, EXIT > > ?06 HLT INST > > PC = 00000C1A > > Failure. > > >>>show version > > KA655-B V5.3, VMB 2.7 > > > > *This is the vax.ini file :* > > > > ; > > ; Load CPU microcode > > load -r /usr/local/vax/data/ka655x.bin > > ; > > ; Attach non-volatile RAM to a file > > attach nvr /usr/local/vax/data/nvram.bin > > ; > > ; This virtual machine has 64M memory > > set cpu 64m > > ; > > ; Define disk drive types. RA92 is largest-supported VAX drive. > > set rq0 ra92 > > set rq1 ra92 > > set rq2 ra92 > > set rq3 cdrom > > ; > > ; Attach defined drives to local files > > attach rq0 /usr/local/vax/data/d0.dsk > > attach rq1 /usr/local/vax/data/d1.dsk > > attach rq2 /usr/local/vax/data/d2.dsk > > ; > > ; Attach the CD-ROM to its file (read-only) > > attach -r rq3 /usr/local/vax/data/cd.iso > > ; > > ; Disable unused devices. It's also possible to disable individual devices, > > ; using a construction like "set rq2 disable" if desired. > > ; > > set rl disable > > set ts disable > > ; > > ; Attach Ethernet to a network interface > > set XQ mac=08-00-2B-AC-AC-B1 > > set XQ type=DELQA > > attach XQ em1 > > ; > > ;Uncomment the line below to enable auto-boot > > dep bdr 0 > > ; > > ;Choose one of the following lines.SET CPU CONHALT returns control to the > > ; VAX console monitor on a halt event (where behavior will be further > > ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will > > ; cause the simulator to get control instead. > > set cpu conhalt > > ;set cpu simhalt > > ; > > ;Now start the emulator > > boot cpu > > ; > > ; Exit the simulator > > exit > > > > Regards, > > Priya > > > > On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > > The output you sent seems to indicate that your problem isn't with > telnet, > > but with the guest not having networking at all (configuring the network > > inside simh alone doesn't do much). > > > > What host OS are you doing this on? > > What does your host networking stack look like? > > Can you show your simh configuration file? > > Also include the output of SHOW VERSION from within the simulator you are > using... > > > > Regards, > > > > > > Lennert > > > > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > > Hi, > > > I'm new to openvms and simh. I installed open vms 7.3 and have > > configured > > > tcpip too. > > > I want to connect to other hosts to test my tcpip. > > > $ telnet 192.168.0.37 > > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > $ ucx > > > TCPIP> ping 192.168.0.37 > > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > > ----192.168.0.37 PING Statistics---- > > > 4 packets transmitted, 0 packets received, 100% packet loss > > > %SYSTEM-F-TIMEOUT, device timeout > > > I'm not able to understand where I went wrong. > > > Thanks, > > > Priya > > > > > _______________________________________________ > > > Simh mailing list > > > Simh at trailing-edge.com > > > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Tue Nov 5 06:33:31 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Tue, 5 Nov 2013 03:33:31 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C1@REDROOF2.alohasunset.com> Hi Priya, Looks good so far. You should be able to run with the vax binary in BIN/vax and the configuration file you've already got. I would initially comment out the "dep bdr 0" and boot manually until you get things fully working and at the >>> prompt type "SET BOOT DUA0:" to set your autoboot device in the NVRAM. Meanwhile, to verify your network configuration, invoke the simulator and hit ^E to get to a sim> prompt and enter the following commands: sim> SHOW ETHERNET This will list the available network devices which libpcap can connect to. Not all of them will work with simh, but the one which is your wired network connection should be fully usable. If you still have problems send back the output of ^E sim> SHOW VERSION - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Tuesday, November 05, 2013 2:01 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hi, I built the vax as told : $ make vax lib paths are: /lib/ /lib/sse2/ /usr/lib/atlas/ /usr/lib/dyninst/ /usr/lib/llvm/ /usr/lib/mysql/ /usr/lib/tcl8.5/ /usr/lib/tracker-0.14/ /usr/lib/xulrunner/ using libm: /lib//libm.so using librt: /lib//librt.so using libpthread: /lib//libpthread.so /usr/include/pthread.h using libdl: /lib//libdl.so /usr/include/dlfcn.h using libpcap: /usr/include/pcap.h *** Warning *** *** Warning *** vax Simulator are being built with *** Warning *** minimal libpcap networking support *** Warning *** *** Warning *** Simulators on your Linux platform can also be built with *** Warning *** extended Ethernet networking support by using VDE Ethernet. *** Warning *** *** Warning *** To build simulator(s) with extended networking support you *** Warning *** should read 0readme_ethernet.txt and follow the instructions *** Warning *** regarding the needed libvdeplug components for your Linux *** Warning *** platform *** Warning *** *** *** vax Simulator being built with: *** - compiler optimizations and no debugging support. GCC Version: 4.7.2. *** - dynamic networking support using Linux provided libpcap components. *** *** git commit id is 32b8f063620db62213151f18403fcd9c02fae97f. *** mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB sim_BuildROMs.c -o BIN/BuildROMs BIN/BuildROMs rm -f BIN/BuildROMs mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB VAX/vax_cpu.c VAX/vax_cpu1.c VAX/vax_fpa.c VAX/vax_io.c VAX/vax_cis.c VAX/vax_octa.c VAX/vax_cmode.c VAX/vax_mmu.c VAX/vax_stddev.c VAX/vax_sysdev.c VAX/vax_sys.c VAX/vax_syscm.c VAX/vax_syslist.c PDP11/pdp11_rl.c PDP11/pdp11_rq.c PDP11/pdp11_ts.c PDP11/pdp11_dz.c PDP11/pdp11_lp.c PDP11/pdp11_tq.c PDP11/pdp11_xq.c PDP11/pdp11_vh.c PDP11/pdp11_cr.c PDP11/pdp11_io_lib.c scp.c sim_console.c sim_fio.c sim_timer.c sim_sock.c sim_tmxr.c sim_ether.c sim_tape.c sim_disk.c sim_serial.c sim_video.c -DVM_VAX -DUSE_INT64 -DUSE_ADDR64 -I VAX -I PDP11 -DUSE_SHARED -I/usr/include/ -DUSE_TAP_NETWORK -o BIN/microvax3900 -lm -lrt -lpthread -ldl cp BIN/microvax3900 BIN/vax [root at localhost simh-master]# What should I do after this? Create a vax.ini file ? - Priya On Mon, Nov 4, 2013 at 7:13 PM, Mark Pizzolato - Info Comm > wrote: >From what you've provided, I can't really tell EXACTLY what simulator you are running or how it was built or what it thinks is its capabilities are. The latest source is the most supportable and the build (makefile) tells us many things. Phillip Wherry wrote the instructions you are followed 9 years ago. Things have evolved since that time and become much smoother. You are getting the "BOOT/R5:0 EXIT" message since you have the system setup to autoboot (BDR set to 0) but your NVRAM doesn't yet specify a default boot device. This is NOT related to the network issues. Please build the latest source and if what you then need to do isn't obvious, then we can explore further. The total build instructions should be: $ wget https://github.com/simh/simh/archive/master.zip $ unzip simh-master.zip $ cd simh-master $ make vax As I said, if the simulator doesn't work correctly for you then the output produced during the above make will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 5:31 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I have followed steps from http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the simulator, earlier I was having a problem while starting TCP/IP, but I solved that by attaching the interface type in vax.ini file, Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 I don't think I have to build it again unless of course that is the only solution to make this work. I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, Please check this, VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 >>>boot dua0 (BOOT/R5:0 DUA0 2.. -DUA0 1..0.. %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id = 0 %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. $! Copyright 2001 Compaq Computer Corporation. %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 %RUN-S-PROC_ID, identification of created process is 00000206 %DCL-S-SPAWNED, process SYSTEM_1 spawned %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% Operator _FORD$OPA0: has been enabled, username SYSTEM %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% Operator status for operator _FORD$OPA0: CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% Logfile has been initialized by operator _FORD$OPA0: Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-SERVERSTARTINGU, security server starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% Message from user SYSTEM on FORD %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager Startup processing continuing... %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% Message from user SYSTEM on FORD Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) %RMS-E-FNF, file not found TP server process waiting %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% Message from user AUDIT$SERVER on FORD Security alarm (SECURITY) and security audit (SECURITY) on FORD, system id: 1025 Auditable event: Audit server starting up Event time: 4-NOV-2013 18:45:18.58 PID: 00000203 Username: SYSTEM %STARTUP-I-AUDITCONTINUE, audit server initialization complete The OpenVMS VAX system is now executing the site-specific startup commands. %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 %TCPIP-I-NORMAL, timezone information verified %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Loaded %RUN-S-PROC_ID, identification of created process is 00000211 %TCPIP-I-SETLOCAL, setting domain and/or local host %TCPIP-I-STARTCOMM, starting communication %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Started %TCPIP-I-SETPROTP, setting protocol parameters %TCPIP-I-DEFINTE, defining interfaces %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Created INTERnet interface: QE0 %TCPIP-I-STARTNAME, starting name service %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% Message from user Proxy Server on FORD Loading proxy server image TCPIP$PROXY_SERVICES %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-I-LOADSERV, loading TCPIP server proxy information %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records -TCPIP-I-SERVSKIP, skipped 0 communication proxy records -TCPIP-I-SERVTOTAL, total of 0 proxy records read %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate FTP Server %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP NOLISTEN Process creation success: Service - FTP %TCPIP-S-STARTDONE, TCPIP$FTP startup completed %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% Message from user PWIPdriver on FORD PWIPdriver successfully started. %RUN-S-PROC_ID, identification of created process is 00000213 %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate TELNET Server %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 18:45:50.33 %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 SYSTEM job terminated at 4-NOV-2013 18:45:53.04 Accounting information: Buffered I/O count: 2340 Peak working set size: 1821 Direct I/O count: 866 Peak page file size: 8473 Page faults: 12611 Mounted volumes: 2 Charged CPU time: 0 00:00:49.40 Elapsed time: 0 00:01:01.11 Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 After I login On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm > wrote: Hi Priya, I was looking for the output of "SHOW VERSION" from the "sim> " prompt. The "SHOW VERSION" output from the ">>> " prompt is the version of the VAX console ROM. The "sim>" Version information describes the simulator's capabilities. >From the simulator startup message I can see you're running simh V3.9. Please download and build the source from https://github.com/simh/simh/archive/master.zip You should just be able to unzip the file and build the vax simulator with "make vax". The "messages you get when you run the simulator" include an error message. It would be useful to see what command caused that error. To do so you can invoke the simulator with the "-v" command switch. If this doesn't help, then the output produced when you invoked the "make vax" command to build the simulator will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 4:50 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I'm using fedora 18 as the host. This is the message i get when i run the simulator : VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 This is the vax.ini file : ; ; Load CPU microcode load -r /usr/local/vax/data/ka655x.bin ; ; Attach non-volatile RAM to a file attach nvr /usr/local/vax/data/nvram.bin ; ; This virtual machine has 64M memory set cpu 64m ; ; Define disk drive types. RA92 is largest-supported VAX drive. set rq0 ra92 set rq1 ra92 set rq2 ra92 set rq3 cdrom ; ; Attach defined drives to local files attach rq0 /usr/local/vax/data/d0.dsk attach rq1 /usr/local/vax/data/d1.dsk attach rq2 /usr/local/vax/data/d2.dsk ; ; Attach the CD-ROM to its file (read-only) attach -r rq3 /usr/local/vax/data/cd.iso ; ; Disable unused devices. It's also possible to disable individual devices, ; using a construction like "set rq2 disable" if desired. ; set rl disable set ts disable ; ; Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 ; ;Uncomment the line below to enable auto-boot dep bdr 0 ; ;Choose one of the following lines.SET CPU CONHALT returns control to the ; VAX console monitor on a halt event (where behavior will be further ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will ; cause the simulator to get control instead. set cpu conhalt ;set cpu simhalt ; ;Now start the emulator boot cpu ; ; Exit the simulator exit Regards, Priya On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm > wrote: On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > The output you sent seems to indicate that your problem isn't with telnet, > but with the guest not having networking at all (configuring the network > inside simh alone doesn't do much). > > What host OS are you doing this on? > What does your host networking stack look like? > Can you show your simh configuration file? Also include the output of SHOW VERSION from within the simulator you are using... > Regards, > > > Lennert > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > Hi, > > I'm new to openvms and simh. I installed open vms 7.3 and have > configured > > tcpip too. > > I want to connect to other hosts to test my tcpip. > > $ telnet 192.168.0.37 > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > $ ucx > > TCPIP> ping 192.168.0.37 > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > ----192.168.0.37 PING Statistics---- > > 4 packets transmitted, 0 packets received, 100% packet loss > > %SYSTEM-F-TIMEOUT, device timeout > > I'm not able to understand where I went wrong. > > Thanks, > > Priya > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh -------------- next part -------------- An HTML attachment was scrubbed... URL: From gerard.calliet at pia-sofer.fr Tue Nov 5 06:55:58 2013 From: gerard.calliet at pia-sofer.fr (gerard.calliet at pia-sofer.fr) Date: Tue, 05 Nov 2013 12:55:58 +0100 Subject: [Simh] how to get eth connexion In-Reply-To: <5277773D.5050504@yahoo.fr> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> <5277773D.5050504@yahoo.fr> Message-ID: Hello, Thanks for the answers. It works, now. Just to get some understanding : 1) we need two different MAC address : why ? because the distinction is at the mac level ? 2) I saw we need at least one ip host connexion alive to have a connexion for simh - I am on Windows with wincap -. Again, why ? Thanks. Gerard Calliet Le 2013-11-04 11:30, prenouvel a écrit : > Hi Gérard, > > What does the command XQ show eth returns ? > > You try with Wifi, does it works with a RJ45 cable ? > > Didn't you deactivate an ethernet connection recently oh the PC host > ? > > Regards. > > Patrick. > > Le 04/11/2013 07:49, Gérard Calliet a écrit : > >> Hi Mark, >> >> Thanks for your answer. >> >> I tried the simh 4.0 beta. It's still not working. >> I join show ethernet result, ipconfig/all result, my ucx config, >> the init file. >> I choosed the right eth (eth0 is the active wifi interface on >> windows). I gave its mac address as interf mac address in the simh >> init file. >> >> I don't understand where is the problem. I am just a beginner on >> simh, so I could have done some error, but I don't see what it is. >> >> Gérard Calliet >> pia-sofer >> >> Le 04/11/2013 00:37, Mark Pizzolato - Info Comm a écrit : >> >>> On Sunday, November 03, 2013 at 2:47 PM, Gérard Calliet wrote: >>> >>>> Hello, >>>> >>>> I am a beginer on simh. I have tried a lot of thing to get >>>> connected by >>>> ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms 5.5 ... / >>>> ucx 4.0 I have >>>> instaled wincap on a Windows Seven I cannot get any connexion >>> Hi Gérard, >>> >>> Try using the latest simh binaries from >>> >> > > https://github.com/simh/Win32-Development-Binaries/blob/Win32-Development-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip >>> [1] >>> >>> Alternatively, if you've got a Visual Studio environment (or >>> MinGW) available, you can build from the latest sources available >>> from: https://github.com/simh/simh/archive/master.zip [2] >>> >>> If you are still having problems, provide the output of "SHOW >>> ETHERNET" from a "sim>" prompt along with the output of >>> IPCONFIG/ALL from a Windows command prompt, and explain what makes >>> you think that the ethernet is not working. >>> >>> Good Luck. >>> >>> - Mark >> >> _______________________________________________ >> Simh mailing list >> Simh at trailing-edge.com >> http://mailman.trailing-edge.com/mailman/listinfo/simh > > ------------------------- > > [3] > > Ce courrier électronique ne contient aucun virus ou logiciel > malveillant parce que la protection Antivirus avast! [4] est active. > > > > Links: > ------ > [1] > > https://github.com/simh/Win32-Development-Binaries/blob/Win32-Development-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip > [2] https://github.com/simh/simh/archive/master.zip > [3] http://www.avast.com/ > [4] http://www.avast.com/ From priyachinc at gmail.com Tue Nov 5 07:21:51 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Tue, 5 Nov 2013 17:51:51 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C1@REDROOF2.alohasunset.com> Message-ID: Hi, show the version and ethernet connections: *sim> show ethernet* ETH devices: eth0 em1 (No description available) eth1 tap:tapN (Integrated Tun/Tap support) Open ETH Devices: XQ eth0 (No description available) Ethernet Device: Name: em1 Reflections: 0 Self Loopbacks Sent: 2 Self Loopbacks Rcvd: 0 Host NIC Address: 00:0B:CD:B2:17:D8 Packets Sent: 5 Asynch Interrupts: Disabled Read Queue: Count: 0 Read Queue: High: 0 Read Queue: Loss: 0 Peak Write Queue Size: 1 *sim> SHOW VERSION* MicroVAX 3900 simulator V4.0-0 Beta Simulator Framework Capabilities: 64b data 64b addresses Ethernet support Idle/Throttling support is available Virtual Hard Disk (VHD) support RAW disk and CD/DVD ROM support Asynchronous I/O support Host Platform: Compiler: GCC 4.7.2 20121109 (Red Hat 4.7.2-8) Simulator Compiled: Nov 5 2013 at 15:19:27 Memory Access: Little Endian Memory Pointer Size: 32 bits Large File (>2GB) support OS clock tick size: 2ms OS: Linux localhost.localdomain 3.6.10-4.fc18.i686.PAE #1 SMP Tue Dec 11 18:15:08 UTC 2012 i686 i686 i386 GNU/Linux git commit id: 32b8f063 and will I need *libpcap-devel distro *package to be installed ? -Priya On Tue, Nov 5, 2013 at 5:42 PM, priya chincholikar wrote: > Hi, > > Attached files show the version and ethernet connections. > > and will I need libpcap-devel distro package to be installed ? > > -Priya > > > > > On Tue, Nov 5, 2013 at 5:03 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > >> Hi Priya, >> >> >> >> Looks good so far. >> >> >> >> You should be able to run with the vax binary in BIN/vax and the >> configuration file you’ve already got. >> >> >> >> I would initially comment out the “dep bdr 0” and boot manually until you >> get things fully working and at the >>> prompt type “SET BOOT DUA0:” to set >> your autoboot device in the NVRAM. >> >> >> >> Meanwhile, to verify your network configuration, invoke the simulator and >> hit ^E to get to a sim> prompt and enter the following commands: >> >> >> >> sim> SHOW ETHERNET >> >> >> >> This will list the available network devices which libpcap can connect >> to. Not all of them will work with simh, but the one which is your wired >> network connection should be fully usable. >> >> >> >> If you still have problems send back the output of >> >> >> >> ^E >> >> sim> SHOW VERSION >> >> >> >> - Mark >> >> >> >> *From:* priya chincholikar [mailto:priyachinc at gmail.com] >> *Sent:* Tuesday, November 05, 2013 2:01 AM >> >> *To:* Mark Pizzolato - Info Comm >> *Cc:* Lennert Van Alboom; simh at trailing-edge.com >> *Subject:* Re: [Simh] Unable to telnet to other hosts >> >> >> >> Hi, >> >> I built the vax as told : >> >> >> >> * $ make vax* >> >> lib paths are: /lib/ /lib/sse2/ /usr/lib/atlas/ /usr/lib/dyninst/ >> /usr/lib/llvm/ /usr/lib/mysql/ /usr/lib/tcl8.5/ /usr/lib/tracker-0.14/ >> /usr/lib/xulrunner/ >> >> using libm: /lib//libm.so >> >> using librt: /lib//librt.so >> >> using libpthread: /lib//libpthread.so /usr/include/pthread.h >> >> using libdl: /lib//libdl.so /usr/include/dlfcn.h >> >> using libpcap: /usr/include/pcap.h >> >> *** Warning *** >> >> *** Warning *** vax Simulator are being built with >> >> *** Warning *** minimal libpcap networking support >> >> *** Warning *** >> >> *** Warning *** Simulators on your Linux platform can also be built with >> >> *** Warning *** extended Ethernet networking support by using VDE >> Ethernet. >> >> *** Warning *** >> >> *** Warning *** To build simulator(s) with extended networking support you >> >> *** Warning *** should read 0readme_ethernet.txt and follow the >> instructions >> >> *** Warning *** regarding the needed libvdeplug components for your Linux >> >> *** Warning *** platform >> >> *** Warning *** >> >> *** >> >> *** vax Simulator being built with: >> >> *** - compiler optimizations and no debugging support. GCC Version: 4.7.2. >> >> *** - dynamic networking support using Linux provided libpcap components. >> >> *** >> >> *** git commit id is 32b8f063620db62213151f18403fcd9c02fae97f. >> >> *** >> >> mkdir -p BIN >> >> gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions >> -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone >> -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result >> -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f >> -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD >> -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB sim_BuildROMs.c -o >> BIN/BuildROMs >> >> BIN/BuildROMs >> >> rm -f BIN/BuildROMs >> >> mkdir -p BIN >> >> gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions >> -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone >> -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result >> -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f >> -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD >> -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB VAX/vax_cpu.c VAX/vax_cpu1.c >> VAX/vax_fpa.c VAX/vax_io.c VAX/vax_cis.c VAX/vax_octa.c VAX/vax_cmode.c >> VAX/vax_mmu.c VAX/vax_stddev.c VAX/vax_sysdev.c VAX/vax_sys.c >> VAX/vax_syscm.c VAX/vax_syslist.c PDP11/pdp11_rl.c PDP11/pdp11_rq.c >> PDP11/pdp11_ts.c PDP11/pdp11_dz.c PDP11/pdp11_lp.c PDP11/pdp11_tq.c >> PDP11/pdp11_xq.c PDP11/pdp11_vh.c PDP11/pdp11_cr.c PDP11/pdp11_io_lib.c >> scp.c sim_console.c sim_fio.c sim_timer.c sim_sock.c sim_tmxr.c sim_ether.c >> sim_tape.c sim_disk.c sim_serial.c sim_video.c -DVM_VAX -DUSE_INT64 >> -DUSE_ADDR64 -I VAX -I PDP11 -DUSE_SHARED -I/usr/include/ -DUSE_TAP_NETWORK >> -o BIN/microvax3900 -lm -lrt -lpthread -ldl >> >> >> >> cp BIN/microvax3900 BIN/vax >> >> [root at localhost simh-master]# >> >> >> >> What should I do after this? Create a vax.ini file ? >> >> >> >> - Priya >> >> >> >> On Mon, Nov 4, 2013 at 7:13 PM, Mark Pizzolato - Info Comm < >> Mark at infocomm.com> wrote: >> >> From what you’ve provided, I can’t really tell EXACTLY what simulator you >> are running or how it was built or what it thinks is its capabilities are. >> The latest source is the most supportable and the build (makefile) tells us >> many things. Phillip Wherry wrote the instructions you are followed 9 >> years ago. Things have evolved since that time and become much smoother. >> >> >> >> You are getting the “BOOT/R5:0 EXIT” message since you have the system >> setup to autoboot (BDR set to 0) but your NVRAM doesn’t yet specify a >> default boot device. This is NOT related to the network issues. >> >> >> >> Please build the latest source and if what you then need to do isn’t >> obvious, then we can explore further. >> >> >> >> The total build instructions should be: >> >> $ wget https://github.com/simh/simh/archive/master.zip >> >> $ unzip simh-master.zip >> >> $ cd simh-master >> >> $ make vax >> >> >> >> As I said, if the simulator doesn’t work correctly for you then the >> output produced during the above make will be useful. >> >> >> >> - Mark >> >> >> >> *From:* priya chincholikar [mailto:priyachinc at gmail.com] >> *Sent:* Monday, November 04, 2013 5:31 AM >> *To:* Mark Pizzolato - Info Comm >> *Cc:* Lennert Van Alboom; simh at trailing-edge.com >> *Subject:* Re: [Simh] Unable to telnet to other hosts >> >> >> >> I have followed steps from >> http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the >> simulator, earlier I was having a problem while starting TCP/IP, but I >> solved that by attaching the interface type in vax.ini file, >> >> >> >> Attach Ethernet to a network interface >> >> set XQ mac=08-00-2B-AC-AC-B1 >> >> set XQ type=DELQA >> >> attach XQ em1 >> >> >> >> I don't think I have to build it again unless of course that is the only >> solution to make this work. >> >> >> >> I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, >> >> Please check this, >> >> >> >> VAX simulator V3.9-0 >> >> NVR: buffering file in memory >> >> RQ: unit is read only >> >> /usr/local/vax/bin/vax.ini> attach XQ em1 >> >> Command not allowed >> >> >> >> >> >> KA655-B V5.3, VMB 2.7 >> >> Performing normal system tests. >> >> 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. >> >> 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. >> >> 08..07..06..05..04..03.. >> >> Tests completed. >> >> Loading system software. >> >> (BOOT/R5:0 EXIT >> >> >> >> >> >> >> >> 2.. >> >> ?41 DEVASSIGN, EXIT >> >> ?06 HLT INST >> >> PC = 00000C1A >> >> Failure. >> >> >>>show version >> >> KA655-B V5.3, VMB 2.7 >> >> >>>boot dua0 >> >> (BOOT/R5:0 DUA0 >> >> >> >> >> >> >> >> 2.. >> >> -DUA0 >> >> 1..0.. >> >> >> >> >> >> %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk >> >> %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped >> >> %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk >> >> %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS >> >> OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version >> id = 0 >> >> %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. >> >> $! Copyright 2001 Compaq Computer Corporation. >> >> >> >> %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 >> >> %RUN-S-PROC_ID, identification of created process is 00000206 >> >> %DCL-S-SPAWNED, process SYSTEM_1 spawned >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% >> >> Operator _FORD$OPA0: has been enabled, username SYSTEM >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% >> >> Operator status for operator _FORD$OPA0: >> >> CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, >> SECURITY, >> >> LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, >> OPER10, >> >> OPER11, OPER12 >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% >> >> Logfile has been initialized by operator _FORD$OPA0: >> >> Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% >> >> Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 >> >> CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, >> SECURITY, >> >> LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, >> OPER10, >> >> OPER11, OPER12 >> >> >> >> %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% >> >> Message from user SYSTEM on FORD >> >> %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% >> >> Message from user SYSTEM on FORD >> >> %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% >> >> Message from user SYSTEM on FORD >> >> %SECSRV-I-SERVERSTARTINGU, security server starting up >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% >> >> Message from user SYSTEM on FORD >> >> %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now >> starting up >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% >> >> Message from user SYSTEM on FORD >> >> %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node >> >> -LICENSE-F-NOLICENSE, no license is active for this software product >> >> -LICENSE-I-SYSMGR, please see your system manager >> >> >> >> >> >> %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node >> >> -LICENSE-F-NOLICENSE, no license is active for this software product >> >> -LICENSE-I-SYSMGR, please see your system manager >> >> Startup processing continuing... >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% >> >> Message from user SYSTEM on FORD >> >> Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) >> >> %RMS-E-FNF, file not found >> >> TP server process waiting >> >> >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% >> >> Message from user AUDIT$SERVER on FORD >> >> Security alarm (SECURITY) and security audit (SECURITY) on FORD, system >> id: 1025 >> >> Auditable event: Audit server starting up >> >> Event time: 4-NOV-2013 18:45:18.58 >> >> PID: 00000203 >> >> Username: SYSTEM >> >> >> >> %STARTUP-I-AUDITCONTINUE, audit server initialization complete >> >> >> >> The OpenVMS VAX system is now executing the site-specific startup >> commands. >> >> >> >> >> >> %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 >> 18:45:27.15 >> >> %TCPIP-I-NORMAL, timezone information verified >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% >> >> Message from user INTERnet on FORD >> >> INTERnet Loaded >> >> >> >> %RUN-S-PROC_ID, identification of created process is 00000211 >> >> %TCPIP-I-SETLOCAL, setting domain and/or local host >> >> %TCPIP-I-STARTCOMM, starting communication >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% >> >> Message from user INTERnet on FORD >> >> INTERnet Started >> >> >> >> %TCPIP-I-SETPROTP, setting protocol parameters >> >> %TCPIP-I-DEFINTE, defining interfaces >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% >> >> Message from user INTERnet on FORD >> >> INTERnet ACP Created INTERnet interface: QE0 >> >> >> >> %TCPIP-I-STARTNAME, starting name service >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% >> >> Message from user Proxy Server on FORD >> >> Loading proxy server image TCPIP$PROXY_SERVICES >> >> >> >> %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed >> >> %TCPIP-E-PROXYERROR, error processing proxy request >> >> -TCPIP-W-NORECORD, information not found >> >> -RMS-E-RNF, record not found >> >> %TCPIP-E-PROXYERROR, error processing proxy request >> >> -TCPIP-W-NORECORD, information not found >> >> -RMS-E-RNF, record not found >> >> %TCPIP-I-LOADSERV, loading TCPIP server proxy information >> >> %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records >> >> -TCPIP-I-SERVSKIP, skipped 0 communication proxy records >> >> -TCPIP-I-SERVTOTAL, total of 0 proxy records read >> >> %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% >> >> Message from user INTERnet on FORD >> >> INTERnet ACP Activate FTP Server >> >> >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% >> >> Message from user INTERnet on FORD >> >> INTERnet ACP NOLISTEN Process creation success: Service - FTP >> >> >> >> %TCPIP-S-STARTDONE, TCPIP$FTP startup completed >> >> %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% >> >> Message from user PWIPdriver on FORD >> >> >> >> PWIPdriver successfully started. >> >> >> >> %RUN-S-PROC_ID, identification of created process is 00000213 >> >> %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed >> >> %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% >> >> Message from user INTERnet on FORD >> >> INTERnet ACP Activate TELNET Server >> >> >> >> %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed >> >> %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 >> 18:45:50.33 >> >> >> >> %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: >> >> %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: >> >> %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 >> >> SYSTEM job terminated at 4-NOV-2013 18:45:53.04 >> >> >> >> Accounting information: >> >> Buffered I/O count: 2340 Peak working set size: >> 1821 >> >> Direct I/O count: 866 Peak page file size: >> 8473 >> >> Page faults: 12611 Mounted volumes: >> 2 >> >> Charged CPU time: 0 00:00:49.40 Elapsed time: 0 >> 00:01:01.11 >> >> >> >> Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 >> >> >> >> After I login >> >> >> >> >> >> On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm < >> Mark at infocomm.com> wrote: >> >> Hi Priya, >> >> >> >> I was looking for the output of “SHOW VERSION” from the “sim> “ prompt. >> The “SHOW VERSION” output from the “>>> “ prompt is the version of the VAX >> console ROM. The “sim>” Version information describes the simulator’s >> capabilities. >> >> >> >> From the simulator startup message I can see you’re running simh V3.9. >> >> >> >> Please download and build the source from >> https://github.com/simh/simh/archive/master.zip >> >> >> >> You should just be able to unzip the file and build the vax simulator >> with “make vax”. >> >> >> >> The “messages you get when you run the simulator” include an error >> message. It would be useful to see what command caused that error. To do >> so you can invoke the simulator with the “-v” command switch. >> >> >> >> If this doesn’t help, then the output produced when you invoked the “make >> vax” command to build the simulator will be useful. >> >> >> >> - Mark >> >> >> >> *From:* priya chincholikar [mailto:priyachinc at gmail.com] >> *Sent:* Monday, November 04, 2013 4:50 AM >> *To:* Mark Pizzolato - Info Comm >> *Cc:* Lennert Van Alboom; simh at trailing-edge.com >> *Subject:* Re: [Simh] Unable to telnet to other hosts >> >> >> >> I'm using fedora 18 as the host. >> >> *This is the message i get when i run the simulator :* >> >> >> >> VAX simulator V3.9-0 >> >> NVR: buffering file in memory >> >> RQ: unit is read only >> >> /usr/local/vax/bin/vax.ini> attach XQ em1 >> >> Command not allowed >> >> >> >> >> >> KA655-B V5.3, VMB 2.7 >> >> Performing normal system tests. >> >> 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. >> >> 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. >> >> 08..07..06..05..04..03.. >> >> Tests completed. >> >> Loading system software. >> >> (BOOT/R5:0 EXIT >> >> >> >> >> >> >> >> 2.. >> >> ?41 DEVASSIGN, EXIT >> >> ?06 HLT INST >> >> PC = 00000C1A >> >> Failure. >> >> >>>show version >> >> KA655-B V5.3, VMB 2.7 >> >> >> >> *This is the vax.ini file :* >> >> >> >> ; >> >> ; Load CPU microcode >> >> load -r /usr/local/vax/data/ka655x.bin >> >> ; >> >> ; Attach non-volatile RAM to a file >> >> attach nvr /usr/local/vax/data/nvram.bin >> >> ; >> >> ; This virtual machine has 64M memory >> >> set cpu 64m >> >> ; >> >> ; Define disk drive types. RA92 is largest-supported VAX drive. >> >> set rq0 ra92 >> >> set rq1 ra92 >> >> set rq2 ra92 >> >> set rq3 cdrom >> >> ; >> >> ; Attach defined drives to local files >> >> attach rq0 /usr/local/vax/data/d0.dsk >> >> attach rq1 /usr/local/vax/data/d1.dsk >> >> attach rq2 /usr/local/vax/data/d2.dsk >> >> ; >> >> ; Attach the CD-ROM to its file (read-only) >> >> attach -r rq3 /usr/local/vax/data/cd.iso >> >> ; >> >> ; Disable unused devices. It's also possible to disable individual >> devices, >> >> ; using a construction like "set rq2 disable" if desired. >> >> ; >> >> set rl disable >> >> set ts disable >> >> ; >> >> ; Attach Ethernet to a network interface >> >> set XQ mac=08-00-2B-AC-AC-B1 >> >> set XQ type=DELQA >> >> attach XQ em1 >> >> ; >> >> ;Uncomment the line below to enable auto-boot >> >> dep bdr 0 >> >> ; >> >> ;Choose one of the following lines.SET CPU CONHALT returns control to the >> >> ; VAX console monitor on a halt event (where behavior will be further >> >> ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will >> >> ; cause the simulator to get control instead. >> >> set cpu conhalt >> >> ;set cpu simhalt >> >> ; >> >> ;Now start the emulator >> >> boot cpu >> >> ; >> >> ; Exit the simulator >> >> exit >> >> >> >> Regards, >> >> Priya >> >> >> >> On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm < >> Mark at infocomm.com> wrote: >> >> On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: >> > The output you sent seems to indicate that your problem isn't with >> telnet, >> > but with the guest not having networking at all (configuring the network >> > inside simh alone doesn't do much). >> > >> > What host OS are you doing this on? >> > What does your host networking stack look like? >> > Can you show your simh configuration file? >> >> Also include the output of SHOW VERSION from within the simulator you are >> using... >> >> >> > Regards, >> > >> > >> > Lennert >> > >> > >> > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: >> > > Hi, >> > > I'm new to openvms and simh. I installed open vms 7.3 and have >> > configured >> > > tcpip too. >> > > I want to connect to other hosts to test my tcpip. >> > > $ telnet 192.168.0.37 >> > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 >> > > -TCPIP-E-NO_RECOVERY, unexpected name server failure >> > > $ ucx >> > > TCPIP> ping 192.168.0.37 >> > > PING 192.168.0.37 (192.168.0.37): 56 data bytes >> > > ----192.168.0.37 PING Statistics---- >> > > 4 packets transmitted, 0 packets received, 100% packet loss >> > > %SYSTEM-F-TIMEOUT, device timeout >> > > I'm not able to understand where I went wrong. >> > > Thanks, >> > > Priya >> > >> > > _______________________________________________ >> > > Simh mailing list >> > > Simh at trailing-edge.com >> > > http://mailman.trailing-edge.com/mailman/listinfo/simh >> >> >> >> >> >> >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Tue Nov 5 07:30:29 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Tue, 5 Nov 2013 04:30:29 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C1@REDROOF2.alohasunset.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C3@REDROOF2.alohasunset.com> You do not need any additional libpcap distro, the make output AND the simulator "SHOW ETHERNET" output show that you already have a network capable simulator. The SHOW ETHERNET output now shows that you've successfully opened the network device (em1). As long as it is a wired Ethernet connection you should be good to go. By that, I mean once you've got a running operating system installed with IP network stack, you should be able to talk to OTHER systems on your LAN, but NOT to the host system. The attached image you sent earlier in this conversation shows your simulated system's IP address as 192.168.1.110, but you were attempting to PING an address of 192.168.0.37. Given the netmask of the simulator's interface, that should be on your LAN, however, does this really describe your LAN? What is the host Linux system's IP configuration: $ ifconfig $ route -n - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Tuesday, November 05, 2013 4:12 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hi, Attached files show the version and ethernet connections. and will I need libpcap-devel distro package to be installed ? -Priya On Tue, Nov 5, 2013 at 5:03 PM, Mark Pizzolato - Info Comm > wrote: Hi Priya, Looks good so far. You should be able to run with the vax binary in BIN/vax and the configuration file you've already got. I would initially comment out the "dep bdr 0" and boot manually until you get things fully working and at the >>> prompt type "SET BOOT DUA0:" to set your autoboot device in the NVRAM. Meanwhile, to verify your network configuration, invoke the simulator and hit ^E to get to a sim> prompt and enter the following commands: sim> SHOW ETHERNET This will list the available network devices which libpcap can connect to. Not all of them will work with simh, but the one which is your wired network connection should be fully usable. If you still have problems send back the output of ^E sim> SHOW VERSION - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Tuesday, November 05, 2013 2:01 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hi, I built the vax as told : $ make vax lib paths are: /lib/ /lib/sse2/ /usr/lib/atlas/ /usr/lib/dyninst/ /usr/lib/llvm/ /usr/lib/mysql/ /usr/lib/tcl8.5/ /usr/lib/tracker-0.14/ /usr/lib/xulrunner/ using libm: /lib//libm.so using librt: /lib//librt.so using libpthread: /lib//libpthread.so /usr/include/pthread.h using libdl: /lib//libdl.so /usr/include/dlfcn.h using libpcap: /usr/include/pcap.h *** Warning *** *** Warning *** vax Simulator are being built with *** Warning *** minimal libpcap networking support *** Warning *** *** Warning *** Simulators on your Linux platform can also be built with *** Warning *** extended Ethernet networking support by using VDE Ethernet. *** Warning *** *** Warning *** To build simulator(s) with extended networking support you *** Warning *** should read 0readme_ethernet.txt and follow the instructions *** Warning *** regarding the needed libvdeplug components for your Linux *** Warning *** platform *** Warning *** *** *** vax Simulator being built with: *** - compiler optimizations and no debugging support. GCC Version: 4.7.2. *** - dynamic networking support using Linux provided libpcap components. *** *** git commit id is 32b8f063620db62213151f18403fcd9c02fae97f. *** mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB sim_BuildROMs.c -o BIN/BuildROMs BIN/BuildROMs rm -f BIN/BuildROMs mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB VAX/vax_cpu.c VAX/vax_cpu1.c VAX/vax_fpa.c VAX/vax_io.c VAX/vax_cis.c VAX/vax_octa.c VAX/vax_cmode.c VAX/vax_mmu.c VAX/vax_stddev.c VAX/vax_sysdev.c VAX/vax_sys.c VAX/vax_syscm.c VAX/vax_syslist.c PDP11/pdp11_rl.c PDP11/pdp11_rq.c PDP11/pdp11_ts.c PDP11/pdp11_dz.c PDP11/pdp11_lp.c PDP11/pdp11_tq.c PDP11/pdp11_xq.c PDP11/pdp11_vh.c PDP11/pdp11_cr.c PDP11/pdp11_io_lib.c scp.c sim_console.c sim_fio.c sim_timer.c sim_sock.c sim_tmxr.c sim_ether.c sim_tape.c sim_disk.c sim_serial.c sim_video.c -DVM_VAX -DUSE_INT64 -DUSE_ADDR64 -I VAX -I PDP11 -DUSE_SHARED -I/usr/include/ -DUSE_TAP_NETWORK -o BIN/microvax3900 -lm -lrt -lpthread -ldl cp BIN/microvax3900 BIN/vax [root at localhost simh-master]# What should I do after this? Create a vax.ini file ? - Priya On Mon, Nov 4, 2013 at 7:13 PM, Mark Pizzolato - Info Comm > wrote: >From what you've provided, I can't really tell EXACTLY what simulator you are running or how it was built or what it thinks is its capabilities are. The latest source is the most supportable and the build (makefile) tells us many things. Phillip Wherry wrote the instructions you are followed 9 years ago. Things have evolved since that time and become much smoother. You are getting the "BOOT/R5:0 EXIT" message since you have the system setup to autoboot (BDR set to 0) but your NVRAM doesn't yet specify a default boot device. This is NOT related to the network issues. Please build the latest source and if what you then need to do isn't obvious, then we can explore further. The total build instructions should be: $ wget https://github.com/simh/simh/archive/master.zip $ unzip simh-master.zip $ cd simh-master $ make vax As I said, if the simulator doesn't work correctly for you then the output produced during the above make will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 5:31 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I have followed steps from http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the simulator, earlier I was having a problem while starting TCP/IP, but I solved that by attaching the interface type in vax.ini file, Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 I don't think I have to build it again unless of course that is the only solution to make this work. I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, Please check this, VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 >>>boot dua0 (BOOT/R5:0 DUA0 2.. -DUA0 1..0.. %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id = 0 %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. $! Copyright 2001 Compaq Computer Corporation. %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 %RUN-S-PROC_ID, identification of created process is 00000206 %DCL-S-SPAWNED, process SYSTEM_1 spawned %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% Operator _FORD$OPA0: has been enabled, username SYSTEM %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% Operator status for operator _FORD$OPA0: CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% Logfile has been initialized by operator _FORD$OPA0: Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-SERVERSTARTINGU, security server starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% Message from user SYSTEM on FORD %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager Startup processing continuing... %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% Message from user SYSTEM on FORD Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) %RMS-E-FNF, file not found TP server process waiting %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% Message from user AUDIT$SERVER on FORD Security alarm (SECURITY) and security audit (SECURITY) on FORD, system id: 1025 Auditable event: Audit server starting up Event time: 4-NOV-2013 18:45:18.58 PID: 00000203 Username: SYSTEM %STARTUP-I-AUDITCONTINUE, audit server initialization complete The OpenVMS VAX system is now executing the site-specific startup commands. %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 %TCPIP-I-NORMAL, timezone information verified %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Loaded %RUN-S-PROC_ID, identification of created process is 00000211 %TCPIP-I-SETLOCAL, setting domain and/or local host %TCPIP-I-STARTCOMM, starting communication %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Started %TCPIP-I-SETPROTP, setting protocol parameters %TCPIP-I-DEFINTE, defining interfaces %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Created INTERnet interface: QE0 %TCPIP-I-STARTNAME, starting name service %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% Message from user Proxy Server on FORD Loading proxy server image TCPIP$PROXY_SERVICES %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-I-LOADSERV, loading TCPIP server proxy information %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records -TCPIP-I-SERVSKIP, skipped 0 communication proxy records -TCPIP-I-SERVTOTAL, total of 0 proxy records read %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate FTP Server %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP NOLISTEN Process creation success: Service - FTP %TCPIP-S-STARTDONE, TCPIP$FTP startup completed %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% Message from user PWIPdriver on FORD PWIPdriver successfully started. %RUN-S-PROC_ID, identification of created process is 00000213 %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate TELNET Server %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 18:45:50.33 %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 SYSTEM job terminated at 4-NOV-2013 18:45:53.04 Accounting information: Buffered I/O count: 2340 Peak working set size: 1821 Direct I/O count: 866 Peak page file size: 8473 Page faults: 12611 Mounted volumes: 2 Charged CPU time: 0 00:00:49.40 Elapsed time: 0 00:01:01.11 Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 After I login On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm > wrote: Hi Priya, I was looking for the output of "SHOW VERSION" from the "sim> " prompt. The "SHOW VERSION" output from the ">>> " prompt is the version of the VAX console ROM. The "sim>" Version information describes the simulator's capabilities. >From the simulator startup message I can see you're running simh V3.9. Please download and build the source from https://github.com/simh/simh/archive/master.zip You should just be able to unzip the file and build the vax simulator with "make vax". The "messages you get when you run the simulator" include an error message. It would be useful to see what command caused that error. To do so you can invoke the simulator with the "-v" command switch. If this doesn't help, then the output produced when you invoked the "make vax" command to build the simulator will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 4:50 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I'm using fedora 18 as the host. This is the message i get when i run the simulator : VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 This is the vax.ini file : ; ; Load CPU microcode load -r /usr/local/vax/data/ka655x.bin ; ; Attach non-volatile RAM to a file attach nvr /usr/local/vax/data/nvram.bin ; ; This virtual machine has 64M memory set cpu 64m ; ; Define disk drive types. RA92 is largest-supported VAX drive. set rq0 ra92 set rq1 ra92 set rq2 ra92 set rq3 cdrom ; ; Attach defined drives to local files attach rq0 /usr/local/vax/data/d0.dsk attach rq1 /usr/local/vax/data/d1.dsk attach rq2 /usr/local/vax/data/d2.dsk ; ; Attach the CD-ROM to its file (read-only) attach -r rq3 /usr/local/vax/data/cd.iso ; ; Disable unused devices. It's also possible to disable individual devices, ; using a construction like "set rq2 disable" if desired. ; set rl disable set ts disable ; ; Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 ; ;Uncomment the line below to enable auto-boot dep bdr 0 ; ;Choose one of the following lines.SET CPU CONHALT returns control to the ; VAX console monitor on a halt event (where behavior will be further ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will ; cause the simulator to get control instead. set cpu conhalt ;set cpu simhalt ; ;Now start the emulator boot cpu ; ; Exit the simulator exit Regards, Priya On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm > wrote: On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > The output you sent seems to indicate that your problem isn't with telnet, > but with the guest not having networking at all (configuring the network > inside simh alone doesn't do much). > > What host OS are you doing this on? > What does your host networking stack look like? > Can you show your simh configuration file? Also include the output of SHOW VERSION from within the simulator you are using... > Regards, > > > Lennert > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > Hi, > > I'm new to openvms and simh. I installed open vms 7.3 and have > configured > > tcpip too. > > I want to connect to other hosts to test my tcpip. > > $ telnet 192.168.0.37 > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > $ ucx > > TCPIP> ping 192.168.0.37 > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > ----192.168.0.37 PING Statistics---- > > 4 packets transmitted, 0 packets received, 100% packet loss > > %SYSTEM-F-TIMEOUT, device timeout > > I'm not able to understand where I went wrong. > > Thanks, > > Priya > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: telnet 1.jpg Type: image/jpeg Size: 78385 bytes Desc: telnet 1.jpg URL: From Mark at infocomm.com Tue Nov 5 07:55:39 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Tue, 5 Nov 2013 04:55:39 -0800 Subject: [Simh] how to get eth connexion In-Reply-To: References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> <5277773D.5050504@yahoo.fr> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C5@REDROOF2.alohasunset.com> On Tuesday, November 05, 2013 at 3:56 AM, Gérard Calliet wrote: > Thanks for the answers. It works, now. What works now? The Wired network connection or the WiFi one? > Just to get some understanding : > 1) we need two different MAC address : why ? because the distinction is at > the mac level ? We're simulating a whole computer within your desktop system. Each computer that exists on any network has a network device connected to that network wire. That network device, by definition is supposed to have a unique MAC address which allows the network to send packets to that device and to receive packets from that device. > 2) I saw we need at least one ip host connexion alive to have a connexion for > simh - I am on Windows with wincap -. Again, why ? I'm not sure exactly what you mean by 'need at least one ip host connexion alive'. Are you saying that you need to be connected to a network? If you are asking 'why' details specifically about WiFi functionality, you are beyond the scope of my support. I don't run simh simulators on WiFi networks due to the limitations of WiFi supporting a single MAC address per WiFi connection, and my needs to test the breadth of protocol functional for DEC systems. I've tried to walk you through getting things working on a wired network connection. Once you are successful there, you are welcome to explore whether what you are trying to do can also be made to work on a WiFi connection. There is some discussion about this in the simh FAQ (http://simh.trailing-edge.com/pdf/simh_faq.pdf). - Mark > Thanks. > > Gerard Calliet > > Le 2013-11-04 11:30, prenouvel a écrit : > > Hi Gérard, > > > > What does the command XQ show eth returns ? > > > > You try with Wifi, does it works with a RJ45 cable ? > > > > Didn't you deactivate an ethernet connection recently oh the PC host > > ? > > > > Regards. > > > > Patrick. > > > > Le 04/11/2013 07:49, Gérard Calliet a écrit : > > > >> Hi Mark, > >> > >> Thanks for your answer. > >> > >> I tried the simh 4.0 beta. It's still not working. > >> I join show ethernet result, ipconfig/all result, my ucx config, the > >> init file. > >> I choosed the right eth (eth0 is the active wifi interface on > >> windows). I gave its mac address as interf mac address in the simh > >> init file. > >> > >> I don't understand where is the problem. I am just a beginner on > >> simh, so I could have done some error, but I don't see what it is. > >> > >> Gérard Calliet > >> pia-sofer > >> > >> Le 04/11/2013 00:37, Mark Pizzolato - Info Comm a écrit : > >> > >>> On Sunday, November 03, 2013 at 2:47 PM, Gérard Calliet wrote: > >>> > >>>> Hello, > >>>> > >>>> I am a beginer on simh. I have tried a lot of thing to get > >>>> connected by ethernet, on simh 3.9 openvms 7.3, openvms 7.0, vms > >>>> 5.5 ... / ucx 4.0 I have instaled wincap on a Windows Seven I > >>>> cannot get any connexion > >>> Hi Gérard, > >>> > >>> Try using the latest simh binaries from > >>> > >> > > > > https://github.com/simh/Win32-Development-Binaries/blob/Win32- > Developm > > ent-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip > >>> [1] > >>> > >>> Alternatively, if you've got a Visual Studio environment (or > >>> MinGW) available, you can build from the latest sources available > >>> from: https://github.com/simh/simh/archive/master.zip [2] > >>> > >>> If you are still having problems, provide the output of "SHOW > >>> ETHERNET" from a "sim>" prompt along with the output of > IPCONFIG/ALL > >>> from a Windows command prompt, and explain what makes you think > that > >>> the ethernet is not working. > >>> > >>> Good Luck. > >>> > >>> - Mark > >> > >> _______________________________________________ > >> Simh mailing list > >> Simh at trailing-edge.com > >> http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > ------------------------- > > > > [3] > > > > Ce courrier électronique ne contient aucun virus ou logiciel > > malveillant parce que la protection Antivirus avast! [4] est active. > > > > > > > > Links: > > ------ > > [1] > > > > https://github.com/simh/Win32-Development-Binaries/blob/Win32- > Developm > > ent-Binaries/simh-4.0-Beta--2013-10-02-5feb20d0.zip > > [2] https://github.com/simh/simh/archive/master.zip > > [3] http://www.avast.com/ > > [4] http://www.avast.com/ > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh From priyachinc at gmail.com Tue Nov 5 08:03:01 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Tue, 5 Nov 2013 18:33:01 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C3@REDROOF2.alohasunset.com> References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C1@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C3@REDROOF2.alohasunset.com> Message-ID: Hi Mark, I have checked it, It is there on my LAN. Both the IP's are on same LAN. -Priya On Tue, Nov 5, 2013 at 6:00 PM, Mark Pizzolato - Info Comm < Mark at infocomm.com> wrote: > You do not need any additional libpcap distro, the make output AND the > simulator “SHOW ETHERNET” output show that you already have a network > capable simulator. > > > > The SHOW ETHERNET output now shows that you’ve successfully opened the > network device (em1). As long as it is a wired Ethernet connection you > should be good to go. By that, I mean once you’ve got a running operating > system installed with IP network stack, you should be able to talk to OTHER > systems on your LAN, but NOT to the host system. > > > > The attached image you sent earlier in this conversation shows your > simulated system’s IP address as 192.168.1.110, but you were attempting to > PING an address of 192.168.0.37. Given the netmask of the simulator’s > interface, that should be on your LAN, however, does this really describe > your LAN? What is the host Linux system’s IP configuration: > > > > $ ifconfig > > $ route -n > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Tuesday, November 05, 2013 4:12 AM > > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > Hi, > > > > Attached files show the version and ethernet connections. > > > > and will I need libpcap-devel distro package to be installed ? > > > > -Priya > > > > > > > > On Tue, Nov 5, 2013 at 5:03 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > Hi Priya, > > > > Looks good so far. > > > > You should be able to run with the vax binary in BIN/vax and the > configuration file you’ve already got. > > > > I would initially comment out the “dep bdr 0” and boot manually until you > get things fully working and at the >>> prompt type “SET BOOT DUA0:” to set > your autoboot device in the NVRAM. > > > > Meanwhile, to verify your network configuration, invoke the simulator and > hit ^E to get to a sim> prompt and enter the following commands: > > > > sim> SHOW ETHERNET > > > > This will list the available network devices which libpcap can connect > to. Not all of them will work with simh, but the one which is your wired > network connection should be fully usable. > > > > If you still have problems send back the output of > > > > ^E > > sim> SHOW VERSION > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Tuesday, November 05, 2013 2:01 AM > > > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > Hi, > > I built the vax as told : > > > > * $ make vax* > > lib paths are: /lib/ /lib/sse2/ /usr/lib/atlas/ /usr/lib/dyninst/ > /usr/lib/llvm/ /usr/lib/mysql/ /usr/lib/tcl8.5/ /usr/lib/tracker-0.14/ > /usr/lib/xulrunner/ > > using libm: /lib//libm.so > > using librt: /lib//librt.so > > using libpthread: /lib//libpthread.so /usr/include/pthread.h > > using libdl: /lib//libdl.so /usr/include/dlfcn.h > > using libpcap: /usr/include/pcap.h > > *** Warning *** > > *** Warning *** vax Simulator are being built with > > *** Warning *** minimal libpcap networking support > > *** Warning *** > > *** Warning *** Simulators on your Linux platform can also be built with > > *** Warning *** extended Ethernet networking support by using VDE Ethernet. > > *** Warning *** > > *** Warning *** To build simulator(s) with extended networking support you > > *** Warning *** should read 0readme_ethernet.txt and follow the > instructions > > *** Warning *** regarding the needed libvdeplug components for your Linux > > *** Warning *** platform > > *** Warning *** > > *** > > *** vax Simulator being built with: > > *** - compiler optimizations and no debugging support. GCC Version: 4.7.2. > > *** - dynamic networking support using Linux provided libpcap components. > > *** > > *** git commit id is 32b8f063620db62213151f18403fcd9c02fae97f. > > *** > > mkdir -p BIN > > gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload > -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations > -fno-strict-overflow -Wno-unused-result > -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f > -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD > -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB sim_BuildROMs.c -o > BIN/BuildROMs > > BIN/BuildROMs > > rm -f BIN/BuildROMs > > mkdir -p BIN > > gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload > -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations > -fno-strict-overflow -Wno-unused-result > -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f > -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD > -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB VAX/vax_cpu.c VAX/vax_cpu1.c > VAX/vax_fpa.c VAX/vax_io.c VAX/vax_cis.c VAX/vax_octa.c VAX/vax_cmode.c > VAX/vax_mmu.c VAX/vax_stddev.c VAX/vax_sysdev.c VAX/vax_sys.c > VAX/vax_syscm.c VAX/vax_syslist.c PDP11/pdp11_rl.c PDP11/pdp11_rq.c > PDP11/pdp11_ts.c PDP11/pdp11_dz.c PDP11/pdp11_lp.c PDP11/pdp11_tq.c > PDP11/pdp11_xq.c PDP11/pdp11_vh.c PDP11/pdp11_cr.c PDP11/pdp11_io_lib.c > scp.c sim_console.c sim_fio.c sim_timer.c sim_sock.c sim_tmxr.c sim_ether.c > sim_tape.c sim_disk.c sim_serial.c sim_video.c -DVM_VAX -DUSE_INT64 > -DUSE_ADDR64 -I VAX -I PDP11 -DUSE_SHARED -I/usr/include/ -DUSE_TAP_NETWORK > -o BIN/microvax3900 -lm -lrt -lpthread -ldl > > > > cp BIN/microvax3900 BIN/vax > > [root at localhost simh-master]# > > > > What should I do after this? Create a vax.ini file ? > > > > - Priya > > > > On Mon, Nov 4, 2013 at 7:13 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > From what you’ve provided, I can’t really tell EXACTLY what simulator you > are running or how it was built or what it thinks is its capabilities are. > The latest source is the most supportable and the build (makefile) tells us > many things. Phillip Wherry wrote the instructions you are followed 9 > years ago. Things have evolved since that time and become much smoother. > > > > You are getting the “BOOT/R5:0 EXIT” message since you have the system > setup to autoboot (BDR set to 0) but your NVRAM doesn’t yet specify a > default boot device. This is NOT related to the network issues. > > > > Please build the latest source and if what you then need to do isn’t > obvious, then we can explore further. > > > > The total build instructions should be: > > $ wget https://github.com/simh/simh/archive/master.zip > > $ unzip simh-master.zip > > $ cd simh-master > > $ make vax > > > > As I said, if the simulator doesn’t work correctly for you then the output > produced during the above make will be useful. > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Monday, November 04, 2013 5:31 AM > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > I have followed steps from > http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the > simulator, earlier I was having a problem while starting TCP/IP, but I > solved that by attaching the interface type in vax.ini file, > > > > Attach Ethernet to a network interface > > set XQ mac=08-00-2B-AC-AC-B1 > > set XQ type=DELQA > > attach XQ em1 > > > > I don't think I have to build it again unless of course that is the only > solution to make this work. > > > > I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, > > Please check this, > > > > VAX simulator V3.9-0 > > NVR: buffering file in memory > > RQ: unit is read only > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > > > > > KA655-B V5.3, VMB 2.7 > > Performing normal system tests. > > 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. > > 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. > > 08..07..06..05..04..03.. > > Tests completed. > > Loading system software. > > (BOOT/R5:0 EXIT > > > > > > > > 2.. > > ?41 DEVASSIGN, EXIT > > ?06 HLT INST > > PC = 00000C1A > > Failure. > > >>>show version > > KA655-B V5.3, VMB 2.7 > > >>>boot dua0 > > (BOOT/R5:0 DUA0 > > > > > > > > 2.. > > -DUA0 > > 1..0.. > > > > > > %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk > > %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped > > %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk > > %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS > > OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id > = 0 > > %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. > > $! Copyright 2001 Compaq Computer Corporation. > > > > %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 > > %RUN-S-PROC_ID, identification of created process is 00000206 > > %DCL-S-SPAWNED, process SYSTEM_1 spawned > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% > > Operator _FORD$OPA0: has been enabled, username SYSTEM > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% > > Operator status for operator _FORD$OPA0: > > CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, > > LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, > OPER10, > > OPER11, OPER12 > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% > > Logfile has been initialized by operator _FORD$OPA0: > > Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% > > Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 > > CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, > > LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, > OPER10, > > OPER11, OPER12 > > > > %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-SERVERSTARTINGU, security server starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now > starting up > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node > > -LICENSE-F-NOLICENSE, no license is active for this software product > > -LICENSE-I-SYSMGR, please see your system manager > > > > > > %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node > > -LICENSE-F-NOLICENSE, no license is active for this software product > > -LICENSE-I-SYSMGR, please see your system manager > > Startup processing continuing... > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% > > Message from user SYSTEM on FORD > > Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) > > %RMS-E-FNF, file not found > > TP server process waiting > > > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% > > Message from user AUDIT$SERVER on FORD > > Security alarm (SECURITY) and security audit (SECURITY) on FORD, system > id: 1025 > > Auditable event: Audit server starting up > > Event time: 4-NOV-2013 18:45:18.58 > > PID: 00000203 > > Username: SYSTEM > > > > %STARTUP-I-AUDITCONTINUE, audit server initialization complete > > > > The OpenVMS VAX system is now executing the site-specific startup commands. > > > > > > %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 > > %TCPIP-I-NORMAL, timezone information verified > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet Loaded > > > > %RUN-S-PROC_ID, identification of created process is 00000211 > > %TCPIP-I-SETLOCAL, setting domain and/or local host > > %TCPIP-I-STARTCOMM, starting communication > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet Started > > > > %TCPIP-I-SETPROTP, setting protocol parameters > > %TCPIP-I-DEFINTE, defining interfaces > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Created INTERnet interface: QE0 > > > > %TCPIP-I-STARTNAME, starting name service > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% > > Message from user Proxy Server on FORD > > Loading proxy server image TCPIP$PROXY_SERVICES > > > > %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed > > %TCPIP-E-PROXYERROR, error processing proxy request > > -TCPIP-W-NORECORD, information not found > > -RMS-E-RNF, record not found > > %TCPIP-E-PROXYERROR, error processing proxy request > > -TCPIP-W-NORECORD, information not found > > -RMS-E-RNF, record not found > > %TCPIP-I-LOADSERV, loading TCPIP server proxy information > > %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records > > -TCPIP-I-SERVSKIP, skipped 0 communication proxy records > > -TCPIP-I-SERVTOTAL, total of 0 proxy records read > > %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Activate FTP Server > > > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP NOLISTEN Process creation success: Service - FTP > > > > %TCPIP-S-STARTDONE, TCPIP$FTP startup completed > > %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% > > Message from user PWIPdriver on FORD > > > > PWIPdriver successfully started. > > > > %RUN-S-PROC_ID, identification of created process is 00000213 > > %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed > > %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% > > Message from user INTERnet on FORD > > INTERnet ACP Activate TELNET Server > > > > %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed > > %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 > 18:45:50.33 > > > > %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: > > %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: > > %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 > > SYSTEM job terminated at 4-NOV-2013 18:45:53.04 > > > > Accounting information: > > Buffered I/O count: 2340 Peak working set size: > 1821 > > Direct I/O count: 866 Peak page file size: > 8473 > > Page faults: 12611 Mounted volumes: > 2 > > Charged CPU time: 0 00:00:49.40 Elapsed time: 0 > 00:01:01.11 > > > > Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 > > > > After I login > > > > > > On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > Hi Priya, > > > > I was looking for the output of “SHOW VERSION” from the “sim> “ prompt. > The “SHOW VERSION” output from the “>>> “ prompt is the version of the VAX > console ROM. The “sim>” Version information describes the simulator’s > capabilities. > > > > From the simulator startup message I can see you’re running simh V3.9. > > > > Please download and build the source from > https://github.com/simh/simh/archive/master.zip > > > > You should just be able to unzip the file and build the vax simulator with > “make vax”. > > > > The “messages you get when you run the simulator” include an error > message. It would be useful to see what command caused that error. To do > so you can invoke the simulator with the “-v” command switch. > > > > If this doesn’t help, then the output produced when you invoked the “make > vax” command to build the simulator will be useful. > > > > - Mark > > > > *From:* priya chincholikar [mailto:priyachinc at gmail.com] > *Sent:* Monday, November 04, 2013 4:50 AM > *To:* Mark Pizzolato - Info Comm > *Cc:* Lennert Van Alboom; simh at trailing-edge.com > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > I'm using fedora 18 as the host. > > *This is the message i get when i run the simulator :* > > > > VAX simulator V3.9-0 > > NVR: buffering file in memory > > RQ: unit is read only > > /usr/local/vax/bin/vax.ini> attach XQ em1 > > Command not allowed > > > > > > KA655-B V5.3, VMB 2.7 > > Performing normal system tests. > > 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. > > 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. > > 08..07..06..05..04..03.. > > Tests completed. > > Loading system software. > > (BOOT/R5:0 EXIT > > > > > > > > 2.. > > ?41 DEVASSIGN, EXIT > > ?06 HLT INST > > PC = 00000C1A > > Failure. > > >>>show version > > KA655-B V5.3, VMB 2.7 > > > > *This is the vax.ini file :* > > > > ; > > ; Load CPU microcode > > load -r /usr/local/vax/data/ka655x.bin > > ; > > ; Attach non-volatile RAM to a file > > attach nvr /usr/local/vax/data/nvram.bin > > ; > > ; This virtual machine has 64M memory > > set cpu 64m > > ; > > ; Define disk drive types. RA92 is largest-supported VAX drive. > > set rq0 ra92 > > set rq1 ra92 > > set rq2 ra92 > > set rq3 cdrom > > ; > > ; Attach defined drives to local files > > attach rq0 /usr/local/vax/data/d0.dsk > > attach rq1 /usr/local/vax/data/d1.dsk > > attach rq2 /usr/local/vax/data/d2.dsk > > ; > > ; Attach the CD-ROM to its file (read-only) > > attach -r rq3 /usr/local/vax/data/cd.iso > > ; > > ; Disable unused devices. It's also possible to disable individual devices, > > ; using a construction like "set rq2 disable" if desired. > > ; > > set rl disable > > set ts disable > > ; > > ; Attach Ethernet to a network interface > > set XQ mac=08-00-2B-AC-AC-B1 > > set XQ type=DELQA > > attach XQ em1 > > ; > > ;Uncomment the line below to enable auto-boot > > dep bdr 0 > > ; > > ;Choose one of the following lines.SET CPU CONHALT returns control to the > > ; VAX console monitor on a halt event (where behavior will be further > > ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will > > ; cause the simulator to get control instead. > > set cpu conhalt > > ;set cpu simhalt > > ; > > ;Now start the emulator > > boot cpu > > ; > > ; Exit the simulator > > exit > > > > Regards, > > Priya > > > > On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > > On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > > The output you sent seems to indicate that your problem isn't with > telnet, > > but with the guest not having networking at all (configuring the network > > inside simh alone doesn't do much). > > > > What host OS are you doing this on? > > What does your host networking stack look like? > > Can you show your simh configuration file? > > Also include the output of SHOW VERSION from within the simulator you are > using... > > > > Regards, > > > > > > Lennert > > > > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > > Hi, > > > I'm new to openvms and simh. I installed open vms 7.3 and have > > configured > > > tcpip too. > > > I want to connect to other hosts to test my tcpip. > > > $ telnet 192.168.0.37 > > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > $ ucx > > > TCPIP> ping 192.168.0.37 > > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > > ----192.168.0.37 PING Statistics---- > > > 4 packets transmitted, 0 packets received, 100% packet loss > > > %SYSTEM-F-TIMEOUT, device timeout > > > I'm not able to understand where I went wrong. > > > Thanks, > > > Priya > > > > > _______________________________________________ > > > Simh mailing list > > > Simh at trailing-edge.com > > > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Tue Nov 5 08:23:54 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Tue, 5 Nov 2013 05:23:54 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <20131104122846.GA1687@ziff.soleus.nu> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19A@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19C@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F19E@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C1@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C3@REDROOF2.alohasunset.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C6@REDROOF2.alohasunset.com> It looks like we're not making a lot of progress yet. Please supply: 1) The output of "ifconfig" 2) The output of "route -n" 3) The details describing which Linux distro and architecture (x86 or x64) you are running and where I can download it. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Tuesday, November 05, 2013 5:03 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hi Mark, I have checked it, It is there on my LAN. Both the IP's are on same LAN. -Priya On Tue, Nov 5, 2013 at 6:00 PM, Mark Pizzolato - Info Comm > wrote: You do not need any additional libpcap distro, the make output AND the simulator "SHOW ETHERNET" output show that you already have a network capable simulator. The SHOW ETHERNET output now shows that you've successfully opened the network device (em1). As long as it is a wired Ethernet connection you should be good to go. By that, I mean once you've got a running operating system installed with IP network stack, you should be able to talk to OTHER systems on your LAN, but NOT to the host system. The attached image you sent earlier in this conversation shows your simulated system's IP address as 192.168.1.110, but you were attempting to PING an address of 192.168.0.37. Given the netmask of the simulator's interface, that should be on your LAN, however, does this really describe your LAN? What is the host Linux system's IP configuration: $ ifconfig $ route -n - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Tuesday, November 05, 2013 4:12 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hi, Attached files show the version and ethernet connections. and will I need libpcap-devel distro package to be installed ? -Priya On Tue, Nov 5, 2013 at 5:03 PM, Mark Pizzolato - Info Comm > wrote: Hi Priya, Looks good so far. You should be able to run with the vax binary in BIN/vax and the configuration file you've already got. I would initially comment out the "dep bdr 0" and boot manually until you get things fully working and at the >>> prompt type "SET BOOT DUA0:" to set your autoboot device in the NVRAM. Meanwhile, to verify your network configuration, invoke the simulator and hit ^E to get to a sim> prompt and enter the following commands: sim> SHOW ETHERNET This will list the available network devices which libpcap can connect to. Not all of them will work with simh, but the one which is your wired network connection should be fully usable. If you still have problems send back the output of ^E sim> SHOW VERSION - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Tuesday, November 05, 2013 2:01 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hi, I built the vax as told : $ make vax lib paths are: /lib/ /lib/sse2/ /usr/lib/atlas/ /usr/lib/dyninst/ /usr/lib/llvm/ /usr/lib/mysql/ /usr/lib/tcl8.5/ /usr/lib/tracker-0.14/ /usr/lib/xulrunner/ using libm: /lib//libm.so using librt: /lib//librt.so using libpthread: /lib//libpthread.so /usr/include/pthread.h using libdl: /lib//libdl.so /usr/include/dlfcn.h using libpcap: /usr/include/pcap.h *** Warning *** *** Warning *** vax Simulator are being built with *** Warning *** minimal libpcap networking support *** Warning *** *** Warning *** Simulators on your Linux platform can also be built with *** Warning *** extended Ethernet networking support by using VDE Ethernet. *** Warning *** *** Warning *** To build simulator(s) with extended networking support you *** Warning *** should read 0readme_ethernet.txt and follow the instructions *** Warning *** regarding the needed libvdeplug components for your Linux *** Warning *** platform *** Warning *** *** *** vax Simulator being built with: *** - compiler optimizations and no debugging support. GCC Version: 4.7.2. *** - dynamic networking support using Linux provided libpcap components. *** *** git commit id is 32b8f063620db62213151f18403fcd9c02fae97f. *** mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB sim_BuildROMs.c -o BIN/BuildROMs BIN/BuildROMs rm -f BIN/BuildROMs mkdir -p BIN gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -fgcse-after-reload -fpredictive-commoning -fipa-cp-clone -fno-unsafe-loop-optimizations -fno-strict-overflow -Wno-unused-result -DSIM_GIT_COMMIT_ID=32b8f063620db62213151f18403fcd9c02fae97f -DSIM_COMPILER="GCC Version: 4.7.2" -I . -D_GNU_SOURCE -DUSE_READER_THREAD -DSIM_ASYNCH_IO -DHAVE_DLOPEN=so -DHAVE_GLOB VAX/vax_cpu.c VAX/vax_cpu1.c VAX/vax_fpa.c VAX/vax_io.c VAX/vax_cis.c VAX/vax_octa.c VAX/vax_cmode.c VAX/vax_mmu.c VAX/vax_stddev.c VAX/vax_sysdev.c VAX/vax_sys.c VAX/vax_syscm.c VAX/vax_syslist.c PDP11/pdp11_rl.c PDP11/pdp11_rq.c PDP11/pdp11_ts.c PDP11/pdp11_dz.c PDP11/pdp11_lp.c PDP11/pdp11_tq.c PDP11/pdp11_xq.c PDP11/pdp11_vh.c PDP11/pdp11_cr.c PDP11/pdp11_io_lib.c scp.c sim_console.c sim_fio.c sim_timer.c sim_sock.c sim_tmxr.c sim_ether.c sim_tape.c sim_disk.c sim_serial.c sim_video.c -DVM_VAX -DUSE_INT64 -DUSE_ADDR64 -I VAX -I PDP11 -DUSE_SHARED -I/usr/include/ -DUSE_TAP_NETWORK -o BIN/microvax3900 -lm -lrt -lpthread -ldl cp BIN/microvax3900 BIN/vax [root at localhost simh-master]# What should I do after this? Create a vax.ini file ? - Priya On Mon, Nov 4, 2013 at 7:13 PM, Mark Pizzolato - Info Comm > wrote: >From what you've provided, I can't really tell EXACTLY what simulator you are running or how it was built or what it thinks is its capabilities are. The latest source is the most supportable and the build (makefile) tells us many things. Phillip Wherry wrote the instructions you are followed 9 years ago. Things have evolved since that time and become much smoother. You are getting the "BOOT/R5:0 EXIT" message since you have the system setup to autoboot (BDR set to 0) but your NVRAM doesn't yet specify a default boot device. This is NOT related to the network issues. Please build the latest source and if what you then need to do isn't obvious, then we can explore further. The total build instructions should be: $ wget https://github.com/simh/simh/archive/master.zip $ unzip simh-master.zip $ cd simh-master $ make vax As I said, if the simulator doesn't work correctly for you then the output produced during the above make will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 5:31 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I have followed steps from http://www.wherry.com/gadgets/retrocomputing/vax-simh.html to build the simulator, earlier I was having a problem while starting TCP/IP, but I solved that by attaching the interface type in vax.ini file, Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 I don't think I have to build it again unless of course that is the only solution to make this work. I dont know why I get the (BOOT/R5:0 EXIT when I run the simulator, Please check this, VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 >>>boot dua0 (BOOT/R5:0 DUA0 2.. -DUA0 1..0.. %SYSBOOT-I-SYSBOOT Mapping the SYSDUMP.DMP on the System Disk %SYSBOOT-I-SYSBOOT SYSDUMP.DMP on System Disk successfully mapped %SYSBOOT-I-SYSBOOT Mapping PAGEFILE.SYS on the System Disk %SYSBOOT-I-SYSBOOT SAVEDUMP parameter not set to protect the PAGEFILE.SYS OpenVMS (TM) VAX Version V7.3 Major version id = 1 Minor version id = 0 %WBM-I-WBMINFO Write Bitmap has successfully completed initialization. $! Copyright 2001 Compaq Computer Corporation. %STDRV-I-STARTUP, OpenVMS startup begun at 4-NOV-2013 18:44:52.23 %RUN-S-PROC_ID, identification of created process is 00000206 %DCL-S-SPAWNED, process SYSTEM_1 spawned %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.64 %%%%%%%%%%% Operator _FORD$OPA0: has been enabled, username SYSTEM %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.65 %%%%%%%%%%% Operator status for operator _FORD$OPA0: CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.69 %%%%%%%%%%% Logfile has been initialized by operator _FORD$OPA0: Logfile is FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:11.70 %%%%%%%%%%% Operator status for operator FORD::SYS$SYSROOT:[SYSMGR]OPERATOR.LOG;32 CENTRAL, PRINTER, TAPES, DISKS, DEVICES, CARDS, NETWORK, CLUSTER, SECURITY, LICENSE, OPER1, OPER2, OPER3, OPER4, OPER5, OPER6, OPER7, OPER8, OPER9, OPER10, OPER11, OPER12 %SET-I-NEWAUDSRV, identification of new audit server process is 0000020C %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.87 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-PROXYSTARTINGUP, proxy processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.88 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIACRECLUDB, security server created cluster intrusion database %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-SERVERSTARTINGU, security server starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:14.89 %%%%%%%%%%% Message from user SYSTEM on FORD %SECSRV-I-CIASTARTINGUP, breakin detection and evasion processing now starting up %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.07 %%%%%%%%%%% Message from user SYSTEM on FORD %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager %LICENSE-E-NOAUTH, DEC VAX-VMS use is not authorized on this node -LICENSE-F-NOLICENSE, no license is active for this software product -LICENSE-I-SYSMGR, please see your system manager Startup processing continuing... %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:17.72 %%%%%%%%%%% Message from user SYSTEM on FORD Warning: DECdtm log file not found (SYS$JOURNAL:SYSTEM$FORD.LM$JOURNAL) %RMS-E-FNF, file not found TP server process waiting %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:18.72 %%%%%%%%%%% Message from user AUDIT$SERVER on FORD Security alarm (SECURITY) and security audit (SECURITY) on FORD, system id: 1025 Auditable event: Audit server starting up Event time: 4-NOV-2013 18:45:18.58 PID: 00000203 Username: SYSTEM %STARTUP-I-AUDITCONTINUE, audit server initialization complete The OpenVMS VAX system is now executing the site-specific startup commands. %TCPIP-I-INFO, TCP/IP Services startup beginning at 4-NOV-2013 18:45:27.15 %TCPIP-I-NORMAL, timezone information verified %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:29.91 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Loaded %RUN-S-PROC_ID, identification of created process is 00000211 %TCPIP-I-SETLOCAL, setting domain and/or local host %TCPIP-I-STARTCOMM, starting communication %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:32.13 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet Started %TCPIP-I-SETPROTP, setting protocol parameters %TCPIP-I-DEFINTE, defining interfaces %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:33.43 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Created INTERnet interface: QE0 %TCPIP-I-STARTNAME, starting name service %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:34.16 %%%%%%%%%%% Message from user Proxy Server on FORD Loading proxy server image TCPIP$PROXY_SERVICES %TCPIP-S-STARTDONE, TCP/IP Kernel startup completed %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-E-PROXYERROR, error processing proxy request -TCPIP-W-NORECORD, information not found -RMS-E-RNF, record not found %TCPIP-I-LOADSERV, loading TCPIP server proxy information %TCPIP-I-SERVLOADED, auxiliary server loaded with 0 proxy records -TCPIP-I-SERVSKIP, skipped 0 communication proxy records -TCPIP-I-SERVTOTAL, total of 0 proxy records read %TCPIP-S-STARTDONE, TCPIP$PROXY startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.48 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate FTP Server %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:44.49 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP NOLISTEN Process creation success: Service - FTP %TCPIP-S-STARTDONE, TCPIP$FTP startup completed %TCPIP-S-STARTDONE, TCPIP$FTP_CLIENT startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:48.13 %%%%%%%%%%% Message from user PWIPdriver on FORD PWIPdriver successfully started. %RUN-S-PROC_ID, identification of created process is 00000213 %TCPIP-S-STARTDONE, TCPIP$PWIP_DRIVER startup completed %%%%%%%%%%% OPCOM 4-NOV-2013 18:45:49.29 %%%%%%%%%%% Message from user INTERnet on FORD INTERnet ACP Activate TELNET Server %TCPIP-S-STARTDONE, TCPIP$TELNET startup completed %TCPIP-S-STARTDONE, TCP/IP Services startup completed at 4-NOV-2013 18:45:50.33 %MOUNT-I-MOUNTED, DATA1 mounted on _FORD$DUA1: %MOUNT-I-MOUNTED, DATA2 mounted on _FORD$DUA2: %SET-I-INTSET, login interactive limit = 64, current interactive value = 0 SYSTEM job terminated at 4-NOV-2013 18:45:53.04 Accounting information: Buffered I/O count: 2340 Peak working set size: 1821 Direct I/O count: 866 Peak page file size: 8473 Page faults: 12611 Mounted volumes: 2 Charged CPU time: 0 00:00:49.40 Elapsed time: 0 00:01:01.11 Welcome to OpenVMS (TM) VAX Operating System, Version V7.3 After I login On Mon, Nov 4, 2013 at 6:30 PM, Mark Pizzolato - Info Comm > wrote: Hi Priya, I was looking for the output of "SHOW VERSION" from the "sim> " prompt. The "SHOW VERSION" output from the ">>> " prompt is the version of the VAX console ROM. The "sim>" Version information describes the simulator's capabilities. >From the simulator startup message I can see you're running simh V3.9. Please download and build the source from https://github.com/simh/simh/archive/master.zip You should just be able to unzip the file and build the vax simulator with "make vax". The "messages you get when you run the simulator" include an error message. It would be useful to see what command caused that error. To do so you can invoke the simulator with the "-v" command switch. If this doesn't help, then the output produced when you invoked the "make vax" command to build the simulator will be useful. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Monday, November 04, 2013 4:50 AM To: Mark Pizzolato - Info Comm Cc: Lennert Van Alboom; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts I'm using fedora 18 as the host. This is the message i get when i run the simulator : VAX simulator V3.9-0 NVR: buffering file in memory RQ: unit is read only /usr/local/vax/bin/vax.ini> attach XQ em1 Command not allowed KA655-B V5.3, VMB 2.7 Performing normal system tests. 40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25.. 24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09.. 08..07..06..05..04..03.. Tests completed. Loading system software. (BOOT/R5:0 EXIT 2.. ?41 DEVASSIGN, EXIT ?06 HLT INST PC = 00000C1A Failure. >>>show version KA655-B V5.3, VMB 2.7 This is the vax.ini file : ; ; Load CPU microcode load -r /usr/local/vax/data/ka655x.bin ; ; Attach non-volatile RAM to a file attach nvr /usr/local/vax/data/nvram.bin ; ; This virtual machine has 64M memory set cpu 64m ; ; Define disk drive types. RA92 is largest-supported VAX drive. set rq0 ra92 set rq1 ra92 set rq2 ra92 set rq3 cdrom ; ; Attach defined drives to local files attach rq0 /usr/local/vax/data/d0.dsk attach rq1 /usr/local/vax/data/d1.dsk attach rq2 /usr/local/vax/data/d2.dsk ; ; Attach the CD-ROM to its file (read-only) attach -r rq3 /usr/local/vax/data/cd.iso ; ; Disable unused devices. It's also possible to disable individual devices, ; using a construction like "set rq2 disable" if desired. ; set rl disable set ts disable ; ; Attach Ethernet to a network interface set XQ mac=08-00-2B-AC-AC-B1 set XQ type=DELQA attach XQ em1 ; ;Uncomment the line below to enable auto-boot dep bdr 0 ; ;Choose one of the following lines.SET CPU CONHALT returns control to the ; VAX console monitor on a halt event (where behavior will be further ; determined by whether auto-boot is set--see above. SET CPU SIMHALT will ; cause the simulator to get control instead. set cpu conhalt ;set cpu simhalt ; ;Now start the emulator boot cpu ; ; Exit the simulator exit Regards, Priya On Mon, Nov 4, 2013 at 6:02 PM, Mark Pizzolato - Info Comm > wrote: On Monday, November 04, 2013 at 4:29 AM, Lennert Van Alboom wrote: > The output you sent seems to indicate that your problem isn't with telnet, > but with the guest not having networking at all (configuring the network > inside simh alone doesn't do much). > > What host OS are you doing this on? > What does your host networking stack look like? > Can you show your simh configuration file? Also include the output of SHOW VERSION from within the simulator you are using... > Regards, > > > Lennert > > > On Mon, Nov 04, 2013 at 05:20:34PM +0530, priya chincholikar wrote: > > Hi, > > I'm new to openvms and simh. I installed open vms 7.3 and have > configured > > tcpip too. > > I want to connect to other hosts to test my tcpip. > > $ telnet 192.168.0.37 > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > $ ucx > > TCPIP> ping 192.168.0.37 > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > ----192.168.0.37 PING Statistics---- > > 4 packets transmitted, 0 packets received, 100% packet loss > > %SYSTEM-F-TIMEOUT, device timeout > > I'm not able to understand where I went wrong. > > Thanks, > > Priya > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh -------------- next part -------------- An HTML attachment was scrubbed... URL: From sander.reiche at gmail.com Tue Nov 5 10:13:59 2013 From: sander.reiche at gmail.com (Sander Reiche) Date: Tue, 5 Nov 2013 16:13:59 +0100 Subject: [Simh] RT-11 bootable tape Message-ID: Hi all, Trying to get an actual scsi tape running on a CQD220A on real iron(tm), but I'm still trying to figure things out. I was originally using Ersatz-11, but I though I'd give it a go on SimH. When booted from a bootable simulated TK50(tk50.tap), it consistently halts on trying to run MDUP.Mx to further the "installation" of RT-11 from said tape. Following a transcript: PDP-11 simulator V3.9-0 sim> att rl0 rtv5rl.06 sim> att tq0 tk50.tap TQ: creating new file sim> b rl RT-11FB V05.06 .TYPE V5USER.TXT RT-11 V5.6 Installation of RT-11 Version 5.6 is complete and you are now running RT-11 from your system volume. .R MSCPCK ?MSCPCK-I-MU0-TK50 FW Rev Level is 005/HW Rev Level is 001 ?MSCPCK-W-TQK50 controller below FW Rev 4/HW Rev 6 .ass mu0 kit .ass dl0 bin .$@mub .$Load Bin,Kit .$Ini/Que/Vol/File:Bin:MBOOT.BOT Kit: MU0:/Initialize; Are you sure? Y Volume ID? HU21J Owner? MU 1/1 .$Cop Bin:MSBOOT.BOT Kit:/Pos:-1 Files copied: BIN:MSBOOT.BOT to KIT:MSBOOT.BOT .$Cop Bin:MDUP.AI Kit:/Pos:-1 Files copied: BIN:MDUP.AI to KIT:MDUP.AI .$Cop Bin:MDUP.MM Kit:/Pos:-1 Files copied: BIN:MDUP.MM to KIT:MDUP.MM .$Cop Bin:MDUP.MS Kit:/Pos:-1 Files copied: BIN:MDUP.MS to KIT:MDUP.MS .$Cop Bin:MDUP.MT Kit:/Pos:-1 Files copied: BIN:MDUP.MT to KIT:MDUP.MT .$Cop Bin:MDUP.MU Kit:/Pos:-1 Files copied: BIN:MDUP.MU to KIT:MDUP.MU .................................. .$Cop Bin:INDEX.IDX Kit:/Pos:-1 Files copied: BIN:INDEX.IDX to KIT:INDEX.IDX .$Unload Bin,Kit sim> sh tq TQ, TK50 (94MB), address=17774500-17774503, no vector, 4 units TQ0, attached to tk50.tap, write enabled, SIMH format, capacity=98MB TQ1, not attached, write enabled, SIMH format, capacity=98MB TQ2, not attached, write enabled, SIMH format, capacity=98MB TQ3, not attached, write enabled, SIMH format, capacity=98MB sim> b tq .MSBOOT V05.07 *MDUP.MU Trap stack push abort, PC: 062462 (ADD (R1)+,52040(R2)) sim> Am I doing something wrong? regards, Sander Reiche -------------- next part -------------- An HTML attachment was scrubbed... URL: From thisisentchris87 at gmail.com Tue Nov 5 10:54:37 2013 From: thisisentchris87 at gmail.com (Christopher Myers) Date: Tue, 5 Nov 2013 10:54:37 -0500 Subject: [Simh] Unable to telnet to other hosts Message-ID: Hey, I think you're attaching the wrong Ethernet interface. You've got it set to 'em1' when http://www.wherry.com/gadgets/retrocomputing/vax-simh.html has it set to 'eth0.' Not sure if this is what the problem is, just something I noticed. Also, just a heads up. I've had a somewhat similar problem on VAXStation 3100 running OpenVMS 7.3. I couldn't TELNET to hosts, but could ping them and the error I would get is the same. -TCPIP-E-NO_RECOVERY, unexpected name server failure When I was trying to figure this out, I discovered that OpenVMS apparently wants a name attached to that host. So you need to give 192.168.0.37 a text name like "MYHOST" and then you'll be able to telnet with that name and (oddly) the IP address. What you need to do is go into the tcpip configuration program. $ TCPIP TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37 TCPIP> SHOW HOST This is how I fixed my little problem on real equipment. I had a working ping to a host, but no ability to TELNET. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Tue Nov 5 11:50:36 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Tue, 5 Nov 2013 08:50:36 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1CC@REDROOF2.alohasunset.com> Hi Chris, On Priya's system either eth0 or em1 would produce the same results. The simh Ethernet generic naming paradigm makes this true. Priya's first problem is that he can't ping. I'll step back once packets are moving on the wire. Once he can ping, your ideas may be relevant. - Mark From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] On Behalf Of Christopher Myers Sent: Tuesday, November 05, 2013 7:55 AM To: priya chincholikar Cc: simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hey, I think you're attaching the wrong Ethernet interface. You've got it set to 'em1' when http://www.wherry.com/gadgets/retrocomputing/vax-simh.html has it set to 'eth0.' Not sure if this is what the problem is, just something I noticed. Also, just a heads up. I've had a somewhat similar problem on VAXStation 3100 running OpenVMS 7.3. I couldn't TELNET to hosts, but could ping them and the error I would get is the same. -TCPIP-E-NO_RECOVERY, unexpected name server failure When I was trying to figure this out, I discovered that OpenVMS apparently wants a name attached to that host. So you need to give 192.168.0.37 a text name like "MYHOST" and then you'll be able to telnet with that name and (oddly) the IP address. What you need to do is go into the tcpip configuration program. $ TCPIP TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37 TCPIP> SHOW HOST This is how I fixed my little problem on real equipment. I had a working ping to a host, but no ability to TELNET. -------------- next part -------------- An HTML attachment was scrubbed... URL: From wtn90125 at yahoo.com Tue Nov 5 12:53:05 2013 From: wtn90125 at yahoo.com (Terry Newton) Date: Tue, 5 Nov 2013 09:53:05 -0800 (PST) Subject: [Simh] Beta 4 script feature/bug with set throttle n% Message-ID: <1383673985.39436.YahooMailBasic@web141105.mail.bf1.yahoo.com> Hello, The new simh supports substitution using %, a nice feature however it breaks scripts that use: set throttle [some number]% A workaround is to use \% as in: set throttle 50\% But would be better to ignore % unless a parameter is actually supplied, then existing startup scripts (almost all of mine) don't have to be modified. So, in scp.c I changed... if (*ip == '%') { /* sub? */ ...to... if ((*ip == '%') && (ip[1] != ' ') && (ip[1] != '\0')) { /* sub? */ ...and set throttle 50% works correctly now, also fixes display commands like 'echo Throttle is set to 50% now'. At least provided there's not a non-space character after the %, otherwise substitution is triggered. Terry Newton From Mark at infocomm.com Tue Nov 5 13:36:03 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Tue, 5 Nov 2013 10:36:03 -0800 Subject: [Simh] Beta 4 script feature/bug with set throttle n% In-Reply-To: <1383673985.39436.YahooMailBasic@web141105.mail.bf1.yahoo.com> References: <1383673985.39436.YahooMailBasic@web141105.mail.bf1.yahoo.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1DB@REDROOF2.alohasunset.com> On Tuesday, November 05, 2013 at 9:53 AM, Terry Newton wrote: > Hello, > > The new simh supports substitution using %, a nice feature however it > breaks scripts that use: set throttle [some number]% A workaround is to use > \% as in: set throttle 50\% But would be better to ignore % unless a > parameter is actually supplied, then existing startup scripts (almost all of > mine) don't have to be modified. > > So, in scp.c I changed... > > if (*ip == '%') { /* sub? */ > > ...to... > > if ((*ip == '%') && (ip[1] != ' ') && (ip[1] != '\0')) { /* sub? */ > > ...and set throttle 50% works correctly now, also fixes display commands like > 'echo Throttle is set to 50% now'. At least provided there's not a non-space > character after the %, otherwise substitution is triggered. This is a good idea. I've generalized it a little. Only %'s followed by digits, alpha or * characters cause substitution, others are left as is. Thanks. - Mark From tshoppa at wmata.com Tue Nov 5 16:56:08 2013 From: tshoppa at wmata.com (Shoppa, Tim) Date: Tue, 5 Nov 2013 21:56:08 +0000 Subject: [Simh] RT-11 bootable tape In-Reply-To: References: Message-ID: <303A17BD5F8FA34DA45EEC245271AC0B949AB4F4@JGEX2K10MBX2.wmata.local> It has been many years but I think there was a problem with the tape boot blocks in 5.6 that was fixed in 5.7. Tim. From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] On Behalf Of Sander Reiche Sent: Tuesday, November 05, 2013 10:14 AM To: simh at trailing-edge.com Subject: [Simh] RT-11 bootable tape Hi all, Trying to get an actual scsi tape running on a CQD220A on real iron(tm), but I'm still trying to figure things out. I was originally using Ersatz-11, but I though I'd give it a go on SimH. When booted from a bootable simulated TK50(tk50.tap), it consistently halts on trying to run MDUP.Mx to further the "installation" of RT-11 from said tape. Following a transcript: PDP-11 simulator V3.9-0 sim> att rl0 rtv5rl.06 sim> att tq0 tk50.tap TQ: creating new file sim> b rl RT-11FB V05.06 .TYPE V5USER.TXT RT-11 V5.6 Installation of RT-11 Version 5.6 is complete and you are now running RT-11 from your system volume. .R MSCPCK ?MSCPCK-I-MU0-TK50 FW Rev Level is 005/HW Rev Level is 001 ?MSCPCK-W-TQK50 controller below FW Rev 4/HW Rev 6 .ass mu0 kit .ass dl0 bin .$@mub .$Load Bin,Kit .$Ini/Que/Vol/File:Bin:MBOOT.BOT Kit: MU0:/Initialize; Are you sure? Y Volume ID? HU21J Owner? MU 1/1 .$Cop Bin:MSBOOT.BOT Kit:/Pos:-1 Files copied: BIN:MSBOOT.BOT to KIT:MSBOOT.BOT .$Cop Bin:MDUP.AI Kit:/Pos:-1 Files copied: BIN:MDUP.AI to KIT:MDUP.AI .$Cop Bin:MDUP.MM Kit:/Pos:-1 Files copied: BIN:MDUP.MM to KIT:MDUP.MM .$Cop Bin:MDUP.MS Kit:/Pos:-1 Files copied: BIN:MDUP.MS to KIT:MDUP.MS .$Cop Bin:MDUP.MT Kit:/Pos:-1 Files copied: BIN:MDUP.MT to KIT:MDUP.MT .$Cop Bin:MDUP.MU Kit:/Pos:-1 Files copied: BIN:MDUP.MU to KIT:MDUP.MU .................................. .$Cop Bin:INDEX.IDX Kit:/Pos:-1 Files copied: BIN:INDEX.IDX to KIT:INDEX.IDX .$Unload Bin,Kit sim> sh tq TQ, TK50 (94MB), address=17774500-17774503, no vector, 4 units TQ0, attached to tk50.tap, write enabled, SIMH format, capacity=98MB TQ1, not attached, write enabled, SIMH format, capacity=98MB TQ2, not attached, write enabled, SIMH format, capacity=98MB TQ3, not attached, write enabled, SIMH format, capacity=98MB sim> b tq .MSBOOT V05.07 *MDUP.MU Trap stack push abort, PC: 062462 (ADD (R1)+,52040(R2)) sim> Am I doing something wrong? regards, Sander Reiche -------------- next part -------------- An HTML attachment was scrubbed... URL: From sander.reiche at gmail.com Tue Nov 5 18:06:18 2013 From: sander.reiche at gmail.com (Sander Reiche) Date: Wed, 6 Nov 2013 00:06:18 +0100 Subject: [Simh] RT-11 bootable tape In-Reply-To: <303A17BD5F8FA34DA45EEC245271AC0B949AB4F4@JGEX2K10MBX2.wmata.local> References: <303A17BD5F8FA34DA45EEC245271AC0B949AB4F4@JGEX2K10MBX2.wmata.local> Message-ID: But it does seems to work in e11. Could be a hack, but I'll try V05.07 tomorrow. re, Sander On Nov 5, 2013 10:56 PM, "Shoppa, Tim" wrote: > It has been many years but I think there was a problem with the tape > boot blocks in 5.6 that was fixed in 5.7. > > > > Tim. > > > > *From:* simh-bounces at trailing-edge.com [mailto: > simh-bounces at trailing-edge.com] *On Behalf Of *Sander Reiche > *Sent:* Tuesday, November 05, 2013 10:14 AM > *To:* simh at trailing-edge.com > *Subject:* [Simh] RT-11 bootable tape > > > > Hi all, > > > > Trying to get an actual scsi tape running on a CQD220A on real iron(tm), > but I'm still trying to figure things out. I was originally using > Ersatz-11, but I though I'd give it a go on SimH. > > > > When booted from a bootable simulated TK50(tk50.tap), it consistently > halts on trying to run MDUP.Mx to further the "installation" of RT-11 from > said tape. > > > > Following a transcript: > > > > PDP-11 simulator V3.9-0 > > sim> att rl0 rtv5rl.06 > > sim> att tq0 tk50.tap > > TQ: creating new file > > sim> b rl > > > > RT-11FB V05.06 > > > > .TYPE V5USER.TXT > > > > RT-11 V5.6 > > > > Installation of RT-11 Version 5.6 is complete and you are now > running > > RT-11 from your system volume. > > > > .R MSCPCK > > ?MSCPCK-I-MU0-TK50 FW Rev Level is 005/HW Rev Level is 001 > > ?MSCPCK-W-TQK50 controller below FW Rev 4/HW Rev 6 > > > > .ass mu0 kit > > > > .ass dl0 bin > > > > .$@mub > > > > .$Load Bin,Kit > > > > .$Ini/Que/Vol/File:Bin:MBOOT.BOT Kit: > > MU0:/Initialize; Are you sure? Y > > Volume ID? HU21J > > Owner? MU 1/1 > > > > .$Cop Bin:MSBOOT.BOT Kit:/Pos:-1 > > Files copied: > > BIN:MSBOOT.BOT to KIT:MSBOOT.BOT > > > > .$Cop Bin:MDUP.AI Kit:/Pos:-1 > > Files copied: > > BIN:MDUP.AI to KIT:MDUP.AI > > > > .$Cop Bin:MDUP.MM Kit:/Pos:-1 > > Files copied: > > BIN:MDUP.MM to KIT:MDUP.MM > > > > .$Cop Bin:MDUP.MS Kit:/Pos:-1 > > Files copied: > > BIN:MDUP.MS to KIT:MDUP.MS > > > > .$Cop Bin:MDUP.MT Kit:/Pos:-1 > > Files copied: > > BIN:MDUP.MT to KIT:MDUP.MT > > > > .$Cop Bin:MDUP.MU Kit:/Pos:-1 > > Files copied: > > BIN:MDUP.MU to KIT:MDUP.MU > > > > .................................. > > > > .$Cop Bin:INDEX.IDX Kit:/Pos:-1 > > Files copied: > > BIN:INDEX.IDX to KIT:INDEX.IDX > > > > .$Unload Bin,Kit > > > > sim> sh tq > > TQ, TK50 (94MB), address=17774500-17774503, no vector, 4 units > > TQ0, attached to tk50.tap, write enabled, SIMH format, capacity=98MB > > TQ1, not attached, write enabled, SIMH format, capacity=98MB > > TQ2, not attached, write enabled, SIMH format, capacity=98MB > > TQ3, not attached, write enabled, SIMH format, capacity=98MB > > sim> b tq > > > > .MSBOOT V05.07 > > *MDUP.MU > > > > Trap stack push abort, PC: 062462 (ADD (R1)+,52040(R2)) > > sim> > > > > Am I doing something wrong? > > > > regards, > > > > Sander Reiche > -------------- next part -------------- An HTML attachment was scrubbed... URL: From gerard.calliet at pia-sofer.fr Wed Nov 6 03:48:35 2013 From: gerard.calliet at pia-sofer.fr (=?UTF-8?B?R8OpcmFyZCBDYWxsaWV0?=) Date: Wed, 06 Nov 2013 09:48:35 +0100 Subject: [Simh] how to get eth connexion In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C5@REDROOF2.alohasunset.com> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> <5277773D.5050504@yahoo.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C5@REDROOF2.alohasunset.com> Message-ID: <527A0263.4000400@pia-sofer.fr> Le 05/11/2013 13:55, Mark Pizzolato - Info Comm a écrit : >> 2) I saw we need at least one ip host connexion alive to have a connexion for >> >simh - I am on Windows with wincap -. Again, why ? > I'm not sure exactly what you mean by 'need at least one ip host connexion alive'. Are you saying that you need to be connected to a network? Thanks to your help, I was able to communicate using a classic wire connexion. It works also with the only wire interface, used by Windows for ip traffic, and by simh for its (ip also) traffic. If I disable the ip protocol for the interface, simh also cannot work. My question is theoretical : why do we need an ip host protocol on the host interface for simh being able of work with this interface ? It's perhaps a window / wincap issue. Don't worry about it : it is only to increese my knowledge. I do go on with wired and ip-ed solutions. Gérard Calliet From gerard.calliet at pia-sofer.fr Wed Nov 6 03:58:11 2013 From: gerard.calliet at pia-sofer.fr (=?ISO-8859-1?Q?G=E9rard_Calliet?=) Date: Wed, 06 Nov 2013 09:58:11 +0100 Subject: [Simh] Beta 4 bug ? In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1DB@REDROOF2.alohasunset.com> References: <1383673985.39436.YahooMailBasic@web141105.mail.bf1.yahoo.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1DB@REDROOF2.alohasunset.com> Message-ID: <527A04A3.3060407@pia-sofer.fr> Hello, I tried yesterday beta 4, Vax / Vms 7.3, and I had some bug-checks, some of them had polluted the system disk. I did the same operations with simh 3.9, and VMS said "device full", and did not crash. I think some bad things occur with simh beta 4 around error handling for emulated disks. I was in a hurry and working at a customer site, and today I am also in a hurry. But I you think worthwhile it, I could re-do the crash and send you some informations. Gérard Calliet From sander.reiche at gmail.com Wed Nov 6 05:19:44 2013 From: sander.reiche at gmail.com (Sander Reiche) Date: Wed, 6 Nov 2013 11:19:44 +0100 Subject: [Simh] RT-11 bootable tape In-Reply-To: References: <303A17BD5F8FA34DA45EEC245271AC0B949AB4F4@JGEX2K10MBX2.wmata.local> Message-ID: Indeed the tape booting works flawlessly with RT-11 V5.7 under SimH. Interesting! Thanks Tim! regards, Sander On Wed, Nov 6, 2013 at 12:06 AM, Sander Reiche wrote: > But it does seems to work in e11. Could be a hack, but I'll try V05.07 > tomorrow. > > re, > > Sander > On Nov 5, 2013 10:56 PM, "Shoppa, Tim" wrote: > >> It has been many years but I think there was a problem with the tape >> boot blocks in 5.6 that was fixed in 5.7. >> >> >> >> Tim. >> >> >> >> *From:* simh-bounces at trailing-edge.com [mailto: >> simh-bounces at trailing-edge.com] *On Behalf Of *Sander Reiche >> *Sent:* Tuesday, November 05, 2013 10:14 AM >> *To:* simh at trailing-edge.com >> *Subject:* [Simh] RT-11 bootable tape >> >> >> >> Hi all, >> >> >> >> Trying to get an actual scsi tape running on a CQD220A on real iron(tm), >> but I'm still trying to figure things out. I was originally using >> Ersatz-11, but I though I'd give it a go on SimH. >> >> >> >> When booted from a bootable simulated TK50(tk50.tap), it consistently >> halts on trying to run MDUP.Mx to further the "installation" of RT-11 from >> said tape. >> >> >> >> Following a transcript: >> >> >> >> PDP-11 simulator V3.9-0 >> >> sim> att rl0 rtv5rl.06 >> >> sim> att tq0 tk50.tap >> >> TQ: creating new file >> >> sim> b rl >> >> >> >> RT-11FB V05.06 >> >> >> >> .TYPE V5USER.TXT >> >> >> >> RT-11 V5.6 >> >> >> >> Installation of RT-11 Version 5.6 is complete and you are now >> running >> >> RT-11 from your system volume. >> >> >> >> .R MSCPCK >> >> ?MSCPCK-I-MU0-TK50 FW Rev Level is 005/HW Rev Level is 001 >> >> ?MSCPCK-W-TQK50 controller below FW Rev 4/HW Rev 6 >> >> >> >> .ass mu0 kit >> >> >> >> .ass dl0 bin >> >> >> >> .$@mub >> >> >> >> .$Load Bin,Kit >> >> >> >> .$Ini/Que/Vol/File:Bin:MBOOT.BOT Kit: >> >> MU0:/Initialize; Are you sure? Y >> >> Volume ID? HU21J >> >> Owner? MU 1/1 >> >> >> >> .$Cop Bin:MSBOOT.BOT Kit:/Pos:-1 >> >> Files copied: >> >> BIN:MSBOOT.BOT to KIT:MSBOOT.BOT >> >> >> >> .$Cop Bin:MDUP.AI Kit:/Pos:-1 >> >> Files copied: >> >> BIN:MDUP.AI to KIT:MDUP.AI >> >> >> >> .$Cop Bin:MDUP.MM Kit:/Pos:-1 >> >> Files copied: >> >> BIN:MDUP.MM to KIT:MDUP.MM >> >> >> >> .$Cop Bin:MDUP.MS Kit:/Pos:-1 >> >> Files copied: >> >> BIN:MDUP.MS to KIT:MDUP.MS >> >> >> >> .$Cop Bin:MDUP.MT Kit:/Pos:-1 >> >> Files copied: >> >> BIN:MDUP.MT to KIT:MDUP.MT >> >> >> >> .$Cop Bin:MDUP.MU Kit:/Pos:-1 >> >> Files copied: >> >> BIN:MDUP.MU to KIT:MDUP.MU >> >> >> >> .................................. >> >> >> >> .$Cop Bin:INDEX.IDX Kit:/Pos:-1 >> >> Files copied: >> >> BIN:INDEX.IDX to KIT:INDEX.IDX >> >> >> >> .$Unload Bin,Kit >> >> >> >> sim> sh tq >> >> TQ, TK50 (94MB), address=17774500-17774503, no vector, 4 units >> >> TQ0, attached to tk50.tap, write enabled, SIMH format, capacity=98MB >> >> TQ1, not attached, write enabled, SIMH format, capacity=98MB >> >> TQ2, not attached, write enabled, SIMH format, capacity=98MB >> >> TQ3, not attached, write enabled, SIMH format, capacity=98MB >> >> sim> b tq >> >> >> >> .MSBOOT V05.07 >> >> *MDUP.MU >> >> >> >> Trap stack push abort, PC: 062462 (ADD (R1)+,52040(R2)) >> >> sim> >> >> >> >> Am I doing something wrong? >> >> >> >> regards, >> >> >> >> Sander Reiche >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Jason.Armistead at otis.com Wed Nov 6 10:06:54 2013 From: Jason.Armistead at otis.com (Armistead, Jason) Date: Wed, 6 Nov 2013 15:06:54 +0000 Subject: [Simh] how to get eth connexion In-Reply-To: <527A0263.4000400@pia-sofer.fr> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> <5277773D.5050504@yahoo.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C5@REDROOF2.alohasunset.com> <527A0263.4000400@pia-sofer.fr> Message-ID: <78CD6B448AA1E54FBAB5EF46F90F9B38206C685D@UUSNWE1S.na.utcmail.com> Gérard SIMH has a console terminal connection. This is activated after SIMH starts up by creating a Telnet connection to port 10000 on your host (or else it times out). That implies that the IP protocol be activated on at least one network interface on your host. Jason -----Original Message----- From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] On Behalf Of Gérard Calliet Sent: Wednesday, 6 November 2013 3:49 AM To: simh at trailing-edge.com Subject: [External] Re: [Simh] how to get eth connexion Le 05/11/2013 13:55, Mark Pizzolato - Info Comm a écrit : >> 2) I saw we need at least one ip host connexion alive to have a >> connexion for >> >simh - I am on Windows with wincap -. Again, why ? > I'm not sure exactly what you mean by 'need at least one ip host connexion alive'. Are you saying that you need to be connected to a network? Thanks to your help, I was able to communicate using a classic wire connexion. It works also with the only wire interface, used by Windows for ip traffic, and by simh for its (ip also) traffic. If I disable the ip protocol for the interface, simh also cannot work. My question is theoretical : why do we need an ip host protocol on the host interface for simh being able of work with this interface ? It's perhaps a window / wincap issue. Don't worry about it : it is only to increese my knowledge. I do go on with wired and ip-ed solutions. Gérard Calliet _______________________________________________ Simh mailing list Simh at trailing-edge.com http://mailman.trailing-edge.com/mailman/listinfo/simh From Mark at infocomm.com Wed Nov 6 10:34:51 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Wed, 6 Nov 2013 07:34:51 -0800 Subject: [Simh] how to get eth connexion In-Reply-To: <527A0263.4000400@pia-sofer.fr> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> <5277773D.5050504@yahoo.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C5@REDROOF2.alohasunset.com> <527A0263.4000400@pia-sofer.fr> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1E8@REDROOF2.alohasunset.com> On Wednesday, November 06, 2013 at 12:49 AM, Gérard Calliet wrote: > Le 05/11/2013 13:55, Mark Pizzolato - Info Comm a écrit : > >> 2) I saw we need at least one ip host connexion alive to have a > >> connexion for > >> >simh - I am on Windows with wincap -. Again, why ? > > I'm not sure exactly what you mean by 'need at least one ip host connexion > alive'. Are you saying that you need to be connected to a network? > Thanks to your help, I was able to communicate using a classic wire > connexion. It works also with the only wire interface, used by Windows for ip > traffic, and by simh for its (ip also) traffic. > If I disable the ip protocol for the interface, simh also cannot work. > My question is theoretical : why do we need an ip host protocol on the host > interface for simh being able of work with this interface ? It's perhaps a > window / wincap issue. That is a good question. You certainly should be able to run a simh simulator using a network interface which the host system isn't using for IP traffic. I have done this in the past. In fact, prior to simh v3.9, using an extra network interface (one dedicated to simh) was the only way the simulated system could talk to its host system via IP. The key requirement is that the dedicated interface MUST be enabled and active/on. WinPcap does not have any way to "turn an interface on", so you may need some low level protocol enabled on the interface to act as a place holder to turn on the interface. IP certainly is sufficient to perform this task, but several other "Protocols" which windows At this time, I no longer run simh simulators on Windows using the additional interface since, while implementing the DELQA-T I found the issue (for Windows) which didn't allow a simh simulator to share the network interface AND to talk to the host as well. That works now. On non-windows platforms, the problem still is an issue, but there now built in support for other ways to work around this issue (with internal bridging and/or VDE). - Mark > Don't worry about it : it is only to increese my knowledge. I do go on with > wired and ip-ed solutions. > > Gérard Calliet > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh From Mark at infocomm.com Wed Nov 6 10:38:01 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Wed, 6 Nov 2013 07:38:01 -0800 Subject: [Simh] how to get eth connexion In-Reply-To: <78CD6B448AA1E54FBAB5EF46F90F9B38206C685D@UUSNWE1S.na.utcmail.com> References: <9C9FDA2BCCFB5E4098DEB87AC47B94503E2374D4@XMBVAG73.northgrum.com> <5276D267.2030200@pia-sofer.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F189@REDROOF2.alohasunset.com> <52774386.1030802@pia-sofer.fr> <5277773D.5050504@yahoo.fr> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1C5@REDROOF2.alohasunset.com> <527A0263.4000400@pia-sofer.fr> <78CD6B448AA1E54FBAB5EF46F90F9B38206C685D@UUSNWE1S.na.utcmail.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1E9@REDROOF2.alohasunset.com> On Wednesday, November 06, 2013 at 7:07 AM, Jason Armistead wrote: > Gérard > > SIMH has a console terminal connection. This is activated after SIMH starts > up by creating a Telnet connection to port 10000 on your host (or else it times > out). That implies that the IP protocol be activated on at least one network > interface on your host. > > Jason The use of the console telnet connection is not required. However, one could use it without an external network interface by connecting via the localhost network address (127.0.0.1). From priyachinc at gmail.com Thu Nov 7 07:05:28 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Thu, 7 Nov 2013 17:35:28 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1CC@REDROOF2.alohasunset.com> References: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1CC@REDROOF2.alohasunset.com> Message-ID: Hi, I'm having a weird problem now. I'm able to ping but cannot use telnet. I have a feeling I did something wrong during tcpip configuration. *$ telnet 192.168.0.37* %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 -TCPIP-E-NO_RECOVERY, unexpected name server failure *ford/system$ tcpip* TCPIP> ping 192.168.0.37 PING 192.168.0.37 (192.168.0.37): 56 data bytes 64 bytes from 192.168.0.37: icmp_seq=0 ttl=64 time=0 ms 64 bytes from 192.168.0.37: icmp_seq=1 ttl=64 time=0 ms 64 bytes from 192.168.0.37: icmp_seq=2 ttl=64 time=0 ms 64 bytes from 192.168.0.37: icmp_seq=3 ttl=64 time=0 ms ----192.168.0.37 PING Statistics---- 4 packets transmitted, 4 packets received, 0% packet loss round-trip (ms) min/avg/max = 0/0/0 ms TCPIP> TCPIP> exit - Priya On Tue, Nov 5, 2013 at 10:20 PM, Mark Pizzolato - Info Comm < Mark at infocomm.com> wrote: > Hi Chris, > > > > On Priya’s system either eth0 or em1 would produce the same results. The > simh Ethernet generic naming paradigm makes this true. > > > > Priya’s first problem is that he can’t ping. I’ll step back once packets > are moving on the wire. Once he can ping, your ideas may be relevant. > > > > - Mark > > > > *From:* simh-bounces at trailing-edge.com [mailto: > simh-bounces at trailing-edge.com] *On Behalf Of *Christopher Myers > *Sent:* Tuesday, November 05, 2013 7:55 AM > *To:* priya chincholikar > *Cc:* simh at trailing-edge.com > > *Subject:* Re: [Simh] Unable to telnet to other hosts > > > > Hey, > > > > I think you're attaching the wrong Ethernet interface. > > > > You've got it set to 'em1' when > http://www.wherry.com/gadgets/retrocomputing/vax-simh.html has it set to > 'eth0.' Not sure if this is what the problem is, just something I noticed. > > > > > > Also, just a heads up. I've had a somewhat similar problem on VAXStation > 3100 running OpenVMS 7.3. > > > > I couldn't TELNET to hosts, but could ping them and the error I would get > is the same. > > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > > When I was trying to figure this out, I discovered that OpenVMS apparently > wants a name attached to that host. So you need to give 192.168.0.37 a > text name like "MYHOST" and then you'll be able to telnet with that name > and (oddly) the IP address. > > > > What you need to do is go into the tcpip configuration program. > > > > $ TCPIP > > > > TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37 > > > > TCPIP> SHOW HOST > > > > This is how I fixed my little problem on real equipment. I had a working > ping to a host, but no ability to TELNET. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From priyachinc at gmail.com Thu Nov 7 07:48:10 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Thu, 7 Nov 2013 18:18:10 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1CC@REDROOF2.alohasunset.com> Message-ID: Hi, How do I make this work ? *$ tcpip* TCPIP> sh host %TCPIP-E-HOSTERROR, cannot process host request -TCPIP-E-NOFILE, cannot access TCPIP$HOST database file -RMS-E-FNF, file not found %TCPIP-E-HOSTERROR, cannot process host request -TCPIP-E-NOFILE, cannot access !AS database file -Priya On Thu, Nov 7, 2013 at 5:35 PM, priya chincholikar wrote: > Hi, > > I'm having a weird problem now. > I'm able to ping but cannot use telnet. I have a feeling I did something > wrong during tcpip configuration. > > *$ telnet 192.168.0.37* > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > -TCPIP-E-NO_RECOVERY, unexpected name server failure > *ford/system$ tcpip* > TCPIP> ping 192.168.0.37 > PING 192.168.0.37 (192.168.0.37): 56 data bytes > 64 bytes from 192.168.0.37: icmp_seq=0 ttl=64 time=0 ms > 64 bytes from 192.168.0.37: icmp_seq=1 ttl=64 time=0 ms > 64 bytes from 192.168.0.37: icmp_seq=2 ttl=64 time=0 ms > 64 bytes from 192.168.0.37: icmp_seq=3 ttl=64 time=0 ms > > > ----192.168.0.37 PING Statistics---- > 4 packets transmitted, 4 packets received, 0% packet loss > round-trip (ms) min/avg/max = 0/0/0 ms > TCPIP> > TCPIP> exit > > - Priya > > > On Tue, Nov 5, 2013 at 10:20 PM, Mark Pizzolato - Info Comm < > Mark at infocomm.com> wrote: > >> Hi Chris, >> >> >> >> On Priya’s system either eth0 or em1 would produce the same results. The >> simh Ethernet generic naming paradigm makes this true. >> >> >> >> Priya’s first problem is that he can’t ping. I’ll step back once packets >> are moving on the wire. Once he can ping, your ideas may be relevant. >> >> >> >> - Mark >> >> >> >> *From:* simh-bounces at trailing-edge.com [mailto: >> simh-bounces at trailing-edge.com] *On Behalf Of *Christopher Myers >> *Sent:* Tuesday, November 05, 2013 7:55 AM >> *To:* priya chincholikar >> *Cc:* simh at trailing-edge.com >> >> *Subject:* Re: [Simh] Unable to telnet to other hosts >> >> >> >> Hey, >> >> >> >> I think you're attaching the wrong Ethernet interface. >> >> >> >> You've got it set to 'em1' when >> http://www.wherry.com/gadgets/retrocomputing/vax-simh.html has it set to >> 'eth0.' Not sure if this is what the problem is, just something I noticed. >> >> >> >> >> >> Also, just a heads up. I've had a somewhat similar problem on VAXStation >> 3100 running OpenVMS 7.3. >> >> >> >> I couldn't TELNET to hosts, but could ping them and the error I would get >> is the same. >> >> >> >> -TCPIP-E-NO_RECOVERY, unexpected name server failure >> >> >> >> When I was trying to figure this out, I discovered that OpenVMS >> apparently wants a name attached to that host. So you need to give 192.168.0.37 >> a text name like "MYHOST" and then you'll be able to telnet with that name >> and (oddly) the IP address. >> >> >> >> What you need to do is go into the tcpip configuration program. >> >> >> >> $ TCPIP >> >> >> >> TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37 >> >> >> >> TCPIP> SHOW HOST >> >> >> >> This is how I fixed my little problem on real equipment. I had a working >> ping to a host, but no ability to TELNET. >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Thu Nov 7 08:01:32 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Thu, 7 Nov 2013 05:01:32 -0800 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1CC@REDROOF2.alohasunset.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F211@REDROOF2.alohasunset.com> Hi Priya, I suggest you look at the details Christopher Myers provided. I have almost no experience with VMS TCP/IP Services. I have always been a MultiNet user. Good Luck. - Mark From: priya chincholikar [mailto:priyachinc at gmail.com] Sent: Thursday, November 07, 2013 4:48 AM To: Mark Pizzolato - Info Comm Cc: Christopher Myers; simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hi, How do I make this work ? $ tcpip TCPIP> sh host %TCPIP-E-HOSTERROR, cannot process host request -TCPIP-E-NOFILE, cannot access TCPIP$HOST database file -RMS-E-FNF, file not found %TCPIP-E-HOSTERROR, cannot process host request -TCPIP-E-NOFILE, cannot access !AS database file -Priya On Thu, Nov 7, 2013 at 5:35 PM, priya chincholikar > wrote: Hi, I'm having a weird problem now. I'm able to ping but cannot use telnet. I have a feeling I did something wrong during tcpip configuration. $ telnet 192.168.0.37 %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 -TCPIP-E-NO_RECOVERY, unexpected name server failure ford/system$ tcpip TCPIP> ping 192.168.0.37 PING 192.168.0.37 (192.168.0.37): 56 data bytes 64 bytes from 192.168.0.37: icmp_seq=0 ttl=64 time=0 ms 64 bytes from 192.168.0.37: icmp_seq=1 ttl=64 time=0 ms 64 bytes from 192.168.0.37: icmp_seq=2 ttl=64 time=0 ms 64 bytes from 192.168.0.37: icmp_seq=3 ttl=64 time=0 ms ----192.168.0.37 PING Statistics---- 4 packets transmitted, 4 packets received, 0% packet loss round-trip (ms) min/avg/max = 0/0/0 ms TCPIP> TCPIP> exit - Priya On Tue, Nov 5, 2013 at 10:20 PM, Mark Pizzolato - Info Comm > wrote: Hi Chris, On Priya's system either eth0 or em1 would produce the same results. The simh Ethernet generic naming paradigm makes this true. Priya's first problem is that he can't ping. I'll step back once packets are moving on the wire. Once he can ping, your ideas may be relevant. - Mark From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] On Behalf Of Christopher Myers Sent: Tuesday, November 05, 2013 7:55 AM To: priya chincholikar Cc: simh at trailing-edge.com Subject: Re: [Simh] Unable to telnet to other hosts Hey, I think you're attaching the wrong Ethernet interface. You've got it set to 'em1' when http://www.wherry.com/gadgets/retrocomputing/vax-simh.html has it set to 'eth0.' Not sure if this is what the problem is, just something I noticed. Also, just a heads up. I've had a somewhat similar problem on VAXStation 3100 running OpenVMS 7.3. I couldn't TELNET to hosts, but could ping them and the error I would get is the same. -TCPIP-E-NO_RECOVERY, unexpected name server failure When I was trying to figure this out, I discovered that OpenVMS apparently wants a name attached to that host. So you need to give 192.168.0.37 a text name like "MYHOST" and then you'll be able to telnet with that name and (oddly) the IP address. What you need to do is go into the tcpip configuration program. $ TCPIP TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37 TCPIP> SHOW HOST This is how I fixed my little problem on real equipment. I had a working ping to a host, but no ability to TELNET. -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.w.holland at gmail.com Thu Nov 7 08:26:12 2013 From: david.w.holland at gmail.com (David Holland) Date: Thu, 7 Nov 2013 08:26:12 -0500 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F211@REDROOF2.alohasunset.com> References: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1CC@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F211@REDROOF2.alohasunset.com> Message-ID: The error implies he doesn't have a local hosts database file. This is what's on one of my systems: $ show log TCPIP$HOST "TCPIP$HOST" = "SYS$COMMON:[SYSEXE]TCPIP$HOST.DAT;1" (LNM$SYSTEM_TABLE) $ type TCPIP$HOST 127.0.0.1 LOCALHOST I *think* running @SYS$MANAGER:TCPIP$CONFIG and configuring the primary interface should have added a hostname/IP address alias to the local hosts database file. Its been a long time since I had to do reconfigure it. I'd say run it again, and poke around in the core environment menu. I think you can also create a hosts database with the TCPIP command, and the "CREATE HOST" sub-command. See: http://h71000.www7.hp.com/doc/83final/6524/6524pro_002.html David On Thu, Nov 7, 2013 at 8:01 AM, Mark Pizzolato - Info Comm wrote: > Hi Priya, > > > > I suggest you look at the details Christopher Myers provided. > > > > I have almost no experience with VMS TCP/IP Services. I have always been a > MultiNet user. > > > > Good Luck. > > > > - Mark > > > > From: priya chincholikar [mailto:priyachinc at gmail.com] > Sent: Thursday, November 07, 2013 4:48 AM > To: Mark Pizzolato - Info Comm > Cc: Christopher Myers; simh at trailing-edge.com > > > Subject: Re: [Simh] Unable to telnet to other hosts > > > > Hi, > > How do I make this work ? > > > > $ tcpip > > TCPIP> sh host > > %TCPIP-E-HOSTERROR, cannot process host request > > -TCPIP-E-NOFILE, cannot access TCPIP$HOST database file > > -RMS-E-FNF, file not found > > %TCPIP-E-HOSTERROR, cannot process host request > > -TCPIP-E-NOFILE, cannot access !AS database file > > > > -Priya > > > > > > On Thu, Nov 7, 2013 at 5:35 PM, priya chincholikar > wrote: > > Hi, > > > > I'm having a weird problem now. > > I'm able to ping but cannot use telnet. I have a feeling I did something > wrong during tcpip configuration. > > > > $ telnet 192.168.0.37 > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > ford/system$ tcpip > > TCPIP> ping 192.168.0.37 > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > 64 bytes from 192.168.0.37: icmp_seq=0 ttl=64 time=0 ms > > 64 bytes from 192.168.0.37: icmp_seq=1 ttl=64 time=0 ms > > 64 bytes from 192.168.0.37: icmp_seq=2 ttl=64 time=0 ms > > 64 bytes from 192.168.0.37: icmp_seq=3 ttl=64 time=0 ms > > > > > > ----192.168.0.37 PING Statistics---- > > 4 packets transmitted, 4 packets received, 0% packet loss > > round-trip (ms) min/avg/max = 0/0/0 ms > > TCPIP> > > TCPIP> exit > > > > - Priya > > > > On Tue, Nov 5, 2013 at 10:20 PM, Mark Pizzolato - Info Comm > wrote: > > Hi Chris, > > > > On Priya’s system either eth0 or em1 would produce the same results. The > simh Ethernet generic naming paradigm makes this true. > > > > Priya’s first problem is that he can’t ping. I’ll step back once packets > are moving on the wire. Once he can ping, your ideas may be relevant. > > > > - Mark > > > > From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] > On Behalf Of Christopher Myers > Sent: Tuesday, November 05, 2013 7:55 AM > To: priya chincholikar > Cc: simh at trailing-edge.com > > > Subject: Re: [Simh] Unable to telnet to other hosts > > > > Hey, > > > > I think you're attaching the wrong Ethernet interface. > > > > You've got it set to 'em1' when > http://www.wherry.com/gadgets/retrocomputing/vax-simh.html has it set to > 'eth0.' Not sure if this is what the problem is, just something I noticed. > > > > > > Also, just a heads up. I've had a somewhat similar problem on VAXStation > 3100 running OpenVMS 7.3. > > > > I couldn't TELNET to hosts, but could ping them and the error I would get is > the same. > > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > > When I was trying to figure this out, I discovered that OpenVMS apparently > wants a name attached to that host. So you need to give 192.168.0.37 a text > name like "MYHOST" and then you'll be able to telnet with that name and > (oddly) the IP address. > > > > What you need to do is go into the tcpip configuration program. > > > > $ TCPIP > > > > TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37 > > > > TCPIP> SHOW HOST > > > > This is how I fixed my little problem on real equipment. I had a working > ping to a host, but no ability to TELNET. > > > > > > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh From thisisentchris87 at gmail.com Thu Nov 7 09:21:51 2013 From: thisisentchris87 at gmail.com (Christopher Myers) Date: Thu, 7 Nov 2013 09:21:51 -0500 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F1CC@REDROOF2.alohasunset.com> <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F211@REDROOF2.alohasunset.com> Message-ID: According to his first post he's already configured TCPIP, but it wouldn't hurt to ask. Priya, have you run "@SYS$MANAGER:TCPIP$CONFIG" to configure TCPIP? I'm assuming also, that you already tried to input a host using the "SET HOST" command and you entered "SHOW HOST" and got the error. Try what David suggested. On Thu, Nov 7, 2013 at 8:26 AM, David Holland wrote: > The error implies he doesn't have a local hosts database file. > > This is what's on one of my systems: > > $ show log TCPIP$HOST > "TCPIP$HOST" = "SYS$COMMON:[SYSEXE]TCPIP$HOST.DAT;1" (LNM$SYSTEM_TABLE) > $ type TCPIP$HOST > 127.0.0.1 LOCALHOST > > > I *think* running @SYS$MANAGER:TCPIP$CONFIG and configuring the > primary interface should have added a hostname/IP address alias to the > local hosts database file. Its been a long time since I had to do > reconfigure it. I'd say run it again, and poke around in the core > environment menu. > > I think you can also create a hosts database with the TCPIP command, > and the "CREATE HOST" sub-command. > > See: > http://h71000.www7.hp.com/doc/83final/6524/6524pro_002.html > > David > > > On Thu, Nov 7, 2013 at 8:01 AM, Mark Pizzolato - Info Comm > wrote: > > Hi Priya, > > > > > > > > I suggest you look at the details Christopher Myers provided. > > > > > > > > I have almost no experience with VMS TCP/IP Services. I have always > been a > > MultiNet user. > > > > > > > > Good Luck. > > > > > > > > - Mark > > > > > > > > From: priya chincholikar [mailto:priyachinc at gmail.com] > > Sent: Thursday, November 07, 2013 4:48 AM > > To: Mark Pizzolato - Info Comm > > Cc: Christopher Myers; simh at trailing-edge.com > > > > > > Subject: Re: [Simh] Unable to telnet to other hosts > > > > > > > > Hi, > > > > How do I make this work ? > > > > > > > > $ tcpip > > > > TCPIP> sh host > > > > %TCPIP-E-HOSTERROR, cannot process host request > > > > -TCPIP-E-NOFILE, cannot access TCPIP$HOST database file > > > > -RMS-E-FNF, file not found > > > > %TCPIP-E-HOSTERROR, cannot process host request > > > > -TCPIP-E-NOFILE, cannot access !AS database file > > > > > > > > -Priya > > > > > > > > > > > > On Thu, Nov 7, 2013 at 5:35 PM, priya chincholikar > > > wrote: > > > > Hi, > > > > > > > > I'm having a weird problem now. > > > > I'm able to ping but cannot use telnet. I have a feeling I did something > > wrong during tcpip configuration. > > > > > > > > $ telnet 192.168.0.37 > > > > %TELNET-E-IVHOST, Invalid or unknown host 192.168.0.37 > > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > > ford/system$ tcpip > > > > TCPIP> ping 192.168.0.37 > > > > PING 192.168.0.37 (192.168.0.37): 56 data bytes > > > > 64 bytes from 192.168.0.37: icmp_seq=0 ttl=64 time=0 ms > > > > 64 bytes from 192.168.0.37: icmp_seq=1 ttl=64 time=0 ms > > > > 64 bytes from 192.168.0.37: icmp_seq=2 ttl=64 time=0 ms > > > > 64 bytes from 192.168.0.37: icmp_seq=3 ttl=64 time=0 ms > > > > > > > > > > > > ----192.168.0.37 PING Statistics---- > > > > 4 packets transmitted, 4 packets received, 0% packet loss > > > > round-trip (ms) min/avg/max = 0/0/0 ms > > > > TCPIP> > > > > TCPIP> exit > > > > > > > > - Priya > > > > > > > > On Tue, Nov 5, 2013 at 10:20 PM, Mark Pizzolato - Info Comm > > wrote: > > > > Hi Chris, > > > > > > > > On Priya’s system either eth0 or em1 would produce the same results. The > > simh Ethernet generic naming paradigm makes this true. > > > > > > > > Priya’s first problem is that he can’t ping. I’ll step back once packets > > are moving on the wire. Once he can ping, your ideas may be relevant. > > > > > > > > - Mark > > > > > > > > From: simh-bounces at trailing-edge.com [mailto: > simh-bounces at trailing-edge.com] > > On Behalf Of Christopher Myers > > Sent: Tuesday, November 05, 2013 7:55 AM > > To: priya chincholikar > > Cc: simh at trailing-edge.com > > > > > > Subject: Re: [Simh] Unable to telnet to other hosts > > > > > > > > Hey, > > > > > > > > I think you're attaching the wrong Ethernet interface. > > > > > > > > You've got it set to 'em1' when > > http://www.wherry.com/gadgets/retrocomputing/vax-simh.html has it set to > > 'eth0.' Not sure if this is what the problem is, just something I > noticed. > > > > > > > > > > > > Also, just a heads up. I've had a somewhat similar problem on VAXStation > > 3100 running OpenVMS 7.3. > > > > > > > > I couldn't TELNET to hosts, but could ping them and the error I would > get is > > the same. > > > > > > > > -TCPIP-E-NO_RECOVERY, unexpected name server failure > > > > > > > > When I was trying to figure this out, I discovered that OpenVMS > apparently > > wants a name attached to that host. So you need to give 192.168.0.37 a > text > > name like "MYHOST" and then you'll be able to telnet with that name and > > (oddly) the IP address. > > > > > > > > What you need to do is go into the tcpip configuration program. > > > > > > > > $ TCPIP > > > > > > > > TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37 > > > > > > > > TCPIP> SHOW HOST > > > > > > > > This is how I fixed my little problem on real equipment. I had a working > > ping to a host, but no ability to TELNET. > > > > > > > > > > > > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh > -------------- next part -------------- An HTML attachment was scrubbed... URL: From thisisentchris87 at gmail.com Thu Nov 7 09:31:24 2013 From: thisisentchris87 at gmail.com (Christopher Myers) Date: Thu, 7 Nov 2013 09:31:24 -0500 Subject: [Simh] Unable to telnet to other hosts Message-ID: Quick update. Checking my VAXStation, using "CREATE HOST" does create the database file that I believe solves your TELNET issue. I had the same symptoms as Priya (ping works, TELNET didn't) and adding the host I wanted to TELNET to fixed it. -------------- next part -------------- An HTML attachment was scrubbed... URL: From priyachinc at gmail.com Fri Nov 8 04:33:33 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Fri, 8 Nov 2013 15:03:33 +0530 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: Message-ID: Hi all, Everything works fine now. I poked around "@SYS$MANAGER:TCPIP$CONFIG" and finally I did TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37. So telnet to myhost connected! Finally such relief! Thanks a lot for the help and I'm a 'she' :) -Priya On Thu, Nov 7, 2013 at 8:01 PM, Christopher Myers < thisisentchris87 at gmail.com> wrote: > Quick update. > > Checking my VAXStation, using "CREATE HOST" does create the database file > that I believe solves your TELNET issue. I had the same symptoms as Priya > (ping works, TELNET didn't) and adding the host I wanted to TELNET to fixed > it. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From priyachinc at gmail.com Fri Nov 8 07:52:22 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Fri, 8 Nov 2013 18:22:22 +0530 Subject: [Simh] Size of disks created by Simulator Message-ID: Hi, I have a question about the disks created during simulation. I noticed that 3 disks get attached when we run the simulator for the first time. *[root at localhost data]# ls* *cd.iso d0.dsk d1.dsk d2.dsk ka655x.bin nvram.bin* *ford/system$ sho dev dDevice Device Error Volume Free Name Status Count Label Blocks DNFS0: Online 0FORD$DUA0: Mounted 0 FORD 2371878 FORD$DUA1: Mounted alloc 0 DATA1 2940579 FORD$DUA2: Mounted alloc 0 DATA2 2940579 FORD$DUA3: Online 0* Is there a way to increase the size of any these disks ? - Priya -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Fri Nov 8 08:15:03 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Fri, 8 Nov 2013 05:15:03 -0800 Subject: [Simh] Size of disks created by Simulator In-Reply-To: References: Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF90B5F240@REDROOF2.alohasunset.com> The disks you've got and the size that they are, are a direct reflection of what you've got in your configuration file (combined with default values for disk types). Hi Priya, The MSCP disk controller provides emulation for 4 separate disks, and up to 4 separate MSCP controllers can be enabled and configured. Each disk associated with a particular MSCP controller can emulate a traditional disk model (RD54, RA81, etc.) with its natural size or can be an arbitrary sized device using the RAUSER disk type. The following commands entered directly into the simulator or in its configuration file can adjust these details: sim> SET RQ0 RA90 sim> SET RQ1 RAUSER=4096 The HELP command will explain many potential details: sim> HELP RQ FYI, the simulator automatically looks for and loads a configuration file called simulator-name.ini when it starts. An arbitrarily named configuration file can be specified on the command line when invoking the simulator: $ vax config.ini The commands within a configuration file will be displayed as they are executed if the -V switch is entered on the command line: $ vax -V or sim> do -V otherconfig.ini If your configuration file starts a simulator executing instructions (BOOT, GO,RUN, etc.), then you won't ever see the "sim> " prompt. While a simulator is executing, entering the ^E character will drop you back to the "sim> " prompt. Once there, you can look around, and/or change details of the simulator configuration. - Mark From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] On Behalf Of priya chincholikar Sent: Friday, November 08, 2013 4:52 AM To: simh at trailing-edge.com Subject: [Simh] Size of disks created by Simulator Hi, I have a question about the disks created during simulation. I noticed that 3 disks get attached when we run the simulator for the first time. [root at localhost data]# ls cd.iso d0.dsk d1.dsk d2.dsk ka655x.bin nvram.bin ford/system$ sho dev d Device Device Error Volume Free Name Status Count Label Blocks DNFS0: Online 0 FORD$DUA0: Mounted 0 FORD 2371878 FORD$DUA1: Mounted alloc 0 DATA1 2940579 FORD$DUA2: Mounted alloc 0 DATA2 2940579 FORD$DUA3: Online 0 Is there a way to increase the size of any these disks ? - Priya -------------- next part -------------- An HTML attachment was scrubbed... URL: From Bruce.Claremont at MigrationSpecialties.com Fri Nov 8 11:06:06 2013 From: Bruce.Claremont at MigrationSpecialties.com (Bruce Claremont) Date: Fri, 08 Nov 2013 09:06:06 -0700 Subject: [Simh] Size of disks created by Simulator Message-ID: The easiest way to increase the disk size under VMS is to create new disks, then use BACKUP /IMAGE to move transfer the data from old to new. At 05:52 AM 11/8/2013, priya chincholikar wrote: >Hi, > >I have a question about the disks created during simulation. >I noticed that 3 disks get attached when we run the simulator for the first time. > >[root at localhost data]# ls >cd.iso d0.dsk d1.dsk d2.dsk ka655x.bin nvram.bin > >ford/system$ sho dev d > >Device Device Error Volume Free > > Name Status Count Label Blocks >DNFS0: Online 0 >FORD$DUA0: Mounted 0 FORD 2371878 >FORD$DUA1: Mounted alloc 0 DATA1 2940579 >FORD$DUA2: Mounted alloc 0 DATA2 2940579 >FORD$DUA3: Online 0 > > >Is there a way to increase the size of any these disks ? > >- Priya >_______________________________________________ >Simh mailing list >Simh at trailing-edge.com >http://mailman.trailing-edge.com/mailman/listinfo/simh Mr. Bruce Claremont, Software Preservationist Migration Specialties International, Inc. 217 West 2nd Street, Florence, CO 81226-1403 Bruce.Claremont at MigrationSpecialties.com www.MigrationSpecialties.com +1 719-784-9196, Fax: +1 888-854-3417 Get your free Virtual Alpha at FreeAXP.com. Continuity in Computing: Founded in 1992, Migration Specialties offers modern solutions for legacy hardware & software. Look to us for virtual VAX and Alpha solutions along with OpenVMS and Tru64 Unix support. Visit our web site for more information. -------------- next part -------------- An HTML attachment was scrubbed... URL: From thisisentchris87 at gmail.com Fri Nov 8 13:23:42 2013 From: thisisentchris87 at gmail.com (Christopher Myers) Date: Fri, 8 Nov 2013 13:23:42 -0500 Subject: [Simh] Unable to telnet to other hosts In-Reply-To: References: Message-ID: You're very welcome and I didn't expect that! ;) One of the many oddities of OpenVMS. You can't just telnet into a certain address without it being defined a name in a database. Everyday is an adventure! On Fri, Nov 8, 2013 at 4:33 AM, priya chincholikar wrote: > Hi all, > > Everything works fine now. I poked around "@SYS$MANAGER:TCPIP$CONFIG" and > finally I did > TCPIP> SET HOST MYHOST /ADDRESS=192.168.0.37. > > So telnet to myhost connected! > > Finally such relief! Thanks a lot for the help and I'm a 'she' :) > > -Priya > > > > On Thu, Nov 7, 2013 at 8:01 PM, Christopher Myers < > thisisentchris87 at gmail.com> wrote: > >> Quick update. >> >> Checking my VAXStation, using "CREATE HOST" does create the database file >> that I believe solves your TELNET issue. I had the same symptoms as Priya >> (ping works, TELNET didn't) and adding the host I wanted to TELNET to fixed >> it. >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From priyachinc at gmail.com Mon Nov 11 06:39:19 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Mon, 11 Nov 2013 17:09:19 +0530 Subject: [Simh] Size of disks created by Simulator In-Reply-To: References: Message-ID: Hi, I understand that sim> SET RQ1 RAUSER=4096 will give me 4096 MB space. I want to create atleast 20GB disk size. I read that "*RAUSER is a "user specified" disk; **the user can specify the size of the disk in either MB (1000000 bytes) or logical block numbers (LBN's, 512 **bytes each). The minimum size is 5MB; the maximum size is 2GB without extended file support, 1TB with extended file support* " So that means its possible to create a 20 GB disk.. How do I proceed ? - Priya On Fri, Nov 8, 2013 at 9:36 PM, Bruce Claremont < Bruce.Claremont at migrationspecialties.com> wrote: > The easiest way to increase the disk size under VMS is to create new > disks, then use BACKUP /IMAGE to move transfer the data from old to new. > > > At 05:52 AM 11/8/2013, priya chincholikar wrote: > > Hi, > > I have a question about the disks created during simulation. > I noticed that 3 disks get attached when we run the simulator for the > first time. > > > > > > > > *[root at localhost data]# ls cd.iso d0.dsk d1.dsk d2.dsk ka655x.bin > nvram.bin ford/system$ sho dev d Device Device > Error Volume Free * > Name Status Count Label Blocks > DNFS0: Online 0 > FORD$DUA0: Mounted 0 FORD 2371878 > FORD$DUA1: Mounted alloc 0 DATA1 2940579 > FORD$DUA2: Mounted alloc 0 DATA2 2940579 > > * FORD$DUA3: Online 0 * > > Is there a way to increase the size of any these disks ? > > - Priya > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > Mr. Bruce Claremont, Software Preservationist > Migration Specialties International, Inc. > 217 West 2nd Street, Florence, CO 81226-1403 > Bruce.Claremont at MigrationSpecialties.com > www.MigrationSpecialties.com > +1 719-784-9196, Fax: +1 > 888-854-3417 > > Get your free Virtual Alpha at FreeAXP.com . > > *Continuity in Computing*: Founded in 1992, Migration Specialties offers > modern solutions for legacy hardware & software. Look to us for virtual > VAX and Alpha solutions along with OpenVMS and Tru64 Unix support. Visit > our web site for more information. > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh > -------------- next part -------------- An HTML attachment was scrubbed... URL: From andreas.bucher at alcatel-lucent.com Mon Nov 11 08:50:13 2013 From: andreas.bucher at alcatel-lucent.com (Bucher, Andreas (Andreas)** CTR **) Date: Mon, 11 Nov 2013 13:50:13 +0000 Subject: [Simh] Size of disks created by Simulator In-Reply-To: References: Message-ID: Hi, that's quite easy: 1) Either in the SIMH console or in the VAX.INI file used to configure your simulation, use the following commands: {from VAX.INI} ; This virtual machine has 256M memory (cpu extend to enable mem >64M) ; note: set cpu extend is not needed, as it is implicitely included in the 256m setting ;set cpu extend set cpu 256m ; Define disk drive types. (RAUSER=sizeMB is variable size) set rq0 ra92 set rq1 rauser=2000 set rq2 cdrom ;set rq3 cdrom set rq3 rauser=20000 ; the latter will define DUA3: in VMS as ~20GB = ~40Mio blocks ; Attach defined drives to local files attach rq0 d0.dsk attach rq1 d1.dsk attach rq3 d3.dsk ; d3.dsk will be the ~20GB image file of DUA3: ; Attach the CD-ROM to its image file (read-only) attach -r rq2 ..\images\vms072.iso 2) then boot up the system: simh> boot cpu (or put this command in the VAX.INI, and launch the VAX emulator) 3) Once VMS has loaded, you need to initialize the newly created disk: $ init dua3: test This may take a while, as now, the d3.dsk container file on the host is written, as VMS initializes the file system inside it. 4) Next, mount it: $ mount dua3: test 5) If you list your devices now, you should see about 40M Blocks = 20GB $ show dev d Device Device Error Volume Free Trans Mnt Name Status Count Label Blocks Count Cnt VXAB03$DUA0: Mounted 0 SYS1 762768 283 1 VXAB03$DUA1: Mounted 0 DAT1 3797752 1 1 VXAB03$DUA2: Online 0 VXAB03$DUA3: Mounted alloc 0 TEST 39079352 1 1 6) Your 20GB disk is now usable: $ dir dua3:[000000] Directory DUA3:[000000] 000000.DIR;1 BACKUP.SYS;1 BADBLK.SYS;1 BADLOG.SYS;1 BITMAP.SYS;1 CONTIN.SYS;1 CORIMG.SYS;1 INDEXF.SYS;1 SECURITY.SYS;1 VOLSET.SYS;1 Total of 10 files. 7) The next time you boot um VMS and need this disk, you only have to mount it. Hope this helps ! Kind Regards, Andreas > -----Original Message----- > From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing- > edge.com] On Behalf Of priya chincholikar > Sent: Montag, 11. November 2013 12:39 > To: Bruce Claremont > Cc: simh at trailing-edge.com > Subject: Re: [Simh] Size of disks created by Simulator > > Hi, > > I understand that sim> SET RQ1 RAUSER=4096 will give me 4096 MB space. > I want to create atleast 20GB disk size. > I read that > "RAUSER is a "user specified" disk; the user can specify the size of > the disk in either MB (1000000 bytes) or logical block numbers (LBN's, > 512 bytes each). The minimum size is 5MB; the maximum size is 2GB > without extended file support, 1TB with extended file support " > So that means its possible to create a 20 GB disk.. How do I proceed ? > > - Priya > > > On Fri, Nov 8, 2013 at 9:36 PM, Bruce Claremont > wrote: > > > The easiest way to increase the disk size under VMS is to create > new disks, then use BACKUP /IMAGE to move transfer the data from old to > new. > > > At 05:52 AM 11/8/2013, priya chincholikar wrote: > > > Hi, > > I have a question about the disks created during > simulation. > I noticed that 3 disks get attached when we run the > simulator for the first time. > > [root at localhost data]# ls > cd.iso d0.dsk d1.dsk d2.dsk ka655x.bin nvram.bin > > ford/system$ sho dev d > > Device Device Error Volume > Free > > Name Status Count Label > Blocks > DNFS0: Online 0 > FORD$DUA0: Mounted 0 FORD > 2371878 > FORD$DUA1: Mounted alloc 0 DATA1 > 2940579 > FORD$DUA2: Mounted alloc 0 DATA2 > 2940579 > FORD$DUA3: Online 0 > > > Is there a way to increase the size of any these disks ? > > - Priya > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > Mr. Bruce Claremont, Software Preservationist > Migration Specialties International, Inc. > 217 West 2nd Street, Florence, CO 81226-1403 > Bruce.Claremont at MigrationSpecialties.com > www.MigrationSpecialties.com > +1 719-784-9196, Fax: +1 > 888-854-3417 > > Get your free Virtual Alpha at FreeAXP.com > . > > Continuity in Computing: Founded in 1992, Migration Specialties > offers modern solutions for legacy hardware & software. Look to us > for virtual VAX and Alpha solutions along with OpenVMS and Tru64 Unix > support. Visit our web site for more information. > > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh > > From priyachinc at gmail.com Tue Nov 12 07:22:26 2013 From: priyachinc at gmail.com (priya chincholikar) Date: Tue, 12 Nov 2013 17:52:26 +0530 Subject: [Simh] Size of disks created by Simulator In-Reply-To: References: Message-ID: Hi, Yes, I created two 30 GB disks. Should have tried the suggestions before reading too much :p Anyways Thanks for the help :) -Priya On Mon, Nov 11, 2013 at 7:20 PM, Bucher, Andreas (Andreas)** CTR ** < andreas.bucher at alcatel-lucent.com> wrote: > Hi, > > that's quite easy: > > 1) > Either in the SIMH console or in the VAX.INI file used to configure your > simulation, use the following commands: > > {from VAX.INI} > > ; This virtual machine has 256M memory (cpu extend to enable mem >64M) > ; note: set cpu extend is not needed, as it is implicitely included in the > 256m setting > ;set cpu extend > set cpu 256m > > ; Define disk drive types. (RAUSER=sizeMB is variable size) > set rq0 ra92 > set rq1 rauser=2000 > set rq2 cdrom > ;set rq3 cdrom > set rq3 rauser=20000 > ; the latter will define DUA3: in VMS as ~20GB = ~40Mio blocks > > ; Attach defined drives to local files > attach rq0 d0.dsk > attach rq1 d1.dsk > attach rq3 d3.dsk > ; d3.dsk will be the ~20GB image file of DUA3: > > ; Attach the CD-ROM to its image file (read-only) > attach -r rq2 ..\images\vms072.iso > > 2) > then boot up the system: > simh> boot cpu > (or put this command in the VAX.INI, and launch the VAX emulator) > > 3) > Once VMS has loaded, you need to initialize the newly created disk: > $ init dua3: test > > This may take a while, as now, the d3.dsk container file on the host is > written, as VMS initializes the file system inside it. > > 4) > Next, mount it: > $ mount dua3: test > > 5) > If you list your devices now, you should see about 40M Blocks = 20GB > > $ show dev d > > Device Device Error Volume Free > Trans Mnt > Name Status Count Label Blocks > Count Cnt > VXAB03$DUA0: Mounted 0 SYS1 762768 > 283 1 > VXAB03$DUA1: Mounted 0 DAT1 3797752 > 1 1 > VXAB03$DUA2: Online 0 > VXAB03$DUA3: Mounted alloc 0 TEST 39079352 > 1 1 > > 6) Your 20GB disk is now usable: > $ dir dua3:[000000] > > Directory DUA3:[000000] > > 000000.DIR;1 BACKUP.SYS;1 BADBLK.SYS;1 BADLOG.SYS;1 > BITMAP.SYS;1 CONTIN.SYS;1 CORIMG.SYS;1 INDEXF.SYS;1 > SECURITY.SYS;1 VOLSET.SYS;1 > > Total of 10 files. > > 7) The next time you boot um VMS and need this disk, you only have to > mount it. > > > Hope this helps ! > > Kind Regards, > Andreas > > > > -----Original Message----- > > From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing- > > edge.com] On Behalf Of priya chincholikar > > Sent: Montag, 11. November 2013 12:39 > > To: Bruce Claremont > > Cc: simh at trailing-edge.com > > Subject: Re: [Simh] Size of disks created by Simulator > > > > Hi, > > > > I understand that sim> SET RQ1 RAUSER=4096 will give me 4096 MB space. > > I want to create atleast 20GB disk size. > > I read that > > "RAUSER is a "user specified" disk; the user can specify the size of > > the disk in either MB (1000000 bytes) or logical block numbers (LBN's, > > 512 bytes each). The minimum size is 5MB; the maximum size is 2GB > > without extended file support, 1TB with extended file support " > > So that means its possible to create a 20 GB disk.. How do I proceed ? > > > > - Priya > > > > > > On Fri, Nov 8, 2013 at 9:36 PM, Bruce Claremont > > wrote: > > > > > > The easiest way to increase the disk size under VMS is to create > > new disks, then use BACKUP /IMAGE to move transfer the data from old to > > new. > > > > > > At 05:52 AM 11/8/2013, priya chincholikar wrote: > > > > > > Hi, > > > > I have a question about the disks created during > > simulation. > > I noticed that 3 disks get attached when we run the > > simulator for the first time. > > > > [root at localhost data]# ls > > cd.iso d0.dsk d1.dsk d2.dsk ka655x.bin nvram.bin > > > > ford/system$ sho dev d > > > > Device Device Error Volume > > Free > > > > Name Status Count Label > > Blocks > > DNFS0: Online 0 > > FORD$DUA0: Mounted 0 FORD > > 2371878 > > FORD$DUA1: Mounted alloc 0 DATA1 > > 2940579 > > FORD$DUA2: Mounted alloc 0 DATA2 > > 2940579 > > FORD$DUA3: Online 0 > > > > > > Is there a way to increase the size of any these disks ? > > > > - Priya > > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > > > > > Mr. Bruce Claremont, Software Preservationist > > Migration Specialties International, Inc. > > 217 West 2nd Street, Florence, CO 81226-1403 > > Bruce.Claremont at MigrationSpecialties.com > > www.MigrationSpecialties.com > > +1 719-784-9196, Fax: +1 > > 888-854-3417 > > > > Get your free Virtual Alpha at FreeAXP.com > > . > > > > Continuity in Computing: Founded in 1992, Migration Specialties > > offers modern solutions for legacy hardware & software. Look to us > > for virtual VAX and Alpha solutions along with OpenVMS and Tru64 Unix > > support. Visit our web site for more information. > > > > > > _______________________________________________ > > Simh mailing list > > Simh at trailing-edge.com > > http://mailman.trailing-edge.com/mailman/listinfo/simh > > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob at supnik.org Tue Nov 12 09:51:07 2013 From: bob at supnik.org (Bob Supnik) Date: Tue, 12 Nov 2013 09:51:07 -0500 Subject: [Simh] Unaligned references to IO space Message-ID: <5282405B.6090706@supnik.org> A bug was reported that Ultrix conversational boot fails because the handling of unaligned references into IO space was incorrect. The issue is that the unaligned code in vax_mmu.c issues a pair of longword reads surrounding the unaligned reference, but the Qbus IO routine sees the full address (with <1:0> intact) and tries to fetch two sequential 16b words starting at the odd word address. The suggested fix was to force alignment of the PA by zeroing <1:0> for the unaligned reads. Unfortunately, the problem is much more complex, and that fix won't work as a general solution. First of all, the VAX Architecture Spec (DEC STD 032) says of IO space: "References using a length attribute other than the length of the register, or to unaligned addresses, may produce UNPREDICTABLE results." The code is question is doing a BLBC (longword operand) on a 16b register as its odd byte address. This seems to be the result of an "optimization" in the C compiler going awry. The code should have generated a BITW #xyz,register. Second, the handling of unaligned longword references, in CVAX anyway, is much more nuanced than fetching 8 bytes all the time. CVAX doesn't use the low order two bits of the physical address at all; it uses bits<29:2> and then a four bit byte mask to indicate which bytes are wanted. So an aligned longword read would generate: pa<29:2> + 1111 while an aligned word read would generate: pa<29:2> + 0011 or 1100, depending on which half is needed while a byte read would generate pa<29:2> + 0001 or 0010 or 0100 or 1000 Unaligned longword reads generate a pair of longword reads: pa<29:2> + 1110/1100/1000 pa<29:2>+1 + 0001/0011/0111 This is important because the QBus interface generates the transaction based on the byte mask, NOT the length. To look at the details for unaligned longword read: pa<1:0> = 01 - generates pa<29:2> + 1110, creating 2 Qbus reads - generates pa<29:2>+1 + 0001, creating 1 Qbus read - the upper word isn't read because the byte masks are 0 pa<1:0> = 10 - generates pa<29:2> + 1100, creating 1 Qbus read - the lower word isn't read - generates pa<29:2>+1 + 0011, creating 1 Qbus read - the upper word isn't read pa<1:0> = 11 - generates pa<29:2> + 1000, creating 1 Qbus read - the lower word isn't read - generates pa<29:2>+1 + 0111, creating 2 Qbus reads The reason this matters is that Qbus reads can have side effects. So if a read transaction occurs that wasn't expected, it can mess up state. Admittedly, this is not likely, but it can happen and apparently does in the QDSS code. Thus, the unaligned flows are wrong, at least for CVAX. The simulator uses PA<1:0> plus length (forced to longword in the unaligned case) as a substitute for byte mask. This doesn't work when going to IO space; there's not enough detail preserved to parse the second reference properly. The simulator will generate 4 Qbus operations on an unaligned reference, when in fact either 2 or 3 occur. Ugh! I am not at all sure how to fix this. The standard Read and Write routines don't pass enough information to lower-level routines to figure out what's going on. The current fix breaks the 780 as well. Nexus adapters only support aligned longword operations and detect unaligned operations by looking at address<1:0>. Unibus IO space only supports aligned word and byte operations. One possibility is to make the unaligned flows more nuanced, and fetch exactly as many words/longwords as are needed for the extraction. However, I suspect that fixing this properly will require generalization of the vax_mmu.c Read and Write unaligned flows. I will probably need to add a model-dependent test to see whether unaligned non-memory references need special handling, and then add model-dependent routines for unaligned IO references. This will allow passing enough information to create the correct behavior. This would be fine for my version of the simulator, which just has two models. However, I understand that the GIT pool now has many other models, and all of them would be affected by this change. Further, the authors would need to understand the behavior of unaligned IO space accesses, which is quite difficult without going through schematics. /Bob Supnik From bsupnik at comcast.net Thu Nov 14 07:41:57 2013 From: bsupnik at comcast.net (Bob Supnik) Date: Thu, 14 Nov 2013 12:41:57 +0000 (UTC) Subject: [Simh] VAX unaligned In-Reply-To: <784806969.4134004.1384380200258.JavaMail.root@comcast.net> Message-ID: <1085276092.4456773.1384432917407.JavaMail.root@comcast.net> As I wrote, the unaligned logic on the VAX is not quite right. Right now, the simulator fetches the 2 longwords (64b) that surround the unaligned object. That's fine for memory, but in IO space, it doesn't work. One suggestion was to force longword alignment of the addresses being used, but that doesn't work either - the 780 aborts on unaligned references and would now see the requests as aligned. CVAX does byte-masked transactions that touch exactly the bytes that are needed, and the Qbus adapter changes those transactions into appropriate word transactions (on reads) and byte/word transactions on writes. However, this behavior may or may not be right for other models (it's certainly wrong for 780). Accordingly, I believe that handling of unaligned access to IO space will have to be broken out to model-specific code. /Bob Supnik From bob at jfcl.com Fri Nov 22 09:41:33 2013 From: bob at jfcl.com (Bob Armstrong) Date: Fri, 22 Nov 2013 06:41:33 -0800 Subject: [Simh] Resurrecting the ARPAnet IMP Message-ID: <004a01cee790$f0d411e0$d27c35a0$@com> This summer a group of us worked together to resurrect the original ARPAnet IMP software, and I'm now happy to say that the IMP lives again in simulation. It's possible to run the original IMP software on a modified version of the H316 simh and to set up a virtual network of simulated IMPs talking to each other. IMP to IMP connections, which would have originally been carried over leased telephone lines, are tunneled over IP. As far as we can tell, everything works pretty much as it did in the early 1970s. IMPs are able to exchange routing information, console to console communications, network statistics, and they would carry host traffic if there were hosts on the network. The hooks are in there to allow simh to support the IMP side of the 1822 host interface, and the next step would be to recover the OS for an ARPAnet era host and then extend the corresponding simulator to talk to the IMP simulation. If you'd like to know more, you can read a detailed account of the whole adventure here - http://walden-family.com/bbn/imp-code.pdf Everyone involved has agreed to release their work under the same terms as Bob Supnik's original simh license, and I'm looking for suggestions as to how to handle that. We could just ZIP everything up and host it on the website along with all the other BBN and ARPAnet documentation. If the community considers the simh extensions for the BBN hardware to be of general interest then it could be submitted to the current simh repository. Or it could go somewhere else - I am open to suggestions. Thanks, Bob Armstrong -------------- next part -------------- An HTML attachment was scrubbed... URL: From vince at mulhollon.com Fri Nov 22 10:59:47 2013 From: vince at mulhollon.com (Vince Mulhollon) Date: Fri, 22 Nov 2013 09:59:47 -0600 Subject: [Simh] Resurrecting the ARPAnet IMP In-Reply-To: <004a01cee790$f0d411e0$d27c35a0$@com> References: <004a01cee790$f0d411e0$d27c35a0$@com> Message-ID: On Fri, Nov 22, 2013 at 8:41 AM, Bob Armstrong wrote: > IMP to IMP connections, which would have originally been carried over > leased telephone lines, are tunneled over IP. > Are you familiar with the decnet HECnet that runs over the net? Might be interesting to have something for simh users to connect themselves to. -------------- next part -------------- An HTML attachment was scrubbed... URL: From frisbie at flying-disk.com Fri Nov 22 11:01:45 2013 From: frisbie at flying-disk.com (Alan Frisbie) Date: Fri, 22 Nov 2013 08:01:45 -0800 (PST) Subject: [Simh] Resurrecting the ARPAnet IMP Message-ID: <13112208014513_448@slug.flying-disk.com> > This summer a group of us worked together to resurrect the > original ARPAnet IMP software, and I'm now happy to say that the > IMP lives again in simulation. That is so cool! It brings back many memories of working at SDC in Santa Monica back in the early 1970s. One memorable item was the teletype listing posted on the wall showing the interaction between "Doctor" and "Parry". I don't recall the sites the two programs were running at, or even if the connection between the two had a human in the loop, but it was quite amusing to read. Does anyone else remember that? Alan Frisbie From bob at supnik.org Mon Nov 25 20:33:51 2013 From: bob at supnik.org (Bob Supnik) Date: Mon, 25 Nov 2013 20:33:51 -0500 Subject: [Simh] Unaligned references Message-ID: <5293FA7F.9060703@supnik.org> I have a design with probe coding for fixing the unaligned IO space problem recently uncovered in the VAX emulator. Because it tears up the core of unaligned processing, I'd like some other eyes to look at it before I start editing code and debugging. My plan is: a) verify all cases of unaligned access to memory by simple tests (read B, W, L, Q unaligned at every possible offset; write B, W, L, Q unaligned at every possible offset) b) run HCORE, the hard core diagnostic - this will test unaligned references with memory management c) verify that the VAX 780 still runs VMS (unaligned IO references are not allowed, so only unaligned memory references need to be working correctly) d) verify all cases of unaligned access to Qbus IO space - a bit tricky, as I need to find IO registers that are not "sparse" e) verify that CVAX still runs VMS f) turn over the changes to the community for further testing The design paper is attached, for review. /Bob -------------- next part -------------- Design Notes for Fixing VAX Unaligned Access to IO and Register Space Problem Statement: VAX unaligned accesses are handled by reading the surrounding longword (or longwords) and a) for reads, extracting the addressed addressed word or longword b) for writes, inserting the addressed word or longword and then writing the surrounding longword (or longwords) back This is correct for all memory cases. On the 11/780, the unaligned access to register or IO space causes an error, as it should. On CVAX, it causes incorrect behavior, by either performing too many QBus references, or performing read-modify-writes instead of pure writes, or accessing the wrong Qbus locations. The problem cannot be trivially solved with address manipulation. The core issues is that on CVAX, unaligned access is done to exactly as many bytes as are required, using a base longword address and a byte mask. There are five cases, corresponding to word and longword lengths, and byte offsets 1, 2 (longword only), and 3. Further, behavior is different for reads and writes, because the Qbus always performs word operations on reads, leaving it to the processor to extract a byte if needed. Conceptual design: Changes in vax_mmu.c: Unaligned access is done with two separate physical addresses, pa and pa1, because if the access crosses a page boundary, pa1 may not be contiguous with pa. It's worth noting that in an unaligned access, the low part of the data begins at pa (complete with byte offset), but the high parts begins at pa1 & ~03 (always in the low-order end of the second longword). To handle unaligned data, we will add two routines for read and write unaligned: data = ReadU (pa, len); WriteU (pa, len, val); Note that the length can be 1, 2, or 3 bytes. For ReadU, data is return right-aligned and masked. For WriteU, val is expected to be right-aligned and masked. The read-unaligned flows are changed as follows: if (mapen && ((off + lnt) > VA_PAGSIZE)) { /* cross page? */ vpn = VA_GETVPN (va + lnt); /* vpn 2nd page */ tbi = VA_GETTBI (vpn); xpte = (va & VA_S0)? stlb[tbi]: ptlb[tbi]; /* access tlb */ if (((xpte.pte & acc) == 0) || (xpte.tag != vpn) || ((acc & TLB_WACC) && ((xpte.pte & TLB_M) == 0))) xpte = fill (va + lnt, lnt, acc, NULL); /* fill if needed */ pa1 = ((xpte.pte & TLB_PFN) | VA_GETOFF (va + 4)) & ~03; } else pa1 = ((pa + 4) & PAMASK) & ~03; /* not cross page */ bo = pa & 3; if (lnt >= L_LONG) { /* lw unaligned? */ sc = bo << 3; wl = ReadU (pa, L_LONG - bo); /* read both fragments */ wh = ReadU (pa1, bo); /* extract */ return ((wl | (wh << (32 - sc))) & LMASK); } else if (bo == 1) /* read within lw */ return ReadU (pa, L_WORD); else { wl = ReadU (pa, L_BYTE); /* word cross lw */ wh = ReadU (pa1, L_BYTE); /* read, extract */ return (wl | (wh << 8)); } These are not very different, but they do reflect that ReadU returns right-aligned and properly masked data, rather than the encapsulating longword. The write-unaligned flows change rather more drastically: if (mapen && ((off + lnt) > VA_PAGSIZE)) { vpn = VA_GETVPN (va + 4); tbi = VA_GETTBI (vpn); xpte = (va & VA_S0)? stlb[tbi]: ptlb[tbi]; /* access tlb */ if (((xpte.pte & acc) == 0) || (xpte.tag != vpn) || ((xpte.pte & TLB_M) == 0)) xpte = fill (va + lnt, lnt, acc, NULL); pa1 = ((xpte.pte & TLB_PFN) | VA_GETOFF (va + 4)) & ~03; } else pa1 = ((pa + 4) & PAMASK) & ~03; bo = pa & 3; if (lnt >= L_LONG) { sc = bo << 3; WriteU (pa, L_LONG - bo, val & insert[L_LONG - bo]); WriteU (pa, bo, (val >> (32 - sc)) & insert[bo]); } else if (bo == 1) /* read within lw */ WriteU (pa, L_WORD, val & WMASK); else { /* word cross lw */ WriteU (pa, L_BYTE, val & BMASK); WriteU (pa, L_BYTE, (val >> 8) & BMASK); } return; } Note that all the burden here has been thrown on the WriteU routine. ------------- ReadU is the simpler of the two routines that needs to be written. It will handle memory reads and defer register and IO space to model-specific unaligned handlers. int32 ReadU (uint32 pa, int32 lnt) { int32 dat; int32 sc = (pa & 3) << 3; if (ADDR_IS_MEM (pa)) dat = M[pa >> 2]; else { mchk = REF_V; if (ADDR_IS_IO (pa)) dat = ReadIOU (pa, lnt); else dat = ReadRegU (pa, lnt); } return ((dat >> sc) & insert[lnt]); } Note that the ReadIOU and ReadRegU return a "full longword," just like their aligned counterparts, and ReadU right-aligns the result, just as ReadB, ReadW, and ReadL do. WriteU must handle the memory read-modify-write sequence. However, it defers register and IO space to model-specific unaligned handlers. void WriteU (uint32 pa, int32 lnt, int32 val) { if (ADDR_IS_MEM (pa)) { int32 bo = pa & 3; int32 sc = bo << 3; M[pa >> 2] = (M[pa >> 2] & ~(insert[len] << sc) | (val << sc); } else if ADDR_IS_IO (pa) WriteIOU (pa, lnt, val); else WriteRegU (pa, lnt, val); return; } -------------- For the 11/780, ReadIOU, ReadRegU, WriteIOU, and WriteRegU all do the same thing: they throw an SBI machine check. We can write explicit routines to do this (and remove the unaligned checks from all the normal adapter flows), or leave things as they are and simply define the four routines as macros that go to the normal routines. So there's very little to do. On CVAX, I suspect that ReadRegU and WriteRegU behave like the normal routines. The CVAX specs don't say much, but CMCTL (the memory controller) notes that it ignores the byte mask and treats every access as an aligned longword access. I suspect this is true for the other CVAX support chips, but I no longer have chip specs. The Qbus, on the other hand... that's a fun one. Note that all of these cases are presented to the existing aligned IO routine: bo = 0, byte, word, or longword length bo = 2, word bo = 1, 2, 3, byte length All the other cases are going to end up at ReadIOU and WriteIOU, and they must turn the request into the exactly correct number of Qbus accesses AND NO MORE, because Qbus reads can have side-effects, and word read-modify-write is NOT the same as a byte write. The read cases are: bo = 0, byte or word - read one word bo = 1, byte - read one word bo = 2, byte or word - read one word bo = 3, byte - read one word bo = 0, triword - read two words bo = 1, word or triword - read two words ReadIOU is very similar to the existing ReadIO: int32 ReadIOU (uint32 pa, int32 lnt) { int32 iod; iod = ReadQb (pa); /* wd from Qbus */ if ((lnt + (pa & 1)) <= 2) /* byte or word & even */ iod = iod << ((pa & 2)? 16: 0); /* one op */ else iod = (ReadQb (pa + 2) << 16) | iod; /* two ops, get 2nd wd */ SET_IRQL; return iod; } The write cases are: bo = x, lnt = byte - write one byte bo = 0 or 2, lnt = word - write one word bo = 1, lnt = word - write two bytes bo = 0, lnt = triword - write word, byte bo = 1, lnt = triword - write byte, word WriteIOU is similar to the existing WriteIO: void WriteIO (uint32 pa, int32 val, int32 lnt) { switch (lnt) { case L_BYTE: /* byte */ WriteQb (pa, val & BMASK, WRITEB); break; case L_WORD: /* word */ if (pa & 1) { /* odd addr? */ WriteQb (pa, val & BMASK, WRITEB); WriteQb (pa + 1, (val >> 8) & BMASK, WRITEB); } else WriteQb (pa, val, WRITE); break; case 3: /* triword */ if (pa & 1) { /* odd addr? */ WriteQb (pa, val & BMASK, WRITEB); WriteQb (pa + 1, (val >> 8) & WMASK, WRITE); } else { WriteQb (pa, val & WMASK, WRITE); WriteQb (pa + 2, (val >> 16) & BMASK, WRITEB); } break; } SET_IRQL; return; } ----------------- I think this handles all the cases. /Bob Supnik From jim at deitygraveyard.com Tue Nov 26 22:49:44 2013 From: jim at deitygraveyard.com (Jim Carpenter) Date: Tue, 26 Nov 2013 22:49:44 -0500 Subject: [Simh] Resurrecting the ARPAnet IMP In-Reply-To: <004a01cee790$f0d411e0$d27c35a0$@com> References: <004a01cee790$f0d411e0$d27c35a0$@com> Message-ID: On Fri, Nov 22, 2013 at 9:41 AM, Bob Armstrong wrote: > This summer a group of us worked together to resurrect the original ARPAnet > IMP software, and I’m now happy to say that the IMP lives again in > simulation. I am really excited about this. I was just thinking a few months back how cool this would be. I can't wait to play with it! Jim Carpenter From aek at bitsavers.org Tue Nov 26 23:13:05 2013 From: aek at bitsavers.org (Al Kossow) Date: Tue, 26 Nov 2013 20:13:05 -0800 Subject: [Simh] bitsavers.org/pdf/dec/pdp11/xxdp update Message-ID: <52957151.1020800@bitsavers.org> I decided to clear my postprocessing backlog of diagnostic scans. Lots of new/rearranged material. In particular a large set of 11/45 diag writeups and a pretty complete set for the 11/34 as well. From danjcla at danjcla.com Tue Nov 26 23:50:11 2013 From: danjcla at danjcla.com (Daniel J Clark) Date: Wed, 27 Nov 2013 04:50:11 +0000 Subject: [Simh] forcing simh to build without pcap Message-ID: <3e06d053ba4343fbac4ae77a25e6281c@CO1PR02MB095.namprd02.prod.outlook.com> Is there an easy way to force simh to not try to use libpcap / pcap during the compile process, even if it thinks it exists / will work? I thought I'd ask here before spending a significant amount of time trying to understand the makefile; I'm guessing I'm just missing something obvious in the compiling system. I did try to temporarily move pcap.h elsewhere so it wasn't found, but that didn't work. Thanks, -Danny -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark at infocomm.com Wed Nov 27 00:12:40 2013 From: Mark at infocomm.com (Mark Pizzolato - Info Comm) Date: Tue, 26 Nov 2013 21:12:40 -0800 Subject: [Simh] forcing simh to build without pcap In-Reply-To: <3e06d053ba4343fbac4ae77a25e6281c@CO1PR02MB095.namprd02.prod.outlook.com> References: <3e06d053ba4343fbac4ae77a25e6281c@CO1PR02MB095.namprd02.prod.outlook.com> Message-ID: <0CC6789C1C831B4C8CCFF49D45D7010FDF9890B0B7@REDROOF2.alohasunset.com> HI Danny, What platform are you running on? Can you explain what you are actually trying to do and why? Have you tried with the code from https://github.com/simh/simh/archive/master.zip You only need to compile with the following command: $ make vax The resulting binary should run even if you subsequently remove libpcap from the system you are running on. - Mark From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] On Behalf Of Daniel J Clark Sent: Tuesday, November 26, 2013 8:50 PM To: simh at trailing-edge.com Subject: [Simh] forcing simh to build without pcap Is there an easy way to force simh to not try to use libpcap / pcap during the compile process, even if it thinks it exists / will work? I thought I'd ask here before spending a significant amount of time trying to understand the makefile; I'm guessing I'm just missing something obvious in the compiling system. I did try to temporarily move pcap.h elsewhere so it wasn't found, but that didn't work. Thanks, -Danny -------------- next part -------------- An HTML attachment was scrubbed... URL: From lbickley at bickleywest.com Wed Nov 27 00:13:47 2013 From: lbickley at bickleywest.com (Lyle Bickley) Date: Tue, 26 Nov 2013 21:13:47 -0800 Subject: [Simh] bitsavers.org/pdf/dec/pdp11/xxdp update In-Reply-To: <52957151.1020800@bitsavers.org> References: <52957151.1020800@bitsavers.org> Message-ID: <20131126211347.35bdf484@asrock.bcwi.net> On Tue, 26 Nov 2013 20:13:05 -0800 Al Kossow wrote: > I decided to clear my postprocessing backlog of diagnostic scans. > Lots of new/rearranged material. In particular a large set of 11/45 > diag writeups and a pretty complete set for the 11/34 as well. Great! Happy Thanksgiving, BTW... Lyle -- Bickley Consulting West Inc. http://bickleywest.com "Black holes are where God is dividing by zero" From matt at 9track.net Wed Nov 27 20:39:49 2013 From: matt at 9track.net (Matt Burke) Date: Thu, 28 Nov 2013 01:39:49 +0000 Subject: [Simh] Unaligned references In-Reply-To: <5293FA7F.9060703@supnik.org> References: <5293FA7F.9060703@supnik.org> Message-ID: <52969EE5.8030000@9track.net> Bob, It all looks OK to me. The fact that both I/O and register space have unaligned read/write functions should provide enough flexibility to support the variety of VAX models now simulated. I still have a few details to work out for these other models. I may also need to do something about accesses to Qbus memory space (0x30000000 upwards) as I guess this should behave the same as Qbus I/O space? It's not really an issue for CVAX at the moment as accesses reflect to main memory. Matt On 26/11/2013 01:33, Bob Supnik wrote: > I have a design with probe coding for fixing the unaligned IO space > problem recently uncovered in the VAX emulator. > > Because it tears up the core of unaligned processing, I'd like some > other eyes to look at it before I start editing code and debugging. > > My plan is: > > a) verify all cases of unaligned access to memory by simple tests > (read B, W, L, Q unaligned at every possible offset; write B, W, L, Q > unaligned at every possible offset) > b) run HCORE, the hard core diagnostic - this will test unaligned > references with memory management > c) verify that the VAX 780 still runs VMS (unaligned IO references are > not allowed, so only unaligned memory references need to be working > correctly) > d) verify all cases of unaligned access to Qbus IO space - a bit > tricky, as I need to find IO registers that are not "sparse" > e) verify that CVAX still runs VMS > f) turn over the changes to the community for further testing > > The design paper is attached, for review. > > /Bob > > > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh -------------- next part -------------- An HTML attachment was scrubbed... URL: From spedraja at gmail.com Thu Nov 28 12:42:15 2013 From: spedraja at gmail.com (SPC) Date: Thu, 28 Nov 2013 18:42:15 +0100 Subject: [Simh] Resurrecting the ARPAnet IMP In-Reply-To: <004a01cee790$f0d411e0$d27c35a0$@com> References: <004a01cee790$f0d411e0$d27c35a0$@com> Message-ID: Marvelous. I asked and collected information about this matter (old ARPA documents, messages to BBN, messages to some Arpanet creators and other people involved in the project) but it was clear for me soon that it would be very difficult to someone without a more close contact to the sources to do this work. My congratulations for this great addition to classic computing collection of recovered systems and software. I only can add a desire to this: it would be great to recover the diverse adaptors used to connect to ARPANET from some real (and today emulated) systems (as IBM S/360 or 370, PDP ans VAX, GRI, and so...) plus the corresponding ARPANET software or NCP installed in everyone. Regards SPc. 2013/11/22 Bob Armstrong > This summer a group of us worked together to resurrect the original > ARPAnet IMP software, and I’m now happy to say that the IMP lives again in > simulation. It’s possible to run the original IMP software on a modified > version of the H316 simh and to set up a virtual network of simulated IMPs > talking to each other. IMP to IMP connections, which would have > originally been carried over leased telephone lines, are tunneled over IP. > As far as we can tell, everything works pretty much as it did in the early > 1970s. IMPs are able to exchange routing information, console to console > communications, network statistics, and they would carry host traffic if > there were hosts on the network. The hooks are in there to allow simh to > support the IMP side of the 1822 host interface, and the next step would be > to recover the OS for an ARPAnet era host and then extend the corresponding > simulator to talk to the IMP simulation. > > > > If you’d like to know more, you can read a detailed account of the whole > adventure here – > > > > http://walden-family.com/bbn/imp-code.pdf > > > > Everyone involved has agreed to release their work under the same terms > as Bob Supnik’s original simh license, and I’m looking for suggestions as > to how to handle that. We could just ZIP everything up and host it on the > website along with all the other BBN and ARPAnet documentation. If the > community considers the simh extensions for the BBN hardware to be of > general interest then it could be submitted to the current simh > repository. Or it could go somewhere else - I am open to suggestions. > > > > Thanks, > > Bob Armstrong > > > > _______________________________________________ > Simh mailing list > Simh at trailing-edge.com > http://mailman.trailing-edge.com/mailman/listinfo/simh > -- Gracias | Regards Saludos - Greetings - Freundliche Grüße - Salutations -- *Sergio Pedraja* twitter: @sergio_pedraja skype: Sergio Pedraja http://plus.google.com/u/0/101292256663392735405 http://www.linkedin.com/in/sergiopedraja http://www.quora.com/Sergio-Pedraja http://spedraja.wordpress.com https://www.xing.com/profile/Sergio_Pedraja http://www.viadeo.com http://www.avalonred.com/ ----- No crea todo lo que ve, ni crea que está viéndolo todo -------------- next part -------------- An HTML attachment was scrubbed... URL: From danjcla at danjcla.com Fri Nov 29 08:37:00 2013 From: danjcla at danjcla.com (Daniel J Clark) Date: Fri, 29 Nov 2013 13:37:00 +0000 Subject: [Simh] forcing simh to build without pcap In-Reply-To: <0CC6789C1C831B4C8CCFF49D45D7010FDF9890B0B7@REDROOF2.alohasunset.com> References: <3e06d053ba4343fbac4ae77a25e6281c@CO1PR02MB095.namprd02.prod.outlook.com>, <0CC6789C1C831B4C8CCFF49D45D7010FDF9890B0B7@REDROOF2.alohasunset.com> Message-ID: <20131129133658.5501069.75241.7488@danjcla.com> Trying to build on QNX‎ 6 Neutrino. Need to use slirp patch anyway - no need to build with pcap support, even if it did happen to work right away.‎ From: Mark Pizzolato - Info Comm Sent: Wednesday, November 27, 2013 12:12 AM To: Daniel J Clark; simh at trailing-edge.com Subject: RE: forcing simh to build without pcap HI Danny, What platform are you running on? Can you explain what you are actually trying to do and why? Have you tried with the code from https://github.com/simh/simh/archive/master.zip You only need to compile with the following command: $ make vax The resulting binary should run even if you subsequently remove libpcap from the system you are running on. - Mark From: simh-bounces at trailing-edge.com [mailto:simh-bounces at trailing-edge.com] On Behalf Of Daniel J Clark Sent: Tuesday, November 26, 2013 8:50 PM To: simh at trailing-edge.com Subject: [Simh] forcing simh to build without pcap Is there an easy way to force simh to not try to use libpcap / pcap during the compile process, even if it thinks it exists / will work? I thought I'd ask here before spending a significant amount of time trying to understand the makefile; I'm guessing I'm just missing something obvious in the compiling system. I did try to temporarily move pcap.h elsewhere so it wasn't found, but that didn't work. Thanks, -Danny -------------- next part -------------- An HTML attachment was scrubbed... URL: From phil at ultimate.com Fri Nov 29 09:15:58 2013 From: phil at ultimate.com (Phil Budne) Date: Fri, 29 Nov 2013 09:15:58 -0500 Subject: [Simh] Resurrecting the ARPAnet IMP In-Reply-To: <004a01cee790$f0d411e0$d27c35a0$@com> References: <004a01cee790$f0d411e0$d27c35a0$@com> Message-ID: <201311291415.rATEFwO0047598@ultimate.com> > .... The hooks are in there to allow simh to > support the IMP side of the 1822 host interface, and the next step would be > to recover the OS for an ARPAnet era host and then extend the corresponding > simulator to talk to the IMP simulation. I wonder if ITS NCP code could be resurected. The KLH KS10 simulation talks TCP thru an emulated ACC LHDH-11, but of course the modern (KS) IMP support file doesn't do NCP (but the old KA/KL IMP support file still exists); ;;; -*- Mode:MIDAS -*- IMPVRS==.IFNM2 ; Version of IMP code IFN NCPP,.FATAL IMP Code doesn't support NCP any more! IFE KSIMP\SSIMP,.FATAL Wrong IMP driver file included! OVHMTR IMP ;Charge all this stuff to the IMP $INSRT LHDH ; IMP 1822 PROTOCOL INFORMATION (EXTENDED-LEADER VERSION) ; The IMP leader is 96 bits long, usually organized as 3 words of 32 bits. ; For further details, these documents are available from the Network ; Information Center: ; IMP-HOST protocol: BBN Report No. 1822 ; NCP protocol: NIC 8246, Host-to-Host Protocol for the ARPANET ; IP, TCP: Internet Protocol Transition Workbook, and ; Internet Protocol Implementor's Guide ; ; Here is the leader format used by the IMP code. This format uses ; no IMP padding, assumes IP only, and expects all IMP<->HOST data ; transfers in 32-bit mode. ; ; Previous versions of this code which supported NCP used a much more ; complicated leader formatting scheme based on 36 bit transfers and ; IMP padding. That scheme is dead, see SYSTEM;IMPOLD WTHNCP for details. From phil at ultimate.com Fri Nov 29 15:17:01 2013 From: phil at ultimate.com (Phil Budne) Date: Fri, 29 Nov 2013 15:17:01 -0500 Subject: [Simh] Resurrecting the ARPAnet IMP In-Reply-To: <201311291415.rATEFwO0047598@ultimate.com> References: <004a01cee790$f0d411e0$d27c35a0$@com> <201311291415.rATEFwO0047598@ultimate.com> Message-ID: <201311292017.rATKH1bt061384@ultimate.com> Oh yeah, there was also an interface called the AN22 for the KS10 in the NCP era.... Maybe there's a copy of TOPS-20 (v3?) out there with KS & NCP support.