Table of Contents 1 FTP Configuration Commands TFTP Configuration Commands 2-1

Size: px
Start display at page:

Download "Table of Contents 1 FTP Configuration Commands TFTP Configuration Commands 2-1"

Transcription

1 Table of Contents 1 FTP Configuration Commands 1-1 FTP Server Configuration Commands 1-1 display ftp-server 1-1 display ftp-user 1-2 free ftp user 1-3 ftp server acl 1-3 ftp server enable 1-4 ftp timeout 1-4 ftp update 1-5 FTP Client Configuration Commands 1-6 ascii 1-6 binary 1-7 bye 1-7 cd 1-8 cdup 1-9 close 1-9 debugging 1-10 delete 1-11 dir 1-12 disconnect 1-13 display ftp client configuration 1-13 ftp 1-14 ftp client source 1-15 get 1-16 lcd 1-17 ls 1-17 mkdir 1-19 open 1-19 passive 1-20 put 1-21 pwd 1-21 quit 1-22 remotehelp 1-22 rmdir 1-25 user 1-25 verbose TFTP Configuration Commands 2-1 TFTP Client Configuration Commands 2-1 display tftp client configuration 2-1 tftp-server acl 2-1 tftp 2-2 tftp client source 2-3 i

2 ii

3 1 FTP Configuration Commands FTP Server Configuration Commands display ftp-server display ftp-server Any view Use the display ftp-server command to display the FTP server configuration. After configuring FTP server parameters, you may verify them with this command. Related commands: ftp server enable, ftp timeout, ftp update. # Display the FTP server configuration. <Sysname> display ftp-server FTP server is running Max user number: 1 User count: 1 Timeout value(in minute): 30 Put Method: fast Table 1-1 display ftp-server command output description Field Max user number User count Timeout value (in minute) Maximum number of login users at a time Number of the current login users Allowed idle time of an FTP connection. If there is no packet exchange between the FTP server and client during the whole period, the FTP connection will be disconnected. 1-1

4 Field Put Method File update method of the FTP server, including: fast: Fast update normal: Normal update display ftp-user display ftp-user Any view Use the display ftp-user command to display the detailed information of current FTP users. # Display the detailed information of FTP users. <Sysname> display ftp-user UserName HostIP Port Idle HomeDir ftp flash: # If the name of the logged-in user exceeds 10 characters, the exceeded characters will be displayed in the next line and right justified, for example, if the logged-in user name is administrator, the information is displayed as follows: <Sysname> display ftp-user UserName HostIP Port Idle HomeDir administra tor flash: Table 1-2 display ftp-user command output description Field UserName HostIP Port Idle HomeDir Name of the currently logged-in user IP address of the currently logged-in user Port which the currently logged-in user is using Duration time of the current FTP connection, in minutes Authorized path of the present logged-in user 1-2

5 free ftp user free ftp user username User view username: Username. You can use the display ftp-user command to view the logged-in user name of the current FTP connection. Use the free ftp user command to manually release the FTP connection established with the specified username. Note that if the user to be released is transmitting a file, the connection between the user and the FTP server is terminated after the file transmission. # Manually release the FTP connection established with username ftpuser. <Sysname> free ftp user ftpuser Are you sure to free FTP user ftpuser? [Y/N]:y <Sysname> ftp server acl ftp server acl acl-number undo ftp server acl System view acl-number: Basic access control list (ACL) number, in the range 2000 to Use the ftp server acl command to control FTP clients access to the device using an ACL. Use the undo ftp server acl command to restore the default. By default, no ACL is used to control FTP clients access to the device. 1-3

6 Associated with an ACL, the FTP server can deny the FTP requests of some FTP clients and only permit the access of clients allowed by the ACL rules. This configuration only filters the FTP connections to be established, and has no effect on the established FTP connections and operations. If you execute the command for multiple times, the last specified ACL takes effect. # Associate the FTP service with ACL 2001 to allow only the client to access the device through FTP. <Sysname> system-view [Sysname] acl number 2001 [Sysname-acl-basic-2001] rule 0 permit source [Sysname-acl-basic-2001] rule 1 deny source any [Sysname-acl-basic-2001] quit [Sysname] ftp server acl 2001 ftp server enable ftp server enable undo ftp server System view Use the ftp server enable command to enable the FTP server and allow the login of FTP users. Use the undo ftp server command to disable the FTP server. By default, the FTP server is disabled. # Enable the FTP server. <Sysname> system-view [Sysname] ftp server enable ftp timeout ftp timeout minute undo ftp timeout 1-4

7 System view minute: Idle-timeout timer in minutes, in the range 1 to Use the ftp timeout command to set the idle-timeout timer. Use the undo ftp timeout command to restore the default. By default, the FTP idle time is 30 minutes. After you log in to an FTP server, if the connection is disrupted and the FTP server is not notified, the system will maintain the connection, which will cause the occupation of the system resources and affect the login of other FTP users. To address this problem, you can set an idle-timeout timer so that the FTP server can disconnect from the user if no information is received or/and transmitted before the timer expires. # Set the idle-timeout timer to 36 minutes. <Sysname> system-view [Sysname] ftp timeout 36 ftp update ftp update { fast normal } undo ftp update System view fast: Fast update. normal: Normal update. Use the ftp update command to set the file update mode that the FTP server uses while receiving data. Use the undo ftp update command to restore the default, namely, the normal mode. 1-5

8 # Set the FTP update mode to normal. <Sysname> system-view [Sysname] ftp update normal FTP Client Configuration Commands In this section, the configuration procedure of entering is omitted. You must use the ftp command to enter for configurations under this view. For details, refer to ftp. Before executing the FTP client configuration commands in this section, make sure you have configured the proper authority for users on the FTP server, such as view the files under the current directory, read/download the specified file, create directory/upload files, rename/remove files, and so on. The prompt information in the examples of this section varies with FTP server types. ascii ascii Use the ascii command to set the file transfer mode to ASCII. By default, the file transfer mode is ASCII. The carriage return characters vary with operating systems. For example, to indicate the end of a line and transfer to the next line, the H3C device system and Windows system use characters /r/n, and the Linux system uses characters /n. Therefore, after the file transmission between two systems that use different carriage return characters, such as Linux system and H3C device system, the FTP transmission mode must be applied to ensure the correct resolution of the files. FTP transfers files in two modes: Binary mode: for program file or picture transmission. ASCII mode: for text file transmission. 1-6

9 Related commands: binary. # Set the file transfer mode to ASCII. [ftp] ascii 200 Type set to A. binary binary Use the binary command to set the file transfer mode to binary (also called flow mode). By default, the transfer mode is ASCII mode. Related commands: ascii. # Set the file transfer mode to binary. [ftp] binary 200 Type set to I. bye bye 1-7

10 Use the bye command to disconnect from the remote FTP server and return to user view. If the device establishes no connection with the remote FTP server, you will return to user view directly. Related commands: close, disconnect, quit. # Terminate the connection with the remote FTP server and return to user view. [ftp] bye 221 Server closing. cd cd { directory.. / } directory: Name of the target directory, in the format of [drive:/]path. For the detailed explanation of the drive and path arguments, refer to File System Management Configuration. If no drive information is provided, the argument represents a folder or subfolder under the current directory...: Returns to an upper directory. If the current working directory is the root directory, or no upper directory exists, the current working directory does not change when the cd.. command is executed. This argument does not support command online help. /: Returns to the root directory of the storage medium. The keyword does not support command line online help. Use the cd command to change the current working directory on the remote FTP server. You can use this command to access another authorized directory on the FTP server. Related commands: pwd. # Change the working directory to the sub-directory logfile of the current directory. [ftp] cd logfile 250 CWD command successful. # Change the working directory to the sub-directory folder of the authorized directory. [ftp] cd /folder 250 CWD command successful. 1-8

11 cdup cdup Use the cdup command to exit the current directory and enter the upper directory of the FTP server. Execution of this command will not change the working directory if the current directory is already the authorized directory (that is, work-directory). Related commands: cd, pwd. # Change the current working directory path to the upper directory. [ftp] pwd 257 "/ftp/subdir" is current directory. [ftp] cdup 200 CDUP command successful. [ftp] pwd 257 "/ftp" is current directory. close close Use the close command to terminate the connection to the FTP server, but remain in. This command is equal to the disconnect command. 1-9

12 # Terminate the connection to the FTP server and remain in. [ftp] close 221 Server closing. [ftp] debugging debugging undo debugging Use the debugging command to enable FTP client debugging. Use the undo debugging command to disable FTP client debugging. By default, FTP client debugging is disabled. # The device serves as the FTP client. Enable FTP client debugging and use the active mode to download file sample.file from the current directory of the FTP server. <Sysname> terminal monitor <Sysname> terminal debugging <Sysname> ftp Trying Press CTRL+K to abort Connected to FTP service ready. User( :(none)):ftp 331 Password required for ftp. Password: 230 User logged in. [ftp]undo passive FTP: passive is off [ftp] debugging FTP: debugging switch is on [ftp] get sample.file 1-10

13 ---> PORT 192,168,1,44,4, Port command okay. The parsed reply is > RETR sample.file 150 Opening ASCII mode data connection for /sample.file. The parsed reply is 150 FTPC: File transfer started with the signal light turned on. FTPC: File transfer completed with the signal light turned off..226 Transfer complete. FTP: 3304 byte(s) received in second(s), byte(s)/sec. [ftp] Table 1-3 debugging command output description Field ---> PORT The parsed reply is Give an FTP order, with data port numbers being The received reply code, which is defined in RFC > RETR Download the file FTPC: File transfer started with the signal light turned on. FTPC: File transfer completed with the signal light turned off. File transfer starts, and the signal light is turned on. File transfer is completed, and the signal light is turned off. delete delete remotefile remotefile: File name. Use the delete command to permanently delete a specified file on the remote FTP server. A deleted file cannot be restored. To do this, you must be a user with the delete permission on the FTP server. 1-11

14 # Delete file temp.c. [ftp] delete temp.c 250 DELE command successful. dir dir [ remotefile [ localfile ] ] remotefile: Name of the file or directory on the remote FTP server. localfile: Name of the local file to save the displayed information. Use the dir command to view the detailed information of the files and subdirectories under the current directory on the remote FTP server. Use the dir remotefile command to display the detailed information of the specified file or directory on the remote FTP server. Use the dir remotefile localfile command to display the detailed information of the specified file or directory on the remote FTP server, and save the displayed information into a local file specified by the localfile argument. You can use the dir command to display the folder- and file-related information, such as the size, and the date they were created. If you only need to view the name of all the files and subdirectories under the current directory, you can use the Is command. # the detailed information of the files and subdirectories under the current directory on the remote FTP server. [ftp] dir 227 Entering Passive Mode (192,168,1,46,5,68). 125 ASCII mode data connection already open, transfer starting for /*. drwxrwxrwx 1 noone nogroup 0 Aug logfile -rwxrwxrwx 1 noone nogroup May 11 10:21 test.app 1-12

15 -rwxrwxrwx 1 noone nogroup 4001 Dec config.cfg -rwxrwxrwx 1 noone nogroup 3608 Jun startup.cfg drwxrwxrwx 1 noone nogroup 0 Dec test -rwxrwxrwx 1 noone nogroup 299 Oct key.pub 226 Transfer complete. FTP: 394 byte(s) received in second(s), 2.00K byte(s)/sec. [ftp] # the information of the file ar-router.cfg, and save the result to aa.txt. [ftp] dir ar-router.cfg aa.txt 227 Entering Passive Mode (192,168,1,50,17,158). 125 ASCII mode data connection already open, transfer starting for /ar-router.cfg Transfer complete. FTP: 67 byte(s) received in second(s), byte(s)/sec. the content of aa.txt. [ftp] quit <Sysname> more aa.txt -rwxrwxrwx 1 noone nogroup 3077 Jun 20 15:34 ar-router.cfg disconnect disconnect Use the disconnect command to disconnect from the remote FTP server but remain in. This command is equal to the close command. # Disconnect from the remote FTP server but remain in. [ftp] disconnect 221 Server closing. display ftp client configuration display ftp client configuration 1-13

16 Any view 1: Monitor level Use the display ftp client configuration command to display the configuration information of the FTP client. Currently this command displays the configured source IP address or source interface of the FTP client. Related commands: ftp client source. # Display the current configuration information of the FTP client. <Sysname> display ftp client configuration The source IP address is ftp ftp [ server-address [ service-port ] [ source { interface interface-type interface-number ip source-ip-address } ] ] User view server-address: IP address or host name (a string of 1 to 20 characters) of a remote FTP server. service-port: TCP port number of the remote FTP server, in the range 0 to The default value is 21. interface interface-type interface-number: Specifies the source interface by its type and number. The primary IP address configured on this interface is the source address of the transmitted packets. If no primary IP address is configured on the source interface, the connection fails. 1-14

17 ip source-ip-address: The source IP address of the current FTP client. This source address must be the one that has been configured on the device. Use the ftp command to log in to the remote FTP server and enter. Note that: This command applies to IPv4 networks. If you use this command without specifying any parameters, you will simply enter the FTP client view without logging in to the FTP server. If you specify the parameters, you will be prompted to enter the username and password for accessing the FTP server. The priority of the source address specified with this command is higher than that with the ftp client source command. If you specify the source address with the ftp client source command first and then with the ftp command, the source address specified with the ftp command is used to communicate with the FTP server. Related commands: ftp client source. # Log in from the current device Sysname1 to the device Sysname2 with the IP address of The source IP address of the packets sent is <Sysname> ftp source ip Trying Press CTRL+K to abort Connected to FTP Server ready. User( :(none)):abc 331 Password required for abc Password: 230 User logged in. [ftp] ftp client source ftp client source { interface interface-type interface-number ip source-ip-address } undo ftp client source System view 2: System level 1-15

18 interface interface-type interface-number: Source interface for the FTP connection, including interface type and interface number. The primary IP address configured on the source interface is the source IP address of the packets sent by FTP. If no primary IP address is configured on the source interface, the connection fails. ip source-ip-address: Source IP address of the FTP connection. It must be an IP address that has been configured on the device. Use the ftp client source command to configure the source address of the transmitted FTP packets from the FTP client. Use the undo ftp client source command to restore the default. By default, a device uses the IP address of the interface determined by the matched route as the source IP address to communicate with an FTP server. Note that: The source address can be specified as the source interface and the source IP address. If you use the ftp client source command to specify the source interface and then the source IP address, the newly specified source IP address overwrites the configured source interface and vice versa. If the source address is specified with the ftp client source command and then with the ftp command, the source address specified with the latter one is used to communicate with the FTP server. The source address specified with the ftp client source command is valid for all FTP connections and the source address specified with the ftp command is valid only for the current FTP connection. Related commands: display ftp client configuration. # Specify the source IP address of the FTP client as <Sysname> system-view [Sysname] ftp client source ip # Specify the source interface of the FTP client as Vlan-interface1. <Sysname> system-view [Sysname] ftp client source interface vlan-interface1 get get remotefile [ localfile ] 1-16

19 remotefile: Name of the file to be downloaded. localfile: File name used after a file is downloaded and saved locally. If this argument is not specified, the file is saved locally using the source file name to the current working directory, namely the directory where the user executes the ftp command. Use the get command to download a file from a remote FTP server and save it. # Download file testcfg.cfg and save it as aa.cfg. [ftp] get testcfg.cfg aa.cfg 227 Entering Passive Mode (192,168,1,50,17,163). 125 ASCII mode data connection already open, transfer starting for /testcfg.cfg Transfer complete. FTP: 5190 byte(s) received in second(s), byte(s)/sec. lcd lcd Use the lcd command to display the local working directory of the FTP client. # Display the local working directory. ls [ftp] lcd FTP: Local directory now flash:/clienttemp. The above information indicates that the working directory of the FTP client before execution of the ftp command is flash:/clienttemp. ls [ remotefile [ localfile ] ] 1-17

20 remotefile: Filename or directory on the remote FTP server. localfile: Name of a local file used to save the displayed information. Use the ls command to view the information of all the files and subdirectories under the current directory of the remote FTP server. The file names and subdirectory names are displayed. Use the ls remotefile command to view the information of a specified file or subdirectory. Use the ls remotefile localfile command to view the information of a specified file or subdirectory, and save the result to a local file specified by the localfile argument. The Is command can only display the names of files and directories on the FTP server, whereas the dir command can display other related information of the files and directories, such as the size, and the date they were created. # the information of all files and subdirectories under the current directory of the FTP server. [ftp] ls 227 Entering Passive Mode (192,168,1,50,17,165). 125 ASCII mode data connection already open, transfer starting for /*. ar-router.cfg logfile mainar.app arbasicbtm.app ftp test bb.cfg testcfg.cfg 226 Transfer complete. FTP: 87 byte(s) received in second(s) byte(s)/sec. # the information of directory logfile, and save the result to file aa.txt. [ftp] ls logfile aa.txt 227 Entering Passive Mode (192,168,1,46,4,3). 125 ASCII mode data connection already open, transfer starting for /logfile/*. 1-18

21 Transfer complete. FTP: 20 byte(s) received in second(s), 5.00 byte(s)/sec. # the content of file aa.txt. [ftp] quit <Sysname> more aa.txt... logfile.log mkdir mkdir directory directory: Name of the directory to be created. Use the mkdir command to create a subdirectory under the current directory on the remote FTP server. To do this, you must be a user with the permission on the FTP server. # Create subdirectory mytest on the current directory of the remote FTP server. [ftp] mkdir mytest 257 "/mytest" new directory created. open open server-address [ service-port ] server-address: IP address or host name of a remote FTP server. 1-19

22 service-port: Port number of the remote FTP server, in the range 0 to 65535, with the default value of 21. Use the open command to log in to the IPv4 FTP server under. At login, you will be asked to enter the username and password for accessing the FTP server. If your input is correct, the login succeeds; otherwise, it fails. If you have logged in to the IPv4 FTP server currently, you cannot use the open command to log in to another server. You need to disconnect with the current server first, and then try to connect with another one. Related commands: close. # In, log in to the FTP server with the IP address of <Sysname> ftp [ftp] open Trying Press CTRL+K to abort Connected to FTP service ready. User( :(none)):aa 331 Password required for aa. Password: 230 User logged in. [ftp] passive passive undo passive Use the passive command to set the data transmission mode to passive. Use the undo passive command to set the data transmission mode to active. The default transmission mode is passive. 1-20

23 Data transmission modes fall into the passive mode and the active mode. The active mode means that the data connection request is initiated by a server. The passive mode means that the data connection request is initiated by a client. This command is mainly used in conjunction with a firewall to restrict the FTP session connection between private and public network users. # Set the data transmission mode to passive. [ftp] passive FTP: passive is on put put localfile [ remotefile ] localfile: Name of the local file to be uploaded. remotefile: File name used after a file is uploaded and saved on the FTP server. Use the put command to upload a file on the client to the remote FTP server. If no name is assigned to the file to be saved on the FTP server, the name of the source file is used by default. After a file is uploaded, it will be saved under the user s authorized directory, which can be set with the authorization-attribute command. # Upload source file cc.txt to the remote FTP server and save it as dd.txt. [ftp] put cc.txt dd.txt 227 Entering Passive Mode (192,168,1,50,17,169). 125 ASCII mode data connection already open, transfer starting for /dd.txt. 226 Transfer complete. FTP: 9 byte(s) sent in second(s), byte(s)/sec. pwd pwd 1-21

24 Use the pwd command to display the currently accessed directory on the remote FTP server. # Display the currently accessed directory on the remote FTP server. [ftp] cd servertemp [ftp] pwd 257 "/servertemp" is current directory. The above information indicates that the servertemp folder under the root directory of the remote FTP server is being accessed by the user. quit quit Use the quit command to disconnect from the remote FTP server and exit to user view. # Disconnect from the remote FTP server and exit to user view. [ftp] quit 221 Server closing. <Sysname> remotehelp remotehelp [ protocol-command ] 1-22

25 protocol-command: FTP command. Use the remotehelp command to display the help information of FTP-related commands supported by the remote FTP server. If no argument is specified, FTP-related commands supported by the remote FTP server are displayed. # Display FTP commands supported by the remote FTP server. [ftp] remotehelp 214-Here is a list of available ftp commands Those with '*' are not yet implemented. USER PASS ACCT* CWD CDUP SMNT* QUIT REIN* PORT PASV TYPE STRU* MODE* RETR STOR STOU* APPE* ALLO* REST* RNFR* RNTO* ABOR* DELE RMD MKD PWD LIST NLST SITE* SYST STAT* HELP NOOP* XCUP XCWD XMKD XPWD XRMD 214 Direct comments to H3C company. # Display the help information for the user command. [ftp] remotehelp user 214 : USER <sp> <username>. [ftp] Table 1-4 remotehelp command output description Field 214-Here is a list of available ftp commands Those with '*' are not yet implemented. USER PASS CWD CDUP SMNT* QUIT REIN* The following is an available FTP command list. Those commands with * are not yet implemented. Username Password Change the current working directory Change to parent directory File structure setting Quit Re-initialization 1-23

26 Field PORT PASV TYPE STRU* MODE* RETR STOR STOU* APPE* ALLO* REST* RNFR* RNTO* ABOR* DELE RMD MKD PWD LIST NLST SITE* SYST STAT* HELP NOOP* XCUP XCWD XMKD XPWD XRMD : USER <sp> <username>. Port number Passive mode Request type File structure Transmission mode Download a file Upload a file Store unique Appended file Allocation space Restart Rename the source Rename the destination Abort the transmission Delete a file Delete a folder Create a folder Print working directory List files List file description Locate a parameter Display system parameters State Help No operation Extension command, the same meaning as CUP Extension command, the same meaning as CWD Extension command, the same meaning as MKD Extension command, the same meaning as PWD Extension command, the same meaning as RMD of the user command: user (keyword) + space + username 1-24

27 rmdir rmdir directory directory: Directory name on the remote FTP server. Use the rmdir command to remove a specified directory from the FTP server. Note that only authorized users are allowed to use this command. Note that: The directory to be deleted must be empty, meaning you should delete all files and subdirectories under the directory before you delete a directory. For the deletion of files, refer to the delete command. After you execute the rmdir command successfully, the files in the remote recycle bin under the directory will be automatically deleted. # Delete the temp1 directory from the authorized directory on the FTP server. [ftp] rmdir /temp1 200 RMD command successful. user user username [ password ] username: Login username. password: Login password. You can input this argument after the username argument plus a space; or you can input this argument when the Password: prompt appears after you input the username and then press Enter. 1-25

28 Use the user command to relog in to the currently accessed FTP server with another username. Before using this command, you must configure the corresponding username and password on the FTP server; otherwise, your login fails and the FTP connection is closed. # User ftp1 has logged in to the FTP server. Use username ftp2 to log in to the current FTP server. (Suppose username ftp2 and password have been configured on the FTP server). Method 1 [ftp] user ftp2 331 Password required for ftp2. Password: 230 User logged in. [ftp] Method 2 [ftp] user ftp Password required for ftp. 230 User logged in. [ftp] verbose verbose undo verbose Use the verbose command to enable the protocol information function to display detailed prompt information. Use the undo verbose command to disable the protocol information function. By default, the protocol information function is enabled. # Enable the protocol information function. 1-26

29 [ftp] verbose FTP: verbose is on # Disable the protocol information function and perform the Get operation. [ftp] undo verbose FTP: verbose is off [ftp] get startup.cfg bb.cfg FTP: 3608 byte(s) received in second(s), 69.00K byte(s)/sec. [ftp] # Enable the protocol information function and perform the Get operation. [ftp] verbose FTP: verbose is on [ftp] get startup.cfg aa.cfg 227 Entering Passive Mode (192,168,1,46,5,85). 125 ASCII mode data connection already open, transfer starting for /startup.cfg. 226 Transfer complete. FTP: 3608 byte(s) received in second(s), 18.00K byte(s)/sec. 1-27

30 2 TFTP Configuration Commands TFTP Client Configuration Commands display tftp client configuration display tftp client configuration Any view 1: Monitor level Use the display tftp client configuration command to display the configuration information of the TFTP client. Related commands: tftp client source. # Display the current configuration information of the TFTP client. <Sysname> display tftp client configuration The source IP address is Currently this command displays the configured source IP address or source interface of the TFTP client. tftp-server acl tftp-server acl acl-number undo tftp-server acl 2-1

31 System view acl-number: Number of a basic ACL, in the range 2000 to Use the tftp server acl command to control the device s access to a specific TFTP server using an ACL. Use the undo tftp server acl command to restore the default. By default, no ACL is used to control the device s access to TFTP servers. You can use the rules in an ACL to allow or permit the device s access to a specific TFTP server in a network. For more information about ACL, refer to ACL Configuration and ACL Commands. # In IPv4 networking environment, allow the device to access the TFTP server with the IP address of only. <Sysname> system-view [Sysname] acl number 2000 [Sysname-acl-basic-2000] rule permit source [Sysname-acl-basic-2000] quit [Sysname] tftp-server acl 2000 tftp tftp server-address { get put sget } source-filename [ destination-filename ] [ source { interface interface-type interface-number ip source-ip-address } ] User view server-address: IP address or host name of a TFTP server. get: Downloads a file in normal mode. put: Uploads a file. sget: Downloads a file in secure mode. 2-2

32 source-filename: Source file name. destination-filename: Destination file name. source: Configures parameters for source address binding. interface interface-type interface-number: Specifies the source interface by its type and number. The primary IP address configured on the source interface is the source IP address of the packets sent by TFTP. If no primary IP address is configured on the source interface, the transmission fails. ip source-ip-address: Specifies the source IP address for the current TFTP client to transmit packets. This source address must be an IP address that has been configured on the device. Use the tftp command to upload files from the local device to a TFTP server or download files from the TFTP server to the local device. If no destination file name is specified, a file is saved using the same name as that on the remote FTP server to the current working directory of the user (namely, the working directory where the tftp command is executed). The priority of the source address specified with this command is higher than that specified with the tftp client source command. If you use the tftp client source command to specify the source address first and then with the tftp command, the latter one is adopted. Related commands: tftp client source. # Download the config.cfg file from the TFTP server with the IP address of and save it as config.bak. Specify the source IP address to be <Sysname> tftp get config.cfg config.bak source ip File will be transferred in binary mode Downloading file from remote TFTP server, please wait... TFTP: bytes received in 1 second(s) File downloaded successfully. # Upload the config.cfg file from the local device to the default path of the TFTP server with the IP address of and save it as config.bak. Specify the source IP interface to be Vlan-interface1. <Sysname> tftp put config.cfg config.bak source interface vlan-interface1 File will be transferred in binary mode Sending file to remote TFTP server. Please wait... TFTP: bytes sent in 1 second(s). File uploaded successfully. tftp client source tftp client source { interface interface-type interface-number ip source-ip-address } undo tftp client source 2-3

33 System view 2: System level interface interface-type interface-number: Specifies the source interface by its type and number. The primary IP address configured on the source interface is the source IP address of the packets sent by TFTP. If no primary IP address is configured on the source interface, the transmission fails. ip source-ip-address: The source IP address of TFTP connections. It must be an IP address that has been configured on the device. Use the tftp client source command to configure the source address of the TFTP packets from the TFTP client. Use the undo tftp client source command to restore the default. By default, a device uses the IP address of the interface determined by the matched route as the source IP address to communicate with a TFTP server. Note that: The source address can be specified as the source interface and the source IP; if you use the tftp client source command to specify the source interface and then the source IP, the newly specified source IP overwrites the configured source interface and vice versa. If the source address is specified with the tftp client source command and then with the tftp command, the source address specified with the latter one is used to communicate with the TFTP server. The source address specified with the tftp client source command is valid for all tftp connections and the source address specified with the tftp command is valid for the current tftp command. Related commands: display tftp client configuration. # Specify the source IP address of the TFTP client as <Sysname> system-view [Sysname] tftp client source ip # Specify the source interface of the TFTP client as Vlan-interface1. <Sysname> system-view [Sysname] tftp client source interface vlan-interface1 2-4

Contents. TFTP configuration commands 28 display tftp client configuration 28 tftp-server acl 28 tftp 29 tftp client source 30 tftp ipv6 31

Contents. TFTP configuration commands 28 display tftp client configuration 28 tftp-server acl 28 tftp 29 tftp client source 30 tftp ipv6 31 Contents FTP configuration commands 1 FTP server configuration commands 1 display ftp-server 1 display ftp-user 2 free ftp user 3 ftp server acl 3 ftp server enable 4 ftp timeout 4 ftp update 5 FTP client

More information

Contents. TFTP configuration commands 29 display tftp client configuration 29 tftp-server acl 29 tftp 30 tftp client source 32 tftp ipv6 33

Contents. TFTP configuration commands 29 display tftp client configuration 29 tftp-server acl 29 tftp 30 tftp client source 32 tftp ipv6 33 Contents FTP configuration commands 1 FTP server configuration commands 1 display ftp-server 1 display ftp-user 2 free ftp user 3 ftp server acl 3 ftp server enable 4 ftp timeout 5 ftp update 5 FTP client

More information

Table of Contents 1 FTP Configuration Commands TFTP Configuration Commands 2-1

Table of Contents 1 FTP Configuration Commands TFTP Configuration Commands 2-1 Table of Contents 1 FTP Configuration Commands 1-1 FTP Client Configuration Commands 1-1 ascii 1-1 binary 1-2 bye 1-2 cd 1-3 cdup 1-4 close 1-4 debugging 1-5 delete 1-6 dir 1-6 disconnect 1-8 display ftp

More information

Contents. FTP commands 1

Contents. FTP commands 1 Contents FTP commands 1 FTP server commands 1 display ftp-server 1 display ftp-user 1 free ftp user 2 free ftp user-ip 3 free ftp user-ip ipv6 3 ftp server acl 4 ftp server dscp 5 ftp server enable 5 ftp

More information

Table of Contents 1 FTP and SFTP Configuration TFTP Configuration 2-1

Table of Contents 1 FTP and SFTP Configuration TFTP Configuration 2-1 Table of Contents 1 FTP and SFTP Configuration 1-1 Introduction to FTP and SFTP 1-1 Introduction to FTP 1-1 Introduction to SFTP 1-1 FTP Configuration 1-2 FTP Configuration: A Switch Operating as an FTP

More information

Table of Contents. 1 TFTP Configuration Commands 1-1 TFTP Client Configuration Commands 1-1 tftp-server acl 1-1 tftp 1-2 tftp ipv6 1-3

Table of Contents. 1 TFTP Configuration Commands 1-1 TFTP Client Configuration Commands 1-1 tftp-server acl 1-1 tftp 1-2 tftp ipv6 1-3 Table of Contents 1 TFTP Configuration Commands 1-1 TFTP Client Configuration Commands 1-1 tftp-server acl 1-1 tftp 1-2 tftp ipv6 1-3 i 1 TFTP Configuration Commands TFTP Client Configuration Commands

More information

Part 5: FTP More about this course about Internet

Part 5: FTP More about this course about Internet *:96 Overheads 2a-1 Part 5: FTP More about this course about Internet application protocols can be found at URL: http://www.dsv.su.se/jpalme/internet-course/int-appprot-kurs.html Last update: 2005-09-29

More information

21.1 FTP. Connections

21.1 FTP. Connections 21.1 FTP File Transfer Protocol (FTP) is the standard mechanism provided by TCP/IP for copying a file from one host to another. Although transferring files from one system to another seems simple and straightforward,

More information

TFTP and FTP Basics BUPT/QMUL

TFTP and FTP Basics BUPT/QMUL TFTP and FTP Basics BUPT/QMUL 2017-04-24 Agenda File transfer and access TFTP (Trivial File Transfer Protocol) FTP (File Transfer Protocol) NFS (Network File System) 2 File Transfer And Access 3 File Transfer

More information

$ftp = Net::FTP->new("some.host.name", Debug => 0) or die "Cannot connect to some.host.name:

$ftp = Net::FTP->new(some.host.name, Debug => 0) or die Cannot connect to some.host.name: NAME Net::FTP - FTP Client class SYNOPSIS use Net::FTP; $ftp = Net::FTP->new("some.host.name", Debug => 0) or die "Cannot connect to some.host.name: $@"; $ftp->login("anonymous",'-anonymous@') or die "Cannot

More information

Homework Number 2 Solutions

Homework Number 2 Solutions COMP311: Fall 2010 Ghulam Murtaza Homework Number 2 Solutions Question 1: Router Queue We consider the queue (or buffer) at an outgoing link of a router At the input of this queue, a train of 100 bits

More information

$ftp = Net::FTP->new("some.host.name", Debug => 0) or die "Cannot connect to some.host.name:

$ftp = Net::FTP->new(some.host.name, Debug => 0) or die Cannot connect to some.host.name: NAME Net::FTP - FTP Client class SYNOPSIS use Net::FTP; $ftp = Net::FTP->new("some.host.name", Debug => 0) or die "Cannot connect to some.host.name: $@"; $ftp->login("anonymous",'-anonymous@') or die "Cannot

More information

SOFTWARE ARCHITECTURE 11. DISTRIBUTED FILE SYSTEM.

SOFTWARE ARCHITECTURE 11. DISTRIBUTED FILE SYSTEM. 1 SOFTWARE ARCHITECTURE 11. DISTRIBUTED FILE SYSTEM Tatsuya Hagino hagino@sfc.keio.ac.jp lecture URL https://vu5.sfc.keio.ac.jp/slide/ 2 File Sharing Online Storage Use Web site for upload and download

More information

Contents. Configuring SSH 1

Contents. Configuring SSH 1 Contents Configuring SSH 1 Overview 1 How SSH works 1 SSH authentication methods 2 SSH support for Suite B 3 FIPS compliance 3 Configuring the device as an SSH server 4 SSH server configuration task list

More information

1.1 Target group. 1.2 Summary of contents

1.1 Target group. 1.2 Summary of contents 1 Preface The product internet Services supplements the TCP/IP functionality of opennet Server with the following standards: DNS Resolver and Server DHCP Server BOOTP Server TFTP Server NTP Client and

More information

Internet Engineering Task Force (IETF) Request for Comments: Category: Standards Track ISSN: March 2010

Internet Engineering Task Force (IETF) Request for Comments: Category: Standards Track ISSN: March 2010 Internet Engineering Task Force (IETF) J. Klensin Request for Comments: 5797 Updates: 959 A. Hoenes Category: Standards Track TR-Sys ISSN: 2070-1721 March 2010 Abstract FTP Command and Extension Registry

More information

CS408: Black-box Testing

CS408: Black-box Testing CS408: Black-box Testing (due 9/25 Midnight) Contents 1 Project Description 1 2 Setup the ftp server 1 3 Connect to the ftp server 2 3.1 Control connection.......................... 2 3.2 Data connection...........................

More information

Table of Contents 1 Commands for Access Controller Switch Interface Board 1-1

Table of Contents 1 Commands for Access Controller Switch Interface Board 1-1 Table of Contents 1 Commands for Access Controller Switch Interface Board 1-1 Commands for Access Controller and Access Controller Switch Interface Board 1-1 acl (user interface view) 1-1 activation-key

More information

GridFTP: FTP Extensions for the Grid

GridFTP: FTP Extensions for the Grid GridFTP: FTP Extensions for the Grid 1.0 Mon Oct 2 06:06:49 2000 Contents 1 GridFTP: FTP Extensions for the Grid 3 1.1 Introduction................................................ 3 1.2 Terminology................................................

More information

Admin Guide ( Unix System Administration )

Admin Guide ( Unix System Administration ) Admin Guide ( Unix System Administration ) ProFTPD Server Configuration ProFTPD is a secure and configurable FTP server, written for use on Unix and Unix-like operating systems. ProFTPD is modeled around

More information

1 Preface 1.1 Target group

1 Preface 1.1 Target group 1 Preface TheinterNet Services product supplements the TCP/IP functionality of opennet Server with the following standards: DNS Resolver and Server DHCP Server BOOTP Server TFTP Server NTP Client and Server

More information

File Servant User Manual

File Servant User Manual File Servant User Manual Serve files over FTP and HTTP - at the snap of a finger! File Servant is free software (see copyright notice below). This document was last revised Monday 28 February 2011. Creator:

More information

Lab 4: Services, Logging and Intrusions

Lab 4: Services, Logging and Intrusions Lab 4: Services, Logging and Intrusions A Challenge Our challenge is to test services for their operation and to log network event for MyBank Incorp, where each of you will be allocated a network and hosts

More information

NWG/RFC# 640 JBP NJN 5-JUN-74 16: Revised FTP Reply Codes. Jon Postel 19 JUN 75. Revised FTP Reply Codes 1

NWG/RFC# 640 JBP NJN 5-JUN-74 16: Revised FTP Reply Codes. Jon Postel 19 JUN 75. Revised FTP Reply Codes 1 Revised FTP Reply Codes Jon Postel 19 JUN 75 Revised FTP Reply Codes 1 This document describes a revised set of reply codes for the File Transfer Protocol. 2 The aim of this revision is to satisfy the

More information

Detailed Design. TCP/IP Packet Descriptor

Detailed Design. TCP/IP Packet Descriptor Detailed Design Requested by: Mr. Ken Swarner Systems Administrator Computer Science Department of Siena College TCP/IP Packet Descriptor EdgeTech Development Always on the cutting edge EdgeTechDevelopment@hotmail.com

More information

Operation Manual System Management. Table of Contents

Operation Manual System Management. Table of Contents Table of Contents Table of Contents Chapter 1 File System Management... 1-1 1.1 File System Configuration... 1-1 1.1.1 File System Overview... 1-1 1.1.2 Directory... 1-1 1.1.3 File... 1-2 1.1.4 Storage

More information

Working with Configuration Files

Working with Configuration Files This chapter contains the following sections: Finding Feature Information, page 1 Information About Configuration Files, page 1 Licensing Requirements for Configuration Files, page 2 Managing Configuration

More information

Preliminary Design. Systems Administrator Computer Science Department of Siena College. TCP/IP Packet Descriptor

Preliminary Design. Systems Administrator Computer Science Department of Siena College. TCP/IP Packet Descriptor Preliminary Design Requested by: Mr. Ken Swarner Systems Administrator Computer Science Department of Siena College TCP/IP Packet Descriptor EdgeTech Development We re always on the cutting edge edgetechdevelopment@hotmail.com

More information

Utilities. Introduction. Working with SCE Platform Files. Working with Directories CHAPTER

Utilities. Introduction. Working with SCE Platform Files. Working with Directories CHAPTER CHAPTER 4 Revised: September 27, 2012, Introduction This chapter describes the following utilities: Working with SCE Platform Files, page 4-1 The User Log, page 4-5 Managing Syslog, page 4-8 Flow Capture,

More information

HP Load Balancing Module

HP Load Balancing Module HP Load Balancing Module System Maintenance Configuration Guide Part number: 5998-4221 Software version: Feature 3221 Document version: 6PW100-20130326 Legal and notice information Copyright 2013 Hewlett-Packard

More information

H3C WA Series WLAN Access Points. Fundamentals Command Reference

H3C WA Series WLAN Access Points. Fundamentals Command Reference H3C WA Series WLAN Access Points Fundamentals Command Reference Abstract This document details the commands for the WA series WLAN access points. Intended audience includes network planners, field technical

More information

HP 3600 v2 Switch Series

HP 3600 v2 Switch Series HP 3600 v2 Switch Series Fundamentals Command Reference Part number: 5998-7608 Software version: Release 2110P02 Document version: 6W100-20150305 Legal and notice information Copyright 2015 Hewlett-Packard

More information

Emergency shell commands 1

Emergency shell commands 1 Contents Emergency shell commands 1 copy 1 delete 1 dir 2 display copyright 4 display install package 4 display interface m-eth0 5 display ip routing-table 7 display ipv6 routing-table 7 display version

More information

Table of Contents Chapter 1 File System Management Commands

Table of Contents Chapter 1 File System Management Commands Table of Contents Table of Contents... 1-1 1.1 File System... 1-1 1.1.1 cd... 1-1 1.1.2 copy... 1-2 1.1.3 delete... 1-2 1.1.4 dir... 1-3 1.1.5 execute... 1-4 1.1.6 fdisk... 1-5 1.1.7 file prompt... 1-6

More information

HP 3600 v2 Switch Series

HP 3600 v2 Switch Series HP 3600 v2 Switch Series Fundamentals Command Reference Part number: 5998-2359 Software version: Release 2101 Document version: 6W101-20130930 Legal and notice information Copyright 2013 Hewlett-Packard

More information

Secure Shell Commands

Secure Shell Commands This module describes the Cisco IOS XR software commands used to configure Secure Shell (SSH). For detailed information about SSH concepts, configuration tasks, and examples, see the Implementing Secure

More information

Login management commands

Login management commands Contents Login management commands 1 CLI login configuration commands 1 display telnet client configuration 1 telnet 1 telnet ipv6 2 telnet server enable 3 User interface configuration commands 3 acl (user

More information

Using the emergency shell 1

Using the emergency shell 1 Contents Using the emergency shell 1 Emergency shell usage guidelines 1 Managing the file systems 1 Obtaining a system image from an FTP/TFTP server 2 Configuring the management Ethernet interface 2 Checking

More information

Table of Contents 1 PPP Configuration Commands PPPoE Configuration Commands 2-1

Table of Contents 1 PPP Configuration Commands PPPoE Configuration Commands 2-1 Table of Contents 1 PPP Configuration Commands 1-1 PPP Configuration Commands 1-1 ip address ppp-negotiate 1-1 link-protocol ppp 1-2 mtu 1-2 ppp account-statistics enable 1-3 ppp authentication-mode 1-3

More information

HP A3100 v2 Switch Series

HP A3100 v2 Switch Series HP A3100 v2 Switch Series Fundamentals Command Reference HP A3100-8 v2 SI Switch (JG221A) HP A3100-16 v2 SI Switch (JG222A) HP A3100-24 v2 SI Switch (JG223A) HP A3100-8 v2 EI Switch (JD318B) HP A3100-16

More information

HPE FlexFabric 5700 Switch Series

HPE FlexFabric 5700 Switch Series HPE FlexFabric 5700 Switch Series Fundamentals Command Reference Part number: 5998-5600R Software version: Release 2422P01 and later Document version: 6W100-20160331 Copyright 2016 Hewlett Packard Enterprise

More information

HP 5920 & 5900 Switch Series

HP 5920 & 5900 Switch Series HP 5920 & 5900 Switch Series Security Command Reference Part number: 5998-2887 Software version: Release2208 Document version: 6W100-20130228 Legal and notice information Copyright 2013 Hewlett-Packard

More information

Operation Manual AAA RADIUS HWTACACS H3C S5500-EI Series Ethernet Switches. Table of Contents

Operation Manual AAA RADIUS HWTACACS H3C S5500-EI Series Ethernet Switches. Table of Contents Table of Contents Table of Contents... 1-1 1.1 AAA/RADIUS/HWTACACS Over... 1-1 1.1.1 Introduction to AAA... 1-1 1.1.2 Introduction to RADIUS... 1-3 1.1.3 Introduction to HWTACACS... 1-9 1.1.4 Protocols

More information

Software Upgrade Guide

Software Upgrade Guide Contents Software Upgrade Guide 1 Files used for upgrade 1 Upgrade methods 1 Upgrade from the CLI 2 Upgrading a standalone switch 2 Upgrading an IRF fabric 7 Upgrade from the BootWare menu 13 BootWare

More information

Honeypots. Pakistan Honeynet Project

Honeypots. Pakistan Honeynet Project Honeypots Pakistan Honeynet Project Your Speaker Senior System Security Engineer, Cyber Internet Services Founder, Pakistan Honeynet Project Agenda The Problem Honeypots The Problem The Attacker Initiative

More information

Global Information Assurance Certification Paper. Copyright SANS Institute Author Retains Full Rights

Global Information Assurance Certification Paper. Copyright SANS Institute Author Retains Full Rights Global Information Assurance Certification Paper Copyright SANS Institute Author Retains Full Rights This paper is taken from the GIAC directory of certified professionals. Reposting is not permited without

More information

Appendix A Command Index A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Appendix A Command Index A B C D E F G H I J K L M N O P Q R S T U V W X Y Z The command index includes all the commands in the Comware Command Manual, which are arranged alphabetically. A B C D E F G H I J K L M N O P Q R S T U V W X Y Z A access-limit accounting accounting optional

More information

H3C S5830V2 & S5820V2 Switch Series

H3C S5830V2 & S5820V2 Switch Series H3C S5830V2 & S5820V2 Switch Series Security Command Reference Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Software version: Release2108 Document version: 6W101-20120531 Copyright 2012, Hangzhou

More information

Configuring Application Protocol Inspection

Configuring Application Protocol Inspection CHAPTER 3 Configuring Application Protocol Inspection This chapter describes how to configure application protocol inspection for the Cisco 4700 Series Application Control Engine (ACE) appliance. Application

More information

File system management commands 1

File system management commands 1 Contents File system management commands 1 cd 1 copy 3 delete 5 dir 7 fdisk 9 file prompt 11 fixdisk 11 format 12 gunzip 12 gzip 13 md5sum 14 mkdir 14 more 15 mount 16 move 17 pwd 18 rename 18 reset recycle-bin

More information

HP FlexFabric 5700 Switch Series

HP FlexFabric 5700 Switch Series HP FlexFabric 5700 Switch Series Security Command Reference Part number: 5998-6695 Software version: Release 2416 Document version: 6W100-20150130 Legal and notice information Copyright 2015 Hewlett-Packard

More information

Request for Comments: 913 September 1984

Request for Comments: 913 September 1984 Network Working Group Request for Comments: 913 Mark K. Lottor MIT September 1984 STATUS OF THIS MEMO This RFC suggests a proposed protocol for the ARPA-Internet community, and requests discussion and

More information

PPP configuration commands

PPP configuration commands Contents PPP configuration commands 1 ip address ppp-negotiate 1 ip pool 1 link-protocol ppp 2 ppp authentication-mode 2 ppp chap password 4 ppp chap user 5 ppp ipcp remote-address forced 5 ppp pap local-user

More information

June This paper assumes knowledge of the following protocols described in the ARPA Internet Protocol Handbook.

June This paper assumes knowledge of the following protocols described in the ARPA Internet Protocol Handbook. IEN 149 RFC 765 J. Postel ISI June 1980 FILE TRANSFER PROTOCOL INTRODUCTION The objectives of FTP are 1) to promote sharing of files (computer programs and/or data), 2) to encourage indirect or implicit

More information

Outline of Lecture 3 Protocols

Outline of Lecture 3 Protocols Web-Based Information Systems Fall 2007 CMPUT 410: Protocols Dr. Osmar R. Zaïane University of Alberta Course Content Introduction Internet and WWW TML and beyond Animation & WWW CGI & TML Forms Javascript

More information

Configuring Traffic Policies

Configuring Traffic Policies CHAPTER 11 Date: 4/23/09 Cisco Application Networking Manager helps you configure class maps and policy maps to provide a global level of classification for filtering traffic received by or passing through

More information

Secure Shell Commands

Secure Shell Commands This module describes the Cisco IOS XR software commands used to configure Secure Shell (SSH). For detailed information about SSH concepts, configuration tasks, and examples, see the Implementing Secure

More information

H3C S12500 Series Routing Switches

H3C S12500 Series Routing Switches H3C S12500 Series Routing Switches Security Command Reference Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Software version: S12500-CMW710-R7128 Document version: 6W710-20121130 Copyright 2012,

More information

HP FlexFabric 12900E Switch Series

HP FlexFabric 12900E Switch Series HP FlexFabric 12900E Switch Series Software Upgrade Guide Part number: 5998-8368 Document version: 6W100-20150930 Legal and notice information Copyright 2015 Hewlett-Packard Development Company, L.P. No

More information

Table of Contents 1 IPv6 Configuration IPv6 Application Configuration 2-1

Table of Contents 1 IPv6 Configuration IPv6 Application Configuration 2-1 Table of Contents 1 IPv6 Configuration 1-1 IPv6 Overview 1-1 IPv6 Features 1-1 Introduction to IPv6 Address 1-3 Introduction to IPv6 Neighbor Discovery Protocol 1-5 Introduction to IPv6 DNS 1-8 Protocols

More information

Table of Contents 1 SSH Configuration 1-1

Table of Contents 1 SSH Configuration 1-1 Table of Contents 1 SSH Configuration 1-1 SSH Overview 1-1 Introduction to SSH 1-1 Algorithm and Key 1-1 Asymmetric Key Algorithm 1-2 SSH Operating Process 1-2 Configuring the SSH Server 1-4 SSH Server

More information

Operation Manual Security. Table of Contents

Operation Manual Security. Table of Contents Table of Contents Table of Contents Chapter 1 802.1x Configuration... 1-1 1.1 802.1x Overview... 1-1 1.1.1 802.1x Standard Overview... 1-1 1.1.2 802.1x System Architecture... 1-1 1.1.3 802.1x Authentication

More information

Troubleshooting DHCP server configuration 28

Troubleshooting DHCP server configuration 28 Contents DHCP overview 1 Introduction to DHCP 1 DHCP address allocation 1 Allocation mechanisms 1 Dynamic IP address allocation process 2 IP address lease extension 2 DHCP message format 3 DHCP options

More information

The Application Layer HTTP and FTP

The Application Layer HTTP and FTP The Application Layer HTTP and FTP File Transfer Protocol (FTP) Allows a user to copy files to/from remote hosts Client program connects to FTP server provides a login id and password allows the user to

More information

Table of Contents 1 DHCP Overview DHCP Server Configuration 2-1

Table of Contents 1 DHCP Overview DHCP Server Configuration 2-1 Table of Contents 1 DHCP Overview 1-1 Introduction to DHCP 1-1 DHCP Address Allocation 1-2 Allocation Mechanisms 1-2 Dynamic IP Address Allocation Process 1-2 IP Address Lease Extension 1-3 DHCP Message

More information

Table of Contents. 2 MIB Style Configuration 2-1 Setting the MIB Style 2-1 Displaying and Maintaining MIB 2-1

Table of Contents. 2 MIB Style Configuration 2-1 Setting the MIB Style 2-1 Displaying and Maintaining MIB 2-1 Table of Contents 1 SNMP Configuration 1-1 SNMP Overview 1-1 SNMP Mechanism 1-1 SNMP Protocol Version 1-2 MIB Overview 1-2 SNMP Configuration 1-3 Configuring SNMP Logging 1-5 Introduction to SNMP Logging

More information

Managing file systems 1

Managing file systems 1 Contents Managing file systems 1 Overview 1 File systems 1 Directories 2 Files 2 Specifying a directory name or file name 3 FIPS compliance 3 File system management restrictions and guidelines 4 Managing

More information

Analyzing FTP Communications

Analyzing FTP Communications Laura Chappell Illustration: Norman Felchle One of the advantages of being a protocol analyst is the ability to look at packet-level communications to see how an application operates. When errors occur,

More information

Upgrading software. Router software overview. Software upgrade configuration task list

Upgrading software. Router software overview. Software upgrade configuration task list Contents Upgrading software 1 Router software overview 1 Software upgrade configuration task list 1 Upgrading system software from BootWare menu 2 BootWare main menu 2 BootWare submenus 3 Using TFTP/FTP

More information

Table of Contents 1 IPv6 Configuration IPv6 Application Configuration 2-1

Table of Contents 1 IPv6 Configuration IPv6 Application Configuration 2-1 Table of Contents 1 IPv6 Configuration 1-1 IPv6 Overview 1-1 IPv6 Features 1-1 Introduction to IPv6 Address 1-3 Introduction to IPv6 Neighbor Discovery Protocol 1-6 Introduction to IPv6 DNS 1-8 Protocols

More information

Unix File System. Learning command-line navigation of the file system is essential for efficient system usage

Unix File System. Learning command-line navigation of the file system is essential for efficient system usage ULI101 Week 02 Week Overview Unix file system File types and file naming Basic file system commands: pwd,cd,ls,mkdir,rmdir,mv,cp,rm man pages Text editing Common file utilities: cat,more,less,touch,file,find

More information

Commands are in black

Commands are in black Starting From the Shell Prompt (Terminal) Commands are in black / +--------+---------+-------+---------+---------+------ +------ +------ +------ +------ +------ +-- Bin boot dev etc home media sbin bin

More information

Real World.NET Applications BUDI KURNIAWAN

Real World.NET Applications BUDI KURNIAWAN Real World.NET Applications BUDI KURNIAWAN Real World.NET Applications Copyright 2003 by Budi Kurniawan All rights reserved. No part of this work may be reproduced or transmitted in any form or by any

More information

Operation Manual Login and User Interface. Table of Contents

Operation Manual Login and User Interface. Table of Contents Table of Contents Table of Contents Chapter 1 Switch Login... 1-1 1.1 Setting Up Configuration Environment Through the Console Port... 1-1 1.2 Setting Up Configuration Environment Through Telnet... 1-2

More information

Table of Contents. 2 MIB Configuration Commands 2-1 MIB Configuration Commands 2-1 display mib-style 2-1 mib-style 2-1

Table of Contents. 2 MIB Configuration Commands 2-1 MIB Configuration Commands 2-1 display mib-style 2-1 mib-style 2-1 Table of Contents 1 SNMP Configuration Commands 1-1 SNMP Configuration Commands 1-1 display snmp-agent community 1-1 display snmp-agent group 1-2 display snmp-agent local-engineid 1-3 display snmp-agent

More information

Chapter Two. Lesson A. Objectives. Exploring the UNIX File System and File Security. Understanding Files and Directories

Chapter Two. Lesson A. Objectives. Exploring the UNIX File System and File Security. Understanding Files and Directories Chapter Two Exploring the UNIX File System and File Security Lesson A Understanding Files and Directories 2 Objectives Discuss and explain the UNIX file system Define a UNIX file system partition Use the

More information

Appendix. Web Command Error Codes. Web Command Error Codes

Appendix. Web Command Error Codes. Web Command Error Codes Appendix Web Command s Error codes marked with * are received in responses from the FTP server, and then returned as the result of FTP command execution. -501 Incorrect parameter type -502 Error getting

More information

Table of Contents. 2 MIB Style Configuration 2-1 Overview 2-1 Setting the MIB Style 2-1 Displaying and Maintaining MIB 2-1

Table of Contents. 2 MIB Style Configuration 2-1 Overview 2-1 Setting the MIB Style 2-1 Displaying and Maintaining MIB 2-1 Table of Contents 1 SNMP Configuration 1-1 SNMP Overview 1-1 SNMP Mechanism 1-1 SNMP Protocol Versions 1-2 MIB Overview 1-2 Configuring SNMP 1-3 Configuring SNMPv3 1-3 Configuring SNMPv1 and SNMPv2c 1-4

More information

Introduction to UNIX. Logging in. Basic System Architecture 10/7/10. most systems have graphical login on Linux machines

Introduction to UNIX. Logging in. Basic System Architecture 10/7/10. most systems have graphical login on Linux machines Introduction to UNIX Logging in Basic system architecture Getting help Intro to shell (tcsh) Basic UNIX File Maintenance Intro to emacs I/O Redirection Shell scripts Logging in most systems have graphical

More information

Managing the ACE Software

Managing the ACE Software CHAPTER 4 This chapter describes how to manage the software running on the Cisco 4700 Series Application Control Engine (ACE) appliance and contains the following sections: Saving Configuration Files Loading

More information

EMC DiskXtender for UNIX/Linux Storage Manager Release 2.11

EMC DiskXtender for UNIX/Linux Storage Manager Release 2.11 EMC DiskXtender for UNIX/Linux Storage Manager Release 2.11 User Guide P/N 300-006-394 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2002

More information

Operation Manual ARP H3C S5500-SI Series Ethernet Switches. Table of Contents

Operation Manual ARP H3C S5500-SI Series Ethernet Switches. Table of Contents Table of Contents Table of Contents... 1-1 1.1 ARP Overview... 1-1 1.1.1 ARP Function... 1-1 1.1.2 ARP Message Format... 1-1 1.1.3 ARP Address Resolution Process... 1-2 1.1.4 ARP Mapping Table... 1-3 1.2

More information

Operation Manual SSH H3C S3610&S5510 Series Ethernet Switches. Table of Contents

Operation Manual SSH H3C S3610&S5510 Series Ethernet Switches. Table of Contents Table of Contents Table of Contents... 1-1 1.1 SSH Overview... 1-1 1.2 Configuring the SSH Server... 1-5 1.2.1 Enabling SSH Server... 1-5 1.2.2 Configuring the Protocols for the SSH Client User Interface

More information

Radius Configuration FSOS

Radius Configuration FSOS FSOS Radius Configuration Contents 1. RADIUS Configuration... 1 1.1 Radius Overview...1 1.1.1 AAA Overview...1 1.1.2 AAA Realization...1 1.1.3 RADIUS Overview...2 1.2 RADIUS Configuration... 3 1.2.1 RADIUS

More information

Week Overview. Unix file system File types and file naming Basic file system commands: pwd,cd,ls,mkdir,rmdir,mv,cp,rm man pages

Week Overview. Unix file system File types and file naming Basic file system commands: pwd,cd,ls,mkdir,rmdir,mv,cp,rm man pages ULI101 Week 02 Week Overview Unix file system File types and file naming Basic file system commands: pwd,cd,ls,mkdir,rmdir,mv,cp,rm man pages Text editing Common file utilities: cat,more,less,touch,file,find

More information

DHCP Overview. Introduction to DHCP

DHCP Overview. Introduction to DHCP Table of Contents DHCP Overview 1 Introduction to DHCP 1 DHCP Address Allocation 2 Allocation Mechanisms 2 Dynamic IP Address Allocation Process 2 IP Address Lease Extension 3 DHCP Message Format 3 DHCP

More information

Lab - Using Wireshark to Examine TCP and UDP Captures

Lab - Using Wireshark to Examine TCP and UDP Captures Topology Part 1 (FTP) Part 1 will highlight a TCP capture of an FTP session. This topology consists of a PC with Internet access. Topology Part 2 (TFTP) Part 2 will highlight a UDP capture of a TFTP session.

More information

Operation Manual DHCP H3C S3600 Series Ethernet Switches-Release Table of Contents

Operation Manual DHCP H3C S3600 Series Ethernet Switches-Release Table of Contents Table of Contents Table of Contents Chapter 1 DHCP Overview... 1-1 1.1 Introduction to DHCP... 1-1 1.2 DHCP IP Address Assignment... 1-1 1.2.1 IP Address Assignment Policy... 1-1 1.2.2 Obtaining IP Addresses

More information

SOFT-AM-0081_R3. AX3800S/AX3600S Software Upgrade Guide

SOFT-AM-0081_R3. AX3800S/AX3600S Software Upgrade Guide AX3800S/AX3600S Software Upgrade Guide Edition 4: November, 2011 1 Preface This document describes how to upgrade the software from L3(L3S) Lite Edition to L3(L3S) Advanced Edition. Read this document

More information

Using the Device File Systems, Directories, and Files

Using the Device File Systems, Directories, and Files Using the Device File Systems, Directories, and Files This chapter describes how to use your device file systems, directories, and files. Finding Feature Information, on page 1 Licensing Requirements for

More information

Mills HPC Tutorial Series. Linux Basics I

Mills HPC Tutorial Series. Linux Basics I Mills HPC Tutorial Series Linux Basics I Objectives Command Line Window Anatomy Command Structure Command Examples Help Files and Directories Permissions Wildcards and Home (~) Redirection and Pipe Create

More information

Operation Manual DHCP. Table of Contents

Operation Manual DHCP. Table of Contents Table of Contents Table of Contents Chapter 1 DHCP Overview... 1-1 1.1 Introduction to DHCP... 1-1 1.2 DHCP IP Address Assignment... 1-2 1.2.1 IP Address Assignment Policy... 1-2 1.2.2 Obtaining IP Addresses

More information

H3C S7500E Software Upgrade Configuration Examples

H3C S7500E Software Upgrade Configuration Examples H3C S7500E Software Upgrade Configuration Examples Copyright 2015 Hangzhou H3C Technologies Co., Ltd. A l l ri g h t s re s e r ve d. No part of this manual may be reproduced or transmitted in any form

More information

HP Unified Wired-WLAN Products

HP Unified Wired-WLAN Products HP Unified Wired-WLAN Products Security Command Reference HP 830 Unified Wired-WLAN PoE+ Switch Series HP 850 Unified Wired-WLAN Appliance HP 870 Unified Wired-WLAN Appliance HP 11900/10500/7500 20G Unified

More information

CS CS Tutorial 2 2 Winter 2018

CS CS Tutorial 2 2 Winter 2018 CS CS 230 - Tutorial 2 2 Winter 2018 Sections 1. Unix Basics and connecting to CS environment 2. MIPS Introduction & CS230 Interface 3. Connecting Remotely If you haven t set up a CS environment password,

More information

Operation Manual DHCP. Table of Contents

Operation Manual DHCP. Table of Contents Table of Contents Table of Contents Chapter 1 DHCP Overview... 1-1 1.1 DHCP Principles... 1-1 1.1.1 BOOTP Relay Agent... 1-3 1.1.2 DHCP and BOOTP Relay Agent... 1-4 1.2 General DHCP Configuration... 1-4

More information

Table of Contents 1 AAA Overview AAA Configuration 2-1

Table of Contents 1 AAA Overview AAA Configuration 2-1 Table of Contents 1 AAA Overview 1-1 Introduction to AAA 1-1 Authentication 1-1 Authorization 1-1 Accounting 1-2 Introduction to ISP Domain 1-2 Introduction to AAA Services 1-3 Introduction to RADIUS 1-3

More information

Secure Shell Commands

Secure Shell Commands Secure Shell Commands This module describes the Cisco IOS XR software commands used to configure Secure Shell (SSH). For detailed information about SSH concepts, configuration tasks, and examples, see

More information

Configuring the WT-4 for ftp (Ad-hoc Mode)

Configuring the WT-4 for ftp (Ad-hoc Mode) En Configuring the WT-4 for ftp (Ad-hoc Mode) Windows XP Introduction This document provides basic instructions on configuring the WT-4 wireless transmitter and a Windows XP Professional SP2 ftp server

More information

CSMC 412. Computer Networks Prof. Ashok K Agrawala Ashok Agrawala Set 2. September 15 CMSC417 Set 2 1

CSMC 412. Computer Networks Prof. Ashok K Agrawala Ashok Agrawala Set 2. September 15 CMSC417 Set 2 1 CSMC 412 Computer Networks Prof. Ashok K Agrawala 2015 Ashok Agrawala Set 2 September 15 CMSC417 Set 2 1 Contents Client-server paradigm End systems Clients and servers Sockets Socket abstraction Socket

More information