<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
FONT-SIZE: 10pt;
FONT-FAMILY:Tahoma
}
</style>
</head>
<body class='hmmessage'>Of course, very good point. I have a couple of spare PCMCIA NIC's, so could do this at no cost.<BR><BR>
FYI, I found that the freeware, open source C# FTP library from <A href="http://www.enterprisedt.com/">http://www.enterprisedt.com/</A>&nbsp;works flawlessly with the OpenVMS/UCX FTP server, unlike the half-baked Microsoft FTP class.<BR>
&nbsp;<BR>
<BR><BR><BR>&nbsp;<BR>

<HR id=stopSpelling>
<BR>
&gt; Date: Wed, 11 Jun 2008 19:34:58 -0400<BR>&gt; From: eaberry1@pacbell.net<BR>&gt; To: petermoreton@hotmail.co.uk<BR>&gt; CC: simh@trailing-edge.com<BR>&gt; Subject: Re: [Simh] FW: FW: FTP client connecting to SIMH/OpenVMS?<BR>&gt; <BR>&gt; NIC cards are very cheap these days, even for laptops. If your laptop has<BR>&gt; on-board NIC, you can buy a cardbus 2nd NIC adaptor. Let Windows use one and<BR>&gt; the vax use the other. While commuting you can connect them with a 6"<BR>&gt; crossover cable. (If the guy in the next seat asks what that's for, you can<BR>&gt; say it's a jury-rigged carrying handle; or explain that your computer is<BR>&gt; schizophrenic and the cable is so the left brain can talk to the right.)<BR>&gt; When you get home you remove the crossover cable and connect both to your<BR>&gt; cable router.<BR>&gt; <BR>&gt; Peter Moreton wrote:<BR>&gt; &gt; Thanks for that insight Brad (and others). FYI, the issue affects XP<BR>&gt; &gt; as well as Linux. Now I am aware of the issue, I can work by using a<BR>&gt; &gt; PC on the LAN as a client and a PC on the LAN running SIMH, instead<BR>&gt; &gt; of both Client and SIMH on the same machine. Of course this means I<BR>&gt; &gt; cannot now develop client-server apps on one laptop while commuting<BR>&gt; &gt; on train, but hey.... <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; ------------------------------------------------------------------------<BR>&gt; &gt; <BR>&gt; &gt; &gt; From: brad@heeltoe.com<BR>&gt; &gt; &gt; To: jeremy@vsm.com.au<BR>&gt; &gt; &gt; CC: petermoreton@hotmail.co.uk; simh@trailing-edge.com<BR>&gt; &gt; &gt; Subject: Re: [Simh] FW: FTP client connecting to SIMH/OpenVMS?<BR>&gt; &gt; &gt; Date: Tue, 10 Jun 2008 20:01:00 -0400<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; Jeremy Begg wrote:<BR>&gt; &gt; &gt; &gt;Peter,<BR>&gt; &gt; &gt; &gt;<BR>&gt; &gt; &gt; &gt;&gt;I just found that I *can* FTP and Telnet into the VMS machine from<BR>&gt; &gt; &gt; &gt;&gt;another Physical host on the LAN - so it seems as though TCP/IP<BR>&gt; &gt; traffic<BR>&gt; &gt; &gt; &gt;&gt;between VMS and the PC running SIMH isn't routing, but so long as I<BR>&gt; &gt; &gt; &gt;&gt;connect to the VMS machine from another PC on the LAN, then the VAX<BR>&gt; &gt; &gt; &gt;&gt;responds as it should.<BR>&gt; &gt; &gt; &gt;<BR>&gt; &gt; &gt; &gt;I believe this is a known problem with SIMH (actually I believe<BR>&gt; &gt; it's a<BR>&gt; &gt; &gt; &gt;problem in the underlying networking library used by SIMH). To<BR>&gt; &gt; &gt; &gt;communicate between the host PC and the emulated VAX, the host PC<BR>&gt; &gt; &gt; &gt;needs to have an ethernet NIC which is dedicated to the VAX.<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; if simh is running on linux, it's a long standing issue with<BR>&gt; &gt; linux (and<BR>&gt; &gt; &gt; possibly every other unix)<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; Depending on what sort of network "tap" you use to simulate the<BR>&gt; &gt; ethernet<BR>&gt; &gt; &gt; you may not be able to access the simulated host from the host<BR>&gt; &gt; machine.<BR>&gt; &gt; &gt; You can, however, access it from any other host on the network.<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; I figured out exactly what the issue was years ago and asked the<BR>&gt; &gt; linux<BR>&gt; &gt; &gt; networking community about it - the response was that most people<BR>&gt; &gt; didn't<BR>&gt; &gt; &gt; notice or care and fixing it was hard.<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; It happens more and more now that people are doing emulators as<BR>&gt; &gt; machines<BR>&gt; &gt; &gt; get faster. I've run into before. I think I got around it last by<BR>&gt; &gt; &gt; using an IP level tap internet (i.e. creating a new interface)<BR>&gt; &gt; but that<BR>&gt; &gt; &gt; has it's own set of issues.<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; I as I recall (dimly), if you use an ethernet level tap, the ethernet<BR>&gt; &gt; &gt; driver has to duplicate each packet sent and pass them back up to the<BR>&gt; &gt; &gt; simulator socket. Likewise, all packets received have to be<BR>&gt; &gt; duplicated<BR>&gt; &gt; &gt; and sent to the simulator socket. I think right now the receive side<BR>&gt; &gt; &gt; happens but not the transmit side.<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; Typing it here is seems simple to fix but it didn't look easy at the<BR>&gt; &gt; &gt; time. Ah yes. the problem is you also want to send packets back<BR>&gt; &gt; to the<BR>&gt; &gt; &gt; host if they originated in the sim. but you don't know who sent<BR>&gt; &gt; them in<BR>&gt; &gt; &gt; the ethernet driver (very low level). so you risk sending packets<BR>&gt; &gt; back<BR>&gt; &gt; &gt; to the host which originated in the host and packets back to the sim<BR>&gt; &gt; &gt; which originated in the sim.<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; basically, you want to simulate a mini ethernet wire. I guess you<BR>&gt; &gt; &gt; could do some sort of simple learning bridge.<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; Hopefully this illustrates the problem and some of the complexity.<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; anyway, simh suffers this problem as do many emulators.<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; -brad<BR>&gt; &gt; &gt;<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; ------------------------------------------------------------------------<BR>&gt; &gt; Get 5GB of online storage for free! Get it Now!<BR>&gt; &gt; &lt;http://clk.atdmt.com/UKM/go/msnnkmgl0010000005ukm/direct/01/&gt;<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; ------------------------------------------------------------------------<BR>&gt; &gt; Miss your Messenger buddies when on-the-go? Get Messenger on your <BR>&gt; &gt; Mobile! &lt;http://clk.atdmt.com/UKM/go/msnnkmgl0010000001ukm/direct/01/&gt;<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; ------------------------------------------------------------------------<BR>&gt; &gt; <BR>&gt; &gt; _______________________________________________<BR>&gt; &gt; Simh mailing list<BR>&gt; &gt; Simh@trailing-edge.com<BR>&gt; &gt; http://mailman.trailing-edge.com/mailman/listinfo/simh<BR>&gt; <BR><BR><br /><hr />Messenger's gone Mobile! <a href='http://clk.atdmt.com/UKM/go/msnnkmgl0010000001ukm/direct/01/' target='_new'>Get it now!</a></body>
</html>