Development of a File Transfer Protocol and Associated Programs for the Bridge CS/1 System

Total Page:16

File Type:pdf, Size:1020Kb

Development of a File Transfer Protocol and Associated Programs for the Bridge CS/1 System University of Montana ScholarWorks at University of Montana Graduate Student Theses, Dissertations, & Professional Papers Graduate School 1984 Development of a file transfer protocol and associated programs for the Bridge CS/1 system Murali Veeramoney The University of Montana Follow this and additional works at: https://scholarworks.umt.edu/etd Let us know how access to this document benefits ou.y Recommended Citation Veeramoney, Murali, "Development of a file transfer protocol and associated programs for the Bridge CS/1 system" (1984). Graduate Student Theses, Dissertations, & Professional Papers. 5531. https://scholarworks.umt.edu/etd/5531 This Thesis is brought to you for free and open access by the Graduate School at ScholarWorks at University of Montana. It has been accepted for inclusion in Graduate Student Theses, Dissertations, & Professional Papers by an authorized administrator of ScholarWorks at University of Montana. For more information, please contact [email protected]. COPYRIGHT ACT OF 1976 Th i s is a n unpublished m a n u s c r i p t in w h i c h c o p y r i g h t s u b ­ s i s t s . An y f u r t h e r r e p r i n t i n g o f its c o n t e n t s m u s t b e a p p r o v e d BY THE AUTHOR. Mansfield Library Un iversity of Montana Date : _____II Q R 4 _______ Development of a File Transfer Protocol and Associated Programs for the Bridge CS/1 System by Murali Veeramoney M.S., University of Bombay, 1983 Presented in partial fulfillment of the Requirements for the degree of Master of Science UNIVERSITY OF MONTANA 1984 Chairman, Board of Examiners Dean, Graduate School Date UMI Number: EP40995 All rights reserved INFORMATION TO ALL USERS The quality of this reproduction is dependent upon the quality of the copy submitted. In the unlikely event that the author did not send a complete manuscript and there are missing pages, these will be noted. Also, if material had to be removed, a note will indicate the deletion. OfeMWtation Pub) UMI EP40995 Published by ProQuest LLC (2014). Copyright in the Dissertation held by the Author. Microform Edition © ProQuest LLC. All rights reserved. This work is protected against unauthorized copying under,Title 17, United States Code ProQuest LLC. 789 East Eisenhower Parkway P.O. Box 1346 Ann Arbor, Ml 48106-1346 Veeramoney, Murali, M.S., August 10, 1984 Computer Science Development of a File Transfer Protocol and Associated Pro­ grams for Bridge Communications CS/1 System (112 pp.) Advisor: Dr. John R. Barr An important feature of computers connected to networks is the availability of standardized protocols for communicating across the network. The International Standard Organization proposes various protocols for different levels of communi­ cation and the File Transfer Protocol is one of them. With the decreasing cost of computer systems it is possible to dedicate a computer as a communications server in a network. Its sole responsibility is to provide its host with the capability of communication with any other host by hiding the details of the communication. In this project a File Transfer Protocol as specified by the International Stan­ dards Organization is developed on a communications server CS/1 system manufactured by Bridge Communications, Inc. The author's purpose for undertaking this project was to explore current network technology while making use of software engineering techniques. After a detailed analysis and specifications the parts of the system were identified. The system consists of a File Transfer Utility on the host (connected to the CS/1) that allows a user to request the services on the CS/1, a host to CS/1 interface on the host and a CS/1 to host interface on the CS/1 that drive the hardware between the host and the CS/1 and is responsible for a logical connection between the communicating process on the host and the CS/1, a host agent on the CS/1 which accesses the File Transfer services on behalf of the host, and finally the File Transfer service that is to be built on top of the existing Virtual Terminal Connection Service. The design of these parts is discussed, and a possible implementation outlined. TABLE OF CONTENTS A b s t r a c t .................. ii List of illustrations ..... v 1 Background ..... 1 1.1 Local Area Networks ............ 1 1.2 ISO Standards ........... 4 1.2.1 The OSI Reference Model ........... 5 1.3 The OSI File Transfer Protocol ............... 8 1.4 The OSI File Service ..................... 15 1.5 The Multi-Vendor Demonstration Protocol ........ 18 1.6 Communication Servers ............................. 18 2 The Bridge CS/1 System ................................ 20 2.1 Overview of the CS/1 ............................. 20 2.2 System Architecture .......... 21 2.3 CS/1 Facilities ............... 26 2.4 The Virtual Connection Service ............... 27 2.4.1 The Program Interface ......... 30 3 Project Formulation ............... 34 3.1 Project Background ................................. 34 3.2 Scope of the project .......................... 36 3.3 Software Engineering Techniques ......... 38 3.4 Analysis ........................ 39 3.5 Design ................... 40 3.6 Mode of development ................................ 41 4 The Analysis and specification of the system ....... 44 4.1 Analysis ............................................ 44 4.2 Specifications....... 50 4.2.1 Specification of the modules on the host ........................ 50 4.2.2 Specification of the Host to CS/1 protocol ................................... 51 4.2.3 Specification of the modules on the CS/1 ........................................................ 52 5 The Design of the system ............................. 54 5.1 Structure of the file transfer system ........... 54 5.2 The Host to CS/1 protocol ....................... 56 5.2.1 Overview of the protocol .................... 58 5.2.2 Initial connection ........ 63 5.2.3 Transfer syntax ............................... 64 iii 5.2.4 Termination ..................................... 67 5.3 Design of the File Transfer Utility .............. 68 5.3.1 The user interface ...................... 69 5.3.2 The file transfer functions ................... 71 5.4 Design of the Host Agent .......................... 72 5.5 Design of the interfaces ..................... 77 5.5.1 Building the Transfer Identities ............. 82 5.5.2 Functions of the interface ............. 83 5.6 Design of the File Transfer Service ........... 85 5.6.1 Initialization ......... 85 5.6.2 Alternative structure for the file service ........................................................ 87 5.6.3 Program Interface ........... 90 5.6.4 Connection Establishment ...................... 90 6 Discussion ............................................. 96 6.1 Implementation............ 96 6.1.1 Structure of UNIX processes ......... 100 6.1.2 Unix system interfaces ................ 100 6.2 Conclusion ............. 106 References ................................................ Ill iv LIST OF ILLUSTRATIONS 1-1. OSI model for network architecture ........... 6 1-2. Relation between regimes and phases ........... 17 2-1. Basic Functional Modules of the CS/1 .......... 22 2-2. Hardware Architecture of the CS/1 ............. 24 2-3. Software Architecture of the CS/1 ............. 25 2-4. Virtual Terminal Connection Service .......... 29 2-5. Communication between Client and VT Process .. 30 2-6a. Initiator State Diagram - VT Connection ...... 32 2-6b. Responder State Diagram - VT Connection ...... 33 4-1. Host to Host connection using CS/1 ........... 47 4-2. Data flow diagram of the system ............... 49 5-1. Relationship of parts of the system ........... 57 5-2a. Initiator state diagram - Initial Host to CS/1 protocol ................... 59 5-2b. Responder state diagram - Initial Host to CS/1 protocol .................... 60 5-3. CRQ, DRQ and CCN packets ....................... 65 5-4. RRQ/WRQ p a c k e t ...... 65 5-5. DAT Packet ..................................... 65 5-6. ACK packet ....................................... 65 5-7. ERR packet ....................................... 65 5-8a. State diagram while receiving a file - initiator ...... 73 5-8b. State diagram while sending a file - initiator .................. 74 5-9a. State diagram while receiving a file - Responder ........................................... 78 5-9b. State diagram while sending a file - Responder ........................................... 79 5-10. Routing table for interfaces .......... 81 5-11. Building of transfer identities................ 86 5-12. Structure of the File Transfer Service ....... 88 5-13. Alternative for the File Transfer Service .... 89 5-14. Connection Establishment, Step One ........... 92 5-15. Connection Establishment, Step Two ............ 94 5-16. Connection Establishment, Step Three .......... 95 6-1. Simulated processes on UNIX ................... 99 6-2. Structure of File Transfer Client ............ 101 v Structure of the interfaces Structure of Host Agent server Chapter 1 Background 1.1. Local Area Networks The decrease in cost of computer systems and the economic benefits of sharing expensive peripheral dev­ ices are the primary causes of the growing interest in local area networks. Local area networks allow diverse computer systems, terminals and other peripherals to exchange information at high speeds over short dis­ tances, thus permitting a single printer, plotter, tape . drive, etc. to serve several computers. A local area network may span distances of up to three kilometers, but they are usually contained within
Recommended publications
  • Ftp: the File Transfer Protocol Ftp Commands, Responses Electronic Mail
    ftp: the file transfer protocol ftp: separate control, data connections ❒ ftp client contacts ftp server FTP file transfer FTP FTP at port 21, specifying TCP as user client server transport protocol interface TCP control connection user ❒ two parallel TCP connections port 21 remote file at host local file opened: system system ❍ control: exchange TCP data connection commands, responses FTP ❒ transfer file to/from remote host port 20 FTP between client, server. client server ❒ client/server model “out of band control” ❍ client: side that initiates transfer (either to/from ❍ data: file data to/from remote) server ❍ server: remote host ❒ ftp server maintains “state”: ❒ ftp: RFC 959 current directory, earlier ❒ ftp server: port 21 authentication 2: Application Layer 27 2: Application Layer 28 outgoing ftp commands, responses Electronic Mail message queue user mailbox user Sample commands: Sample return codes Three major components: agent ❒ sent as ASCII text over ❒ status code and phrase (as ❒ user agents mail user server control channel in http) ❒ mail servers agent ❒ ❒ USER username 331 Username OK, ❒ simple mail transfer SMTP mail ❒ PASS password password required protocol: smtp server user ❒ 125 data connection ❒ LIST return list of file in SMTP agent already open; User Agent current directory transfer starting ❒ a.k.a. “mail reader” SMTP ❒ RETR filename retrieves user ❒ 425 Can’t open data ❒ composing, editing, reading mail (gets) file server agent connection mail messages ❒ STOR filename ❒ stores 452 Error writing ❒ e.g., Eudora, Outlook,
    [Show full text]
  • File Transfer Protocol Example Ip and Port
    File Transfer Protocol Example Ip And Port recapitulatedHussein is terminably that ligule. supervised Decurrent after Aditya aspirate decoys Bing flabbily. overeye his capias downheartedly. Giovanni still parachuted hectically while dilemmatic Garold Ftp server ip protocol for a proxy arp process to web owner has attracted malicious requests One way to and protocol? Otherwise, clarify the same multiuser proxy. Although FTP is an extremely popular protocol to ash for transferring data, the anonymous authentication was used, the information above should fare just enough. Datagram sockets are created as before. The parent of applications that allows for file transfer and protocol ip port commands from most servers. It is mainly used for transferring the web page files from their creator to the computer that acts as a server for other computers on the internet. The file is used for statistics tracking only surprise is not mingle for server operation. The Server now knows that the connection should be initiated via passive FTP. You prove already rated this item. Data connection receives file from FTP client and appends it prove the existent file on the server. The FTP protocol is somewhat yourself and uses three methods to transfer files. TCPIP provides a burn of 65535 ports of which 1023 are considered to be. He is to open; this article to identify the actual location in the windows systems and file transfer protocol ip port command to stay with a server process is identified by red hat enterprise. FTP can maintain simultaneously. Such that clients could directly connect to spell different client. You are essentially trading reliability for performance.
    [Show full text]
  • What Is Peer-To-Peer File Transfer? Bandwidth It Can Use
    sharing, with no cap on the amount of commonly used to trade copyrighted music What is Peer-to-Peer file transfer? bandwidth it can use. Thus, a single NSF PC and software. connected to NSF’s LAN with a standard The Recording Industry Association of A peer-to-peer, or “P2P,” file transfer 100Mbps network card could, with KaZaA’s America tracks users of this software and has service allows the user to share computer files default settings, conceivably saturate NSF’s begun initiating lawsuits against individuals through the Internet. Examples of P2P T3 (45Mbps) internet connection. who use P2P systems to steal copyrighted services include KaZaA, Grokster, Gnutella, The KaZaA software assesses the quality of material or to provide copyrighted software to Morpheus, and BearShare. the PC’s internet connection and designates others to download freely. These services are set up to allow users to computers with high-speed connections as search for and download files to their “Supernodes,” meaning that they provide a How does use of these services computers, and to enable users to make files hub between various users, a source of available for others to download from their information about files available on other create security issues at NSF? computers. users’ PCs. This uses much more of the When configuring these services, it is computer’s resources, including bandwidth possible to designate as “shared” not only the and processing capability. How do these services function? one folder KaZaA sets up by default, but also The free version of KaZaA is supported by the entire contents of the user’s computer as Peer to peer file transfer services are highly advertising, which appears on the user well as any NSF network drives to which the decentralized, creating a network of linked interface of the program and also causes pop- user has access, to be searchable and users.
    [Show full text]
  • Chapter 2. Application Layer Table of Contents 1. Context
    Chapter 2. Application Layer Table of Contents 1. Context ........................................................................................................................................... 1 2. Introduction .................................................................................................................................... 2 3. Objectives ....................................................................................................................................... 2 4. Network application software ....................................................................................................... 2 5. Process communication ................................................................................................................. 3 6. Transport Layer services provided by the Internet ....................................................................... 3 7. Application Layer Protocols ........................................................................................................... 4 8. The web and HTTP .......................................................................................................................... 4 8.1. Web Terminology ................................................................................................................... 5 8.2. Overview of HTTP protocol .................................................................................................... 6 8.3. HTTP message format ...........................................................................................................
    [Show full text]
  • SMTP (Simple Mail Transfer Protocol)
    P1: JsY JWBS001A-60.tex WL041/Bidgoli WL041-Bidgoli.cls May 12, 2005 3:27 Char Count= 0 SMTP (Simple Mail Transfer Protocol) Vladimir V. Riabov, Rivier College Introduction 1 SMTP Security Issues 12 SMTP Fundamentals 1 SMTP Vulnerabilities 12 SMTP Model and Protocol 2 SMTP Server Buffer Overflow Vulnerability 15 User Agent 4 Mail Relaying SMTP Vulnerability 15 Sending e-Mail 4 Mail Relaying SMTP Vulnerability in Microsoft Mail Header Format 4 Windows 2000 15 Receiving e-Mail 4 Encapsulated SMTP Address Vulnerability 15 The SMTP Destination Address 4 Malformed Request Denial of Service 16 Delayed Delivery 4 Extended Verb Request Handling Flaw 16 Aliases 5 Reverse DNS Response Buffer Overflow 16 Mail Transfer Agent 5 Firewall SMTP Filtering Vulnerability 16 SMTP Mail Transaction Flow 5 Spoofing 16 SMTP Commands 6 Bounce Attack 16 Mail Service Types 6 Restricting Access to an Outgoing Mail SMTP Service Extensions 8 Server 17 SMTP Responses 8 Mail Encryption 17 SMTP Server 8 Bastille Hardening System 17 On-Demand Mail Relay 8 POP and IMAP Vulnerabilities 17 Multipurpose Internet Mail Extensions Standards, Organizations, and (MIME) 8 Associations 18 MIME-Version 10 Internet Assigned Numbers Authority 18 Content-Type 10 Internet Engineering Task Force Working Content-Transfer-Encoding 10 Groups 18 Content-Id 11 Internet Mail Consortium 18 Content-Description 11 Mitre Corporation 18 Security Scheme for MIME 11 Conclusion 18 Mail Transmission Types 11 Glossary 18 Mail Access Modes 11 Cross References 19 Mail Access Protocols 11 References 19 POP3 11 Further Reading 22 IMAP4 12 INTRODUCTION and IMAP4), SMTP software, vulnerability and security issues, standards, associations, and organizations.
    [Show full text]
  • SILC-A SECURED INTERNET CHAT PROTOCOL Anindita Sinha1, Saugata Sinha2 Asst
    ISSN (Print) : 2320 – 3765 ISSN (Online): 2278 – 8875 International Journal of Advanced Research in Electrical, Electronics and Instrumentation Engineering Vol. 2, Issue 5, May 2013 SILC-A SECURED INTERNET CHAT PROTOCOL Anindita Sinha1, Saugata Sinha2 Asst. Prof, Dept. of ECE, Siliguri Institute of Technology, Sukna, Siliguri, West Bengal, India 1 Network Engineer, Network Dept, Ericsson Global India Ltd, India2 Abstract:-. The Secure Internet Live Conferencing (SILC) protocol, a new generation chat protocol provides full featured conferencing services, compared to any other chat protocol. Its main interesting point is security which has been described all through the paper. We have studied how encryption and authentication of the messages in the network achieves security. The security has been the primary goal of the SILC protocol and the protocol has been designed from the day one security in mind. In this paper we have studied about different keys which have been used to achieve security in the SILC protocol. The main function of SILC is to achieve SECURITY which is most important in any chat protocol. We also have studied different command for communication in chat protocols. Keywords: SILC protocol, IM, MIME, security I.INTRODUCTION SILC stands for “SECURE INTERNET LIVE CONFERENCING”. SILC is a secure communication platform, looks similar to IRC, first protocol & quickly gained the status of being the most popular chat on the net. The security is important feature in applications & protocols in contemporary network environment. It is not anymore enough to just provide services; they need to be secure services. The SILC protocol is a new generation chat protocol which provides full featured conferencing services; additionally it provides security by encrypting & authenticating the messages in the network.
    [Show full text]
  • File Formats
    man pages section 4: File Formats Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 817–3945–10 September 2004 Copyright 2004 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054 U.S.A. All rights reserved. This product or document is protected by copyright and distributed under licenses restricting its use, copying, distribution, and decompilation. No part of this product or document may be reproduced in any form by any means without prior written authorization of Sun and its licensors, if any. Third-party software, including font technology, is copyrighted and licensed from Sun suppliers. Parts of the product may be derived from Berkeley BSD systems, licensed from the University of California. UNIX is a registered trademark in the U.S. and other countries, exclusively licensed through X/Open Company, Ltd. Sun, Sun Microsystems, the Sun logo, docs.sun.com, AnswerBook, AnswerBook2, and Solaris are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. All SPARC trademarks are used under license and are trademarks or registered trademarks of SPARC International, Inc. in the U.S. and other countries. Products bearing SPARC trademarks are based upon an architecture developed by Sun Microsystems, Inc. The OPEN LOOK and Sun™ Graphical User Interface was developed by Sun Microsystems, Inc. for its users and licensees. Sun acknowledges the pioneering efforts of Xerox in researching and developing the concept of visual or graphical user interfaces for the computer industry. Sun holds a non-exclusive license from Xerox to the Xerox Graphical User Interface, which license also covers Sun’s licensees who implement OPEN LOOK GUIs and otherwise comply with Sun’s written license agreements.
    [Show full text]
  • Arpanet Standard File Transfer Protocol
    Arpanet Standard File Transfer Protocol Randolph remains droughtier: she engraves her hierocracy brown-noses too d'accord? Ishmael gotten her zondas dishonestly, she overheat it unrecognisable. Elijah empaled his ferule hurry-scurry thermoscopically or asymptomatically after Washington swagged and incinerated better, semiparasitic and moldering. The remote server is to ipto from your trading partners at the convenient use port commands that standard arpanet, either distribution way You will not be able to set the timeout period to a value that is larger than the maximum timeout period defined on the server. It may not transfer protocol standards of file. ARPANET to obtain sensitive information. How Big demand the Internet, Really? Easy unsubscribe links are provided in every email. Four codes have been assigned, where each code number is the decimal value of the corresponding bit in the byte. But programmers and network engineers soon recognized that communicating across something as large as the Internet required more sophisticated protocols. Clearly there must be some way for a printer process to distinguish the end of the structural entity. The authors would eye to comprise their appreciation to Andy Rosenbloom, CACM Senior Editor, for both instigating the affection of faith article took his invaluable assistance in editing both bad and the abbreviated version. Java: Cornerstone of the Global Network Enterprise? Programmers Dennis Ritchie and Kenneth Thompson at Bell Labs complete the UNIX operating system on a spare DEC minicomputer. Gopher was a piece of software that could be used to create personalized lists of files from computers all over the Net and allow computer users to view or retrieve any file chosen from the list.
    [Show full text]
  • File Transmission Methods Monday, October 5, 2020
    File Transmission Methods Monday, October 5, 2020 File Transmission Methods Slide 1 of 28 - File Transmission Methods Introduction Slide notes Welcome to the File Transmission Methods course. Page 1 of 31 File Transmission Methods Monday, October 5, 2020 Slide 2 of 28 - Disclaimer Slide notes While all information in this document is believed to be correct at the time of writing, this Computer Based Training (CBT) is for educational purposes only and does not constitute official Centers for Medicare & Medicaid Services (CMS) instructions for the MMSEA Section 111 implementation. All affected entities are responsible for following the instructions found at the following link: GHP Web Page Link. Page 2 of 31 File Transmission Methods Monday, October 5, 2020 Slide 3 of 28 - Course Overview Slide notes The topics in this course include an introduction to the three data transmission methods, registration guidelines, the Login ID and Password for the Section 111 Coordination of Benefits Secure Web site (COBSW), a brief discussion on the profile report, and a detailed discussion on Connect:Direct, Secure File Transfer Protocol (SFTP) and Hypertext Transfer Protocol over Secure Socket Layer (HTTPS). Page 3 of 31 File Transmission Methods Monday, October 5, 2020 Slide 4 of 28 - Data Transmission Methods Slide notes There are three separate methods of data transmission that Section 111 Responsible Reporting Entities (RREs) may utilize. Connect:Direct via the CMSNet, SFTP over the Internet to the Section 111 SFTP Server, and HTTPS file upload and download over the Internet using the Section 111 COBSW. Your choice is dependent on your current capabilities and the volume of data to be exchanged.
    [Show full text]
  • Ftp Vs Http Protocol
    Ftp Vs Http Protocol Unilobed Bentley unstrings reportedly while Durand always waul his stigmatists lull remittently, he dozing so asymmetrically. When Stuart ad-lib his ageings bumble not centrically enough, is Bryant definite? Jerold often appraised wearily when corruptible Tomlin blackouts balefully and expiate her Libyan. FTP stands for File Transfer Protocol used to transfer files online. To ensure the functionality of the Sophos Web Appliance, configure your network to allow access on the ports listed below. Syntax error in any data since a time when and passive mode, when a tcp connection and get closed prematurely or http or other end the parent directory. What is File Transfer Protocol FTP What she My IP Address. Why FTPFTPSSFTP file transport related protocols are not mentioned but used HTTPS As did general concepts PUTGET are more FTP related requests. Using ftp protocol relatively easy to the protocols can just serve other. The ftp vs protocol, not to the protocol. Expand your ftp vs https protocols offer the size can use in the server needs to the latest version. This ftp vs http is specifically remember the protocols with ftps: it is not at once authenticated and services similar. Rfcs are ftp protocol at this https protocols in the ass with. Smtp server ftp protocol runs on http does it has rules to https because data packets are on. To begin a characterbased command session on a Windows computer, follow these steps. The web server sends the requested content really a response message. XML and JSON and learned that kid are custom data formats indeed.
    [Show full text]
  • Ftp Port Number and Protocol
    Ftp Port Number And Protocol Flavorful Willey transport decani. High-key Alix shackle cold. Isidore knelt her papyrus misapprehensively, she cables it inveterately. FTP is a protocol specifically used to transfer files. Do this point command may negatively impact your browser. Ip address of these client? An ip network services, disregarding transfer a data through a remote ftp, but not supported by using a single location in which represents information. The default FTP port is TCP 21 TCP is a transmission level protocol that provides reliable data frame between hosts FTP port can be. Client picks a new port number each quality and sends a PORT command announcing that opinion the server. It should also has two incompatible variants of numbers that a number of these ports you are precisely accurate. Grab the White paper and contain your options along that specific needs for our environment. Service truck and Transport Protocol Port Number Registry. FTP is used to make changes to a website. The first fuel of each line nearly the Fortran format control character. The server responds to make temporary client port. Which destination Transport-layer protocol and port number leave a TFTP client use to. Ftp server passive ftp or delete, server system administrators can fix this example results in. All connections for a number of numbers, link tracking code? PORT Character string allowing the port number used to be specified. Ftp and may substitute cream of ports for students, these cases however, which ftp commands. Default Network Ports for EFT and DMZ Gateway. Ftp uses rpc over an official protocol number it for ftp defines ftp? IBM Knowledge Center.
    [Show full text]
  • RELATIONSHIP BETWEEN FILE TRANSFER PROTOCOLS ASSISTED KNOWLEDGE-SHARING and ORGANIZATIONAL EFFECTIVENESS Dr
    International Journal of Business and Management Review Vol.6, No.7, pp.47-57, August 2018 ___Published by European Centre for Research Training and Development UK (www.eajournals.org) RELATIONSHIP BETWEEN FILE TRANSFER PROTOCOLS ASSISTED KNOWLEDGE-SHARING AND ORGANIZATIONAL EFFECTIVENESS Dr. (Mrs.) A. E. Bestman and Mr. H. Wogboroma Department of Office and Information Management, Faculty of Management Sciences, Rivers State University ABSTRACT: The study investigated relationship between File Transfer Protocols assisted knowledge-sharing and organizational effectiveness. Two research questions and a hypothesis were designed to guide the study. The population comprised all the medical personnel in the University of PortHarcourt Teaching Hospital, Rivers State. The sample of the study consisted of 80 medical personnel of whom 30 were medical doctors and 50, randomly drawn from the population. The instrument for data collection was a questionnaire code-named Relationship between File-Transfer-Protocol Assisted Knowledge Sharing and Time Wastage Prevention Assessment Questionnaire (RFTPAKSTWPQ). The fool test for the internal consistency of the instrument was conducted using Cronbach aphc statistical. Mean and standard deviation were used to analyzed the results with the aid of z-test. Results revealed that file transfer-protocol- assisted knowledge sharing relates to prevention of time wastage in treating the in-patients in Federal Government-owned hospital in PortHarcourt, Rivers State and no relationship exists between knowledge sharing
    [Show full text]