- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Alpha FDL and TCPIP
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 10:38 AM
09-09-2004 10:38 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 11:44 AM
09-09-2004 11:44 AM
Re: Alpha FDL and TCPIP
- The exact FDL file used
- Perhaps a DIR/FULL on the convert input and output
- Perhaps a DUMP/BLOCK=COUNT=0 on the output.
- an indication whehter you use Binary or Ascii more in ftp.
- Perhaps a DUMP from the receiving side.
If you still can, please gather the above details for yourself for both the VAX and thae APLHA case. I suspect that will pretty soon confirm that the files after teh convert are byte-for-byte the same (but hey, stranger things have happened, so do check!)
If you are goign to share DUMP data with us, please stick it in a text file and attach as the presentation makes dumps almost unreadable.
Hint: check out the EXCHANGE /NET command.
hth,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 06:24 PM
09-09-2004 06:24 PM
SolutionBecause of the Carriage_Control none I supose that they need a flat file on the other side. With flat I mean no record terminators.
If it is so you must send the file in binary mode. If you send it as ASCII the FTP protocol adds record terminators.
If the other side needs record terminators, modify the FDL so that produces a stream (if the other side is Windows) or stream_LF (if the other side is *NIX) file. Send this file binary.
Bojan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 07:39 PM
09-09-2004 07:39 PM
Re: Alpha FDL and TCPIP
$ backup my_file file.bck/sav
$ ftp
bin
open remote
user
pass
put file.bck.
Then on the remote node, use the tool
http://h71000.www7.hp.com/freeware/freeware50/000tools/
named reset_backup_saveset_file_attributes.com
to put again correct file attributes, and then get your file
$ backup file.bck/sav *.*/lo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 09:13 PM
09-09-2004 09:13 PM
Re: Alpha FDL and TCPIP
$ backup my_file file.bck/sav
$ zip "-V" file file.bck
$ ftp
bin
open remote
user
pass
put file.zip
Then on the remote node,
unzip file
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 09:39 PM
09-09-2004 09:39 PM
Re: Alpha FDL and TCPIP
There might be a problem there.
To find out where the problem is, find out what are the differences between VAX and Alpha. Check the files that are inputted to FTP (DIR/FULL at least, eventually ANA/RMS, of the file to be sent) and if these are equal, the resulting file on the receiving side. (suggestion: zip the file on the target system, transfer it (binary) to VMS and unzip there. You could then compare the resulting file with the original one).
Willem
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2004 07:51 AM
09-10-2004 07:51 AM
Re: Alpha FDL and TCPIP
Again, thanks to all who answered.