Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Quản trị mạng
Lecture TCP-IP protocol suite - Chapter 20: File Transfer Protocol (FTP)
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture TCP-IP protocol suite - Chapter 20: File Transfer Protocol (FTP)
Duy Hùng
123
26
ppt
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Upon completion you will be able to: Understand the connections needed for FTP file transfer be familiar with FTP commands and responses know the differences between FTP and TFTP be familiar with TFTP message types understand TFTP flow and error control. | Chapter 20 File Transfer Protocol (FTP) CONTENTS CONNECTIONS COMMUNICATION COMMAND PROCESSING FILE TRANSFER USER INTERFACE ANONYMOUS FTP FTP uses the services of TCP. It needs two TCP connections. The well-known port 21 is used for the control connection and the well-known port 20 for the data connection. Figure 20-1 FTP CONNECTIONS 20.1 Figure 20-2 Opening the control connection COMMUNICATION 20.2 Figure 20-3 Creating the data connection Figure 20-4 Using the control connection Figure 20-5 Using the data connection COMMAND PROCESSING 20.3 Figure 20-6 Command processing FILE TRANSFER 20.4 Figure 20-7 File transfer Example 1 Figure 20.8 shows an example of using FTP for retrieving a list of items in a directory. Figure 20-8 Example 1 Example 2 Figure 20.9 shows an example of how an image (binary) file is stored. Figure 20-9 Example 2 USER INTERFACE 20.5 Example 3 We show some of the user interface commands that accomplish the same task as in Example 1. Solution % ftp challenger.atc.fhda.edu Connected to challenger.atc.fhda.edu 220 Server ready Name: forouzan Password: xxxxxxx ftp > ls /usr/user/report 200 OK Solution 150 Opening ASCII mode . 226 transfer complete ftp > close 221 Goodbye ftp > quit ANONYMOUS FTP 20.6 Example 4 We show an example of using anonymous FTP. We assume that some public data are available at internic.net. Solution % ftp internic.net Connected to internic.net 220 Server ready Name: anonymous 331 Guest login OK, send “guest” as password Password: guest ftp > pwd 257 ’/’ is current directory Solution ftp > ls 200 OK 150 Opening ASCII mode bin ftp> close 221 Goodbye ftp> quit | Chapter 20 File Transfer Protocol (FTP) CONTENTS CONNECTIONS COMMUNICATION COMMAND PROCESSING FILE TRANSFER USER INTERFACE ANONYMOUS FTP FTP uses the services of TCP. It needs two TCP connections. The well-known port 21 is used for the control connection and the well-known port 20 for the data connection. Figure 20-1 FTP CONNECTIONS 20.1 Figure 20-2 Opening the control connection COMMUNICATION 20.2 Figure 20-3 Creating the data connection Figure 20-4 Using the control connection Figure 20-5 Using the data connection COMMAND PROCESSING 20.3 Figure 20-6 Command processing FILE TRANSFER 20.4 Figure 20-7 File transfer Example 1 Figure 20.8 shows an example of using FTP for retrieving a list of items in a directory. Figure 20-8 Example 1 Example 2 Figure 20.9 shows an example of how an image (binary) file is stored. Figure 20-9 Example 2 USER INTERFACE 20.5 Example 3 We show some of the user interface commands that accomplish the same task as in Example 1. Solution % ftp challenger.atc.fhda.edu Connected to challenger.atc.fhda.edu 220 Server ready Name: forouzan Password: xxxxxxx ftp > ls /usr/user/report 200 OK Solution 150 Opening ASCII mode . 226 transfer complete ftp > close 221 Goodbye ftp > quit ANONYMOUS FTP 20.6 Example 4 We show an example of using anonymous FTP. We assume that some public data are available at internic.net. Solution % ftp internic.net Connected to internic.net 220 Server ready Name: anonymous 331 Guest login OK, send “guest” as password Password: guest ftp > pwd 257 ’/’ is current directory Solution ftp > ls 200 OK 150 Opening ASCII mode bin ftp> close 221 Goodbye ftp> quit
TÀI LIỆU LIÊN QUAN
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.