<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: VMS-to-VMS RPC in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/vms-to-vms-rpc/m-p/5282934#M60716</link>
    <description>Thanks Hoff - RSH/REXEC should work fine :-&lt;BR /&gt;&lt;BR /&gt;$ rsh/pass=xxxxxxxx&lt;BR /&gt;_Hostname: delta&lt;BR /&gt;_Command: sh user&lt;BR /&gt;%%%%%%%%%%%  OPCOM  24-MAY-2011 18:08:13.75  %%%%%%%%%%%&lt;BR /&gt;Message from user INTERnet on DELTA&lt;BR /&gt;INTERnet ACP REXEC Accept Request from Host: 192.168.244.240 Port: 1023&lt;BR /&gt;&lt;BR /&gt;      OpenVMS User Processes at 24-MAY-2011 18:08:13.82&lt;BR /&gt;&lt;BR /&gt;    Total number of users = 2,  number of processes = 2&lt;BR /&gt;........&lt;BR /&gt;</description>
    <pubDate>Tue, 24 May 2011 16:06:54 GMT</pubDate>
    <dc:creator>Robert Atkinson</dc:creator>
    <dc:date>2011-05-24T16:06:54Z</dc:date>
    <item>
      <title>VMS-to-VMS RPC</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/vms-to-vms-rpc/m-p/5282931#M60713</link>
      <description>Rather than schedule a batch job on a remote node, I'd like to use some form of RPC to trigger the job instead. The main limitation is that I can only use TCP/IP and DCL.&lt;BR /&gt;&lt;BR /&gt;Does anyone know of a built-in method that would work better than the method below.&lt;BR /&gt;&lt;BR /&gt;My thoughts so far are to create a local TELNET port and remote listener service. When I open the local port, I can send commands through that can be read from the BG mailbox device.&lt;BR /&gt;&lt;BR /&gt;The commands could then be used to trigger specific actions, such as starting a backup.&lt;BR /&gt;&lt;BR /&gt;Cheers, Rob.&lt;BR /&gt;</description>
      <pubDate>Tue, 24 May 2011 14:57:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/vms-to-vms-rpc/m-p/5282931#M60713</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2011-05-24T14:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: VMS-to-VMS RPC</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/vms-to-vms-rpc/m-p/5282932#M60714</link>
      <description>What do you mean "schedule a batch job"? Do you mean SUBMIT/AFTER?&lt;BR /&gt;&lt;BR /&gt;Is DECnet really not available? If you do have DECnet, then it is as simple as SUBMIT/REMOTE.&lt;BR /&gt;&lt;BR /&gt;Failing that, I would look into the TCP/IP "R_commands". If you are using Digital UCX or TCP/IP, then see HELP UCX R_COMMANDS or HELP TCP/IP R_COMMANDS. Otherwise see the corresponding help for whichever TCP stack you are using.&lt;BR /&gt;</description>
      <pubDate>Tue, 24 May 2011 15:11:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/vms-to-vms-rpc/m-p/5282932#M60714</guid>
      <dc:creator>RBrown_1</dc:creator>
      <dc:date>2011-05-24T15:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: VMS-to-VMS RPC</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/vms-to-vms-rpc/m-p/5282933#M60715</link>
      <description>Ok, so we have the usual questions around the particular platform and the version and (for this case) the IP stack.&lt;BR /&gt;&lt;BR /&gt;Basic IP network communications?  Via telnet?  Um, OK.  Not my first choice here.  Use of telnet means you have to mess around with and even embed cleartext passwords, if security is a concern (and if you don't have kerberized telnet configured), and passing over commands and sequences, which gets gnarly.  telnet can be good as a basic troubleshooting tool.  It's not so good in a production environment.&lt;BR /&gt;&lt;BR /&gt;curl to a CGI in a web server can be an option, if there's a web server on the target.  But that's probably reasonable only if you already have a web server running on the target.&lt;BR /&gt;&lt;BR /&gt;Task-to-task DCL DECnet (yes, DECnet) can be an option here, given that DECnet Phase V (if you have that configured) operates over an IP connection.  Or (depending on what you're up to here) the generic SUBMIT /REMOTE command, also via DECnet over IP.&lt;BR /&gt;&lt;BR /&gt;One of the simplest approaches here is ssh.  Not because it has similarities to telnet, but because ssh can trigger commands on the remote host.  Details on remote commands here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/openvms/products/ssh/ssh_restrictions.pdf" target="_blank"&gt;http://h71000.www7.hp.com/openvms/products/ssh/ssh_restrictions.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;And of course rexec and rsh are also an option, and those are part of basic IP shells, and VMS has those with most IP stacks.  Details in the TCP/IP Services shelf here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.hp.com/go/openvms/doc" target="_blank"&gt;http://www.hp.com/go/openvms/doc&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;VMS doesn't cluster all that well, so you're fairly limited in the remote options via IP; VMS is substantially lacking in modern IP tools, unfortunately.  Even something as simple as netcat (nc) completely blows the sneakers off of most of what VMS has to offer, for instance.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 24 May 2011 15:26:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/vms-to-vms-rpc/m-p/5282933#M60715</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2011-05-24T15:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: VMS-to-VMS RPC</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/vms-to-vms-rpc/m-p/5282934#M60716</link>
      <description>Thanks Hoff - RSH/REXEC should work fine :-&lt;BR /&gt;&lt;BR /&gt;$ rsh/pass=xxxxxxxx&lt;BR /&gt;_Hostname: delta&lt;BR /&gt;_Command: sh user&lt;BR /&gt;%%%%%%%%%%%  OPCOM  24-MAY-2011 18:08:13.75  %%%%%%%%%%%&lt;BR /&gt;Message from user INTERnet on DELTA&lt;BR /&gt;INTERnet ACP REXEC Accept Request from Host: 192.168.244.240 Port: 1023&lt;BR /&gt;&lt;BR /&gt;      OpenVMS User Processes at 24-MAY-2011 18:08:13.82&lt;BR /&gt;&lt;BR /&gt;    Total number of users = 2,  number of processes = 2&lt;BR /&gt;........&lt;BR /&gt;</description>
      <pubDate>Tue, 24 May 2011 16:06:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/vms-to-vms-rpc/m-p/5282934#M60716</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2011-05-24T16:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: VMS-to-VMS RPC</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/vms-to-vms-rpc/m-p/5282935#M60717</link>
      <description>Suggestion to use RSH/REXEC.</description>
      <pubDate>Tue, 24 May 2011 16:15:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/vms-to-vms-rpc/m-p/5282935#M60717</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2011-05-24T16:15:41Z</dc:date>
    </item>
  </channel>
</rss>

