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

Size: px
Start display at page:

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

Transcription

1 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 configuration commands 5 ascii 6 binary 6 bye 7 cd 7 cdup 8 close 9 debugging 9 delete 11 dir 11 disconnect 12 display ftp client configuration 13 ftp 13 ftp client source 15 ftp ipv6 15 get 17 lcd 17 ls 18 mkdir 19 open 19 open ipv6 20 passive 21 put 22 pwd 22 quit 23 remotehelp 23 rmdir 25 user 26 verbose 26 TFTP configuration commands 28 display tftp client configuration 28 tftp-server acl 28 tftp 29 tftp client source 30 tftp ipv6 31 i

2 FTP configuration commands FTP server configuration commands display ftp-server display ftp-server [ { begin exclude include } regular-expression ] Any view : Filters command output by specifying a regular expression. For more information about regular expressions, see Fundamentals Configuration Guide. begin: Displays the first line that matches the specified regular expression and all lines that follow. exclude: Displays all lines that do not match the specified regular expression. include: Displays all lines that match the specified regular expression. regular-expression: Specifies a regular expression, a case-sensitive string of 1 to 256 characters. 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, and 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 Output description Field Max user number User count Maximum number of concurrent login users. Number of the current login users. 1

3 Field Timeout value (in minute) Put Method Allowed idle time of an FTP connection. If there is no packet exchange between the FTP server and client during this period, the FTP connection will be disconnected. Put method, fast or normal. display ftp-user display ftp-user [ { begin exclude include } regular-expression ] Any view : Filters command output by specifying a regular expression. For more information about regular expressions, see Fundamentals Configuration Guide. begin: Displays the first line that matches the specified regular expression and all lines that follow. exclude: Displays all lines that do not match the specified regular expression. include: Displays all lines that match the specified regular expression. regular-expression: Specifies a regular expression, a case-sensitive string of 1 to 256 characters. 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 2 Output description Field UserName HostIP Port Name of the currently logged-in user IP address of the currently logged-in user Port which the currently logged-in user is using 2

4 Field Idle HomeDir Duration time of the current FTP connection, in minutes Authorized path of the present logged-in user free ftp user free ftp user username User view username: Username. You can use the display ftp-user command to view FTP login user information. Use the free ftp user command to manually release the FTP connection established by the specified user. This command releases the FTP connection established by the specified user no matter whether the user is transmitting a file. # 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 of 2000 to Use the ftp server acl command to control FTP clients access to the FTP server by 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 FTP server. 3

5 An ACL can enable the FTP server to deny the FTP requests of some FTP clients and permit the access of clients allowed. 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 multiple times, the last specified ACL takes effect. # Associate the FTP service with ACL 2001 to allow only the client to access the FTP server 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 None 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. ftp timeout # Enable the FTP server. <Sysname> system-view [Sysname] ftp server enable ftp timeout minute undo ftp timeout System view 4

6 minute: Idle-timeout time in minutes, in the range of 1 to Use the ftp timeout command to set the idle-timeout time. Use the undo ftp timeout command to restore the default. By default, the FTP idle time is 30 minutes. If the idle time of an FTP connection exceeds the FTP timeout value, the FTP server breaks the connection to save resources. ftp update # Set the idle-timeout timer to 36 minutes. <Sysname> system-view [Sysname] ftp timeout 36 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. By default, the file update mode is normal. # Set the FTP update mode to normal. <Sysname> system-view [Sysname] ftp update normal FTP client configuration commands 5

7 NOTE: You must use the ftp command to enter before making client configurations. For more information, see ftp. Before executing FTP client configuration commands, make sure you have made proper authority configurations for users on the FTP server, for example, view the files under the current directory, read/download specified files, create directory/upload files, and rename/remove files). The prompt information in the examples of this section varies with FTP server types. ascii ascii None 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, H3C and Windows use characters /r/n, and Linux uses characters /n. The rules of the specified file transfer mode must be followed by the two communicating systems that use different carriage return characters so that they can correctly resolve received files. FTP transfers files in two modes: Binary mode for program file or picture transmission. ASCII mode for text file transmission. Related commands: binary. binary # Set the file transfer mode to ASCII. [ftp] ascii 200 Type set to A. binary 6

8 None 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. bye # Set the file transfer mode to binary. [ftp] binary 200 Type set to I. bye None Use the bye command to disconnect from the remote FTP server and return to user view. If the router establishes no connection with the remote FTP server, you will return to user view directly. Related commands: close, disconnect, and quit. cd # Terminate the connection with the remote FTP server and return to user view. [ftp] bye 221 Server closing. cd { directory.. / } 7

9 directory: Name of the target directory, in the format of [drive:/][/]path. The drive argument specifies the name of the storage medium. 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, or to access another authorized directory. Related commands: pwd. cdup # 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. cdup None Use the cdup command to exit the current directory and enter the upper directory of the FTP server. This command does not change the working directory if the current directory is work-directory. Related commands: cd and 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. 8

10 close [ftp] pwd 257 "/ftp" is current directory close None Use the close command to terminate the connection to the FTP server, but remain in. This command is equal to the disconnect command. # Terminate the connection to the FTP server and remain in. [ftp] close 221 Server closing. [ftp] debugging debugging undo debugging None 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 router 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. 9

11 <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 ---> 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 3 Output description Field ---> PORT Give an FTP order, with data port numbers being The parsed reply is 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. 10

12 delete dir delete remotefile remotefile: File name. Use the delete command to permanently delete a specified file on the remote FTP server. To perform this operation, you must have delete permission on the FTP server. # Delete file temp.c. [ftp] delete temp.c 250 DELE command successful. 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 in 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. 11

13 NOTE: The ls command displays only the names of directories and files, 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 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 -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. disconnect [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 None Use the disconnect command to disconnect from the remote FTP server but remain in. This command is equal to the close command. 12

14 # Disconnect from the remote FTP server but remain in. [ftp] disconnect 221 Server closing. display ftp client configuration Any view display ftp client configuration [ { begin exclude include } regular-expression ] 1: Monitor level : Filters command output by specifying a regular expression. For more information about regular expressions, see Fundamentals Configuration Guide. begin: Displays the first line that matches the specified regular expression and all lines that follow. exclude: Displays all lines that do not match the specified regular expression. include: Displays all lines that match the specified regular expression. regular-expression: Specifies a regular expression, a case-sensitive string of 1 to 256 characters. Use the display ftp client configuration command to display the source IP address configuration of the FTP client. Related commands: ftp client source. # Display the source IP address configuration of the FTP client. <Sysname> display ftp client configuration The source IP address is NOTE: The display ftp client configuration command displays the source IP address configuration of the FTP client. If the specified source IP address is active, this command displays the source IP address. If the specified source interface is active, this command displays the source interface. ftp ftp [ server-address [ service-port ] [ vpn-instance vpn-instance-name ] [ source { interface interface-type interface-number ip source-ip-address } ] ] User view 13

15 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 of 0 to The default value is 21. vpn-instance vpn-instance-name: Specifies the MPLS L3VPN that the FTP server belongs to. The vpn-instance-name argument is a case sensitive string of 1 to 31 characters. If the FTP server is on the public network, do not specify this option. source { interface interface-type interface-number ip source-ip-address } ]: Specifies the source address used to establish an FTP connection. 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 FTP packets. If no primary IP address is configured on the source interface, the connection fails. ip source-ip-address: The source IP address of the transmitted FTP packets. 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. This command applies to IPv4 networks. If you use this command without specifying any parameters, you will simply enter the 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 source IP address specified with the ftp command has higher priority than that specified with the ftp client source command and thus is preferably used. Related commands: ftp client source. # Log in from the current router Sysname1 to the router Sysname2 with the IP address of The source IP address of the packets sent is <Sysname1> 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] 14

16 ftp client source ftp client source { interface interface-type interface-number ip source-ip-address } undo ftp client source System view 2: System level interface interface-type interface-number: Specifies the source interface for establishing FTP connections. The primary IP address of the source interface is used as the source IP address of packets sent to an FTP server. If the source interface has no primary IP address specified, no FTP connection can be established. ip source-ip-address: Specifies the source IP address of packets sent to an FTP server, which is one of the IP addresses of the device. Use the ftp client source command to specify the source IP address of packets sent to an FTP server. Use the undo ftp client source command to restore the default. By default, the source IP address is the IP address of the output interface of the route to the server is used as the source IP address. If you use the ftp client source command to first configure a source interface and then a source IP address, the source IP address overwrites the source interface, and vice versa. If you first use the ftp client source command to specify a source IP address and then use the ftp command to specify another source IP address, the latter is used. The source IP address specified with the ftp client source command applies to all FTP connections while the one specified with the ftp command applies to the current FTP connection only. Related commands: display ftp client configuration. ftp ipv6 # Specify the source IP address of packets sent to an FTP server as <Sysname> system-view [Sysname] ftp client source ip # Specify the IP address of interface GigabitEthernet 3/1/1 as the source IP address of packets sent to an FTP server. <Sysname> system-view [Sysname] ftp client source interface GigabitEthernet 3/1/1 ftp ipv6 [ server-address [ service-port ] [ vpn-instance vpn-instance-name ] [ source ipv6 source-ipv6-address ] [ -i interface-type interface-number ] ] 15

17 User view server-address: IP address or host name of the remote FTP server. service-port: TCP port number of the FTP server, in the range of 0 to The default value is 21. source ipv6 source-ipv6-address: Specifies a source IPv6 address for transmitted FTP packets. This address must be an IPv6 address that has been configured on the router. -i interface-type interface-number: Specifies the type and number of the egress interface. This parameter can be used only in case that the FTP server address is a link local address and the specified egress interface must have a link local address. For the configuration of link local addresses, see Layer 3 IP Services Configuration Guide. vpn-instance vpn-instance-name: Specifies the MPLS L3VPN that the FTP server belongs to. The vpn-instance-name argument is a case sensitive string of 1 to 31 characters. If the FTP server is on the public network, do not specify this option. Use the ftp ipv6 command to log in to the FTP server and enter. This command applies to IPv6 networks. If you use this command without specifying any parameters, you will simply enter the without logging in to an FTP server. If you specify the parameters, you will be asked to enter the username and password for accessing the FTP server. # Log in to the FTP server with IPv6 address 3000::200. <Sysname> ftp ipv6 3000::200 Trying 3000:: Press CTRL+K to abort Connected to 3000:: Welcome! User(3000::200:(none)): MY_NAME 331 Please specify the password. Password: 230 Login successful. [ftp] # Log in to the FTP server with IPv6 address 3000::200 in VPN 1. <Sysname> ftp ipv6 3000::200 vpn-instance vpn1 Trying 3000:: Press CTRL+K to abort Connected to 3000:: Welcome! User(3000::200:(none)): MY_NAME 331 Please specify the password. 16

18 get Password: 230 Login successful. [ftp] get remotefile [ localfile ] remotefile: Name of the file on the remote FTP server. localfile: File name 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 lcd 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 None Use the lcd command to display the local working directory of the FTP client. 17

19 ls # Display the local working directory. [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 ] ] 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. NOTE: The ls command displays only 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.bin arbasicbtm.bin ftp test bb.cfg testcfg.cfg 226 Transfer complete. 18

20 mkdir 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/* 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 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. open [ftp] mkdir mytest 257 "/mytest" new directory created. open server-address [ service-port ] server-address: IP address or host name of a remote FTP server. 19

21 service-port: Port number of the remote FTP server, in the range of 0 to 65535, with the default value of 21. Use the open command to log in to the IPv4 FTP server under. At login, enter the username and password for accessing the FTP server. If your input is correct, the login succeeds. If you have logged in to the IPv4 FTP server, you cannot use the open command to log in to another server. To do so, you must disconnect from the current server first. 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] open ipv6 open ipv6 server-address [ service-port ] [ -i interface-type interface-number ] server-address: IP address or host name of the remote FTP server. service-port: Port number of the remote FTP server, in the range of 0 to The default value is 21. -i interface-type interface-number: Specifies the egress interface by its type and number. This parameter can be used only in case that the FTP server address is a link local address and the specified egress interface must have a link local address. For the configuration of link local addresses, see Layer 3 IP Services Configuration Guide. Use the open ipv6 command to log in to the IPv6 FTP server in. 20

22 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. Related commands: close. passive # Log in to the FTP server (with IPv6 address 3000::200) in. <Sysname> ftp [ftp] open ipv6 3000::200 Trying 3000:: Press CTRL+K to abort Connected to 3000:: Welcome! User(3000::200:(none)): MY_NAME 331 Please specify the password. Password: 230 Login successful. passive undo passive None 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. Data transmission modes fall into the passive mode and the active mode. The active mode specifies the server to initiate connection requests. The passive mode specifies the client to initiate connection requests. This command is mainly used in conjunction with a firewall to restrict FTP connections between private and public network users. # Set the data transmission mode to passive. [ftp] passive FTP: passive is on 21

23 put put localfile [ remotefile ] localfile: Name of the local file. remotefile: File name saved on the remote FTP server. Use the put command to upload a local file to the remote FTP server. By default, if no name is assigned to the file to be saved on the FTP server, the name of the source file is used. After a file is uploaded, it will be saved under the user s authorized directory, which can be set by issuing the authorization-attribute command on the remote server. pwd # 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 None 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 22

24 quit [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 None Use the quit command to disconnect the FTP client 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 ] 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 23

25 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 4 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* PORT PASV TYPE STRU* MODE* RETR STOR STOU* APPE* ALLO* REST* RNFR* RNTO* ABOR* DELE 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. 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. 24

26 Field RMD MKD PWD LIST NLST SITE* SYST STAT* HELP NOOP* XCUP XCWD XMKD XPWD XRMD : USER <sp> <username>. 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. rmdir rmdir directory directory: Directory name on the remote FTP server. Use the rmdir command to remove a specified directory from the FTP server. Only authorized users are allowed to use this command. Delete all files and subdirectories under a directory before you delete the directory. For how to delete files, see the delete command. After you execute the rmdir command, 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. 25

27 user [ftp] rmdir /temp1 200 RMD command successful. user username [ password ] username: Login username. password: Login password. You can input this argument a space after the username argument; or you can input this argument when the Password: prompt appears after you input the username and then press Enter. 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. verbose [ftp] verbose undo verbose 26

28 None Use the verbose command to enable display of detailed prompt information received from the server. Use the undo verbose command to disable display of detailed prompt information. By default, the display of detailed prompt information is enabled. # Enable display of detailed prompt information. [ftp] verbose FTP: verbose is on # Disable display of detailed prompt information and perform a 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 display of detailed prompt information and perform a 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. 27

29 TFTP configuration commands display tftp client configuration display tftp client configuration [ { begin exclude include } regular-expression ] Any view 1: Monitor level : Filters command output by specifying a regular expression. For more information about regular expressions, see Fundamentals Configuration Guide. begin: Displays the first line that matches the specified regular expression and all lines that follow. exclude: Displays all lines that do not match the specified regular expression. include: Displays all lines that match the specified regular expression. regular-expression: Specifies a regular expression, a case-sensitive string of 1 to 256 characters. Use the display tftp client configuration command to display source IP address configuration of the TFTP client. The display tftp client configuration command displays the source IP address configuration of the TFTP client. If the specified source IP address is active, this command displays the source IP address. If the specified source interface is active, this command displays the source interface. Related commands: tftp client source. # Display the source IP address configuration of the TFTP client. <Sysname> display tftp client configuration The source IP address is tftp-server acl tftp-server [ ipv6 ] acl acl-number undo tftp-server [ ipv6 ] acl System view 28

30 ipv6: References an IPv6 ACL. If it is not specified, an IPv4 ACL is referenced. acl-number: Number of a basic ACL, in the range of 2000 to Use the tftp-server acl command to control the router 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 router s access to TFTP servers. You can use an ACL to deny or permit the device s access to a specific TFTP server. For more information about ACL, see ACL and QoS Configuration Guide. tftp # Allow the router to access the TFTP server with the IP address of only (in IPv4 networking environment). <Sysname> system-view [Sysname] acl number 2000 [Sysname-acl-basic-2000] rule permit source [Sysname-acl-basic-2000] quit [Sysname] tftp-server acl 2000 # Allow the router to access the TFTP server with the IP address of 2001::1 only (in IPv6 networking environment). <Sysname> system-view [Sysname] acl ipv6 number 2001 [Sysname-acl6-basic-2001] rule permit source 2001::1/128 [Sysname-acl6-basic-2001] quit [Sysname] tftp-server ipv6 acl 2001 tftp server-address { get put sget } source-filename [ destination-filename ] [ vpn-instance vpn-instance-name ] [ source { interface interface-type interface-number ip source-ip-address } ] User view server-address: IP address or host name of a TFTP server. source-filename: Source file name. destination-filename: Destination file name. get: Downloads a file in normal mode. put: Uploads a file. sget: Downloads a file in secure mode. 29

31 vpn-instance vpn-instance-name: Specifies the MPLS L3VPN where the TFTP server belongs. The vpn-instance-name argument is a case sensitive string of 1 to 31 characters. If the TFTP server is on the public network, do not specify this option. 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 router. Use the tftp command to upload files from the local router to a TFTP server or download files from the TFTP server to the local router. If no destination file name is specified, a file is saved using the same name as that on the remote TFTP server to the current working directory of the user (namely, the working directory where the tftp command is executed). The source IP address specified with the tftp command has higher priority than that specified with the tftp client source command and thus is preferably used. This command applies to IPv4 networks. 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 router 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 GigabitEthernet 3/1/1. <Sysname> tftp put config.cfg config.bak source interface gigabitethernet 3/1/1 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 30

32 System view 2: System level interface interface-type interface-number: Specifies the source interface for establishing TFTP connections. The primary IP address of the source interface is used as the source IP address of packets sent to a TFTP server. If the source interface has no primary IP address specified, no TFTP connection can be established. ip source-ip-address: Specifies the source IP address of packets sent to a TFTP server, which is one of the IP addresses configured on the device. Use the tftp client source command to specify the source IP address of packets sent to a TFTP server. Use the undo tftp client source command to restore the default. By default, the source IP address is the IP address of the output interface of the route to the server is used as the source IP address.. If you use the tftp client source command to first configure a source interface and then a source IP address, the source IP address overwrites the source interface, and vice versa. If you first use the tftp client source command to specify a source IP address and then use the tftp command to specify another source IP address, the latter is used. The source IP address specified with the tftp client source command applies to all TFTP connections while the one specified with the tftp command applies to the current TFTP connection only. Related commands: display tftp client configuration. tftp ipv6 # Specify the source IP address of packets sent a TFTP server as <Sysname> system-view [Sysname] tftp client source ip # Specify the IP address of interface GigabitEthernet 3/1/1 as the source IP address of packets sent to a TFTP server. <Sysname> system-view [Sysname] tftp client source interface GigabitEthernet 3/1/1 tftp ipv6 tftp-ipv6-server [ -i interface-type interface-number ] { get put } source-filename [ destination-filename ] [ vpn-instance vpn-instance-name ] User view 31

33 tftp-ipv6-server: IPv6 address or host name (a string of 1 to 46 characters) of a TFTP server. -i interface-type interface-number: Specifies the egress interface by its type and number. This parameter can be used only in case that the TFTP server address is a link local address and the specified egress interface must have a link local address. For the configuration of link local address, see Layer 3 IP Services Configuration Guide. get: Downloads a file. put: Uploads a file. source-file: Source filename. destination-file: Destination filename. If not specified, this filename is the same as the source filename. vpn-instance vpn-instance-name: Specifies the MPLS L3VPN where the TFTP server belongs. The vpn-instance-name argument is a case sensitive string of 1 to 31 characters. If the TFTP server is on the public network, do not specify this option. Use the tftp ipv6 command to download a specified file from a TFTP server or upload a specified local file to a TFTP server. This command applies to IPv6 networks. # Download filetoget.txt from the TFTP server. <Sysname> tftp ipv6 fe80::250:daff:fe91:e058 -i gigabitethernet 3/1/1 get filetoget.txt... File will be transferred in binary mode Downloading file from remote TFTP server, please wait... TFTP: bytes received in 2 second(s) File downloaded successfully. 32

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 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

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

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

$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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 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 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 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

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

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

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

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

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

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

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

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

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

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

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

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

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

Ping, tracert and system debugging commands

Ping, tracert and system debugging commands Contents Ping, tracert and system debugging commands 1 Ping and tracert commands 1 ping 1 ping ipv6 5 tracert 7 tracert ipv6 9 System debugging commands 10 debugging 10 display debugging 11 i Ping, tracert

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

Contents. Ping, tracert, and system debugging commands 1. debugging 1 display debugging 1 ping 2 ping ipv6 5 tracert 7 tracert ipv6 10

Contents. Ping, tracert, and system debugging commands 1. debugging 1 display debugging 1 ping 2 ping ipv6 5 tracert 7 tracert ipv6 10 Contents Ping, tracert, and system debugging commands 1 debugging 1 display debugging 1 ping 2 ping ipv6 5 tracert 7 tracert ipv6 10 i Ping, tracert, and system debugging commands debugging Syntax Default

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

Loopback detection configuration commands

Loopback detection configuration commands Contents Loopback detection configuration commands 1 display loopback-detection 1 loopback-detection action 2 loopback-detection enable 2 loopback-detection interval-time 3 i Loopback detection configuration

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

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

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

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

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

H3C SecPath Series High-End Firewalls

H3C SecPath Series High-End Firewalls H3C SecPath Series High-End Firewalls NAT and ALG Command Reference Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Software version: SECPATH1000FE&SECBLADEII-CMW520-R3166 SECPATH5000FA-CMW520-R3206

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 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

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

HP MSR Router Series. Fundamentals Command Reference(V7) Part number: Software version: CMW710-R0106 Document version: 6PW

HP MSR Router Series. Fundamentals Command Reference(V7) Part number: Software version: CMW710-R0106 Document version: 6PW HP MSR Router Series Fundamentals Command Reference(V7) Part number: 5998-6354 Software version: CMW710-R0106 Document version: 6PW101-20140807 Legal and notice information Copyright 2014 Hewlett-Packard

More information

Logging in to the CLI

Logging in to the CLI Contents Logging in to the CLI 1 Login methods 1 Logging in through the console port 2 Introduction 2 Configuration procedure 2 Logging in through the AUX port 5 Configuration prerequisites 5 Configuration

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

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

H3C S5120-EI Switch Series

H3C S5120-EI Switch Series H3C S5120-EI Switch Series IP Multicast Command Reference Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Software version: Release 2210 Document version: 6W100-20110915 Copyright 2011, Hangzhou

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

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

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

HP High-End Firewalls

HP High-End Firewalls HP High-End Firewalls NAT and ALG Command Reference Part number: 5998-2639 Software version: F1000-E/Firewall module: R3166 F5000-A5: R3206 Document version: 6PW101-20120706 Legal and notice information

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

H3C SR6600/SR6600-X Routers

H3C SR6600/SR6600-X Routers H3C SR6600/SR6600-X Routers Network Management and Monitoring Command Reference Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Software version: SR6600X-CMW520-R3103 SR6602-CMW520-R3103 SR6602X_MCP-CMW520-R3103

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

HP A-F1000-A-EI_A-F1000-S-EI VPN Firewalls

HP A-F1000-A-EI_A-F1000-S-EI VPN Firewalls HP A-F1000-A-EI_A-F1000-S-EI VPN Firewalls NAT Configuration Guide Part number:5998-2649 Document version: 6PW100-20110909 Legal and notice information Copyright 2011 Hewlett-Packard Development Company,

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

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 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

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

HP A6600 Routers Network Management and Monitoring. Command Reference. Abstract

HP A6600 Routers Network Management and Monitoring. Command Reference. Abstract HP A6600 Routers Network Management and Monitoring Command Reference Abstract This document describes the commands and command syntax options available for the HP A Series products. This document is intended

More information

HP FlexFabric 5930 Switch Series

HP FlexFabric 5930 Switch Series HP FlexFabric 5930 Switch Series Layer 3 IP Services Command Reference Part number: 5998-4568 Software version: Release 2406 & Release 2407P01 Document version: 6W101-20140404 Legal and notice information

More information

HP 6125G & 6125G/XG Blade Switches

HP 6125G & 6125G/XG Blade Switches HP 6125G & 6125G/XG Blade Switches Network Management and Monitoring Command Reference Part number: 5998-3173b Software version: Release 2103 and later Document version: 6W103-20151020 Legal and notice

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

Table of Contents 1 System Maintenance and Debugging Commands 1-1

Table of Contents 1 System Maintenance and Debugging Commands 1-1 Table of Contents 1 System Maintenance and Debugging Commands 1-1 System Maintenance Commands 1-1 ping 1-1 ping ipv6 1-5 tracert 1-6 tracert ipv6 1-7 System Debugging Commands 1-8 debugging 1-8 display

More information

H3C SecPath Series High-End Firewalls

H3C SecPath Series High-End Firewalls H3C SecPath Series High-End Firewalls NAT and ALG Configuration Guide Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Software version: SECPATHF1000SAI&F1000AEI&F1000ESI-CMW520-R3721 SECPATH5000FA-CMW520-F3210

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

Portal configuration commands

Portal configuration commands Contents Portal configuration commands 1 display portal acl 1 display portal connection statistics 5 display portal free-rule 7 display portal interface 9 display portal-roaming 11 display portal server

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

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

Configuring ACLs. ACL overview. ACL categories. ACL numbering and naming

Configuring ACLs. ACL overview. ACL categories. ACL numbering and naming Contents Configuring ACLs 1 ACL overview 1 ACL categories 1 ACL numbering and naming 1 Match order 2 ACL rule numbering 3 Implementing time-based ACL rules 3 IPv4 fragments filtering with ACLs 3 Flow templates

More information

H3C SecPath Series High-End Firewalls

H3C SecPath Series High-End Firewalls H3C SecPath Series High-End Firewalls Attack Protection Command Reference Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Software version: SECPATHF1000SAI&F1000AEI&F1000ESI-CMW520-R3721 SECPATH5000FA-CMW520-F3210

More information

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

Table of Contents. 2 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

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

Command Manual MAC Address Table Management H3C S5500-EI Series Ethernet Switches. Table of Contents

Command Manual MAC Address Table Management H3C S5500-EI Series Ethernet Switches. Table of Contents Table of Contents Table of Contents... 1-1 1.1 MAC Address Table Management... 1-1 1.1.1 display mac-address... 1-1 1.1.2 display mac-address aging-time... 1-2 1.1.3 mac-address (Ethernet port view)...

More information

H3C S6800 Switch Series

H3C S6800 Switch Series H3C S6800 Switch Series OpenFlow Command Reference New H3C Technologies Co., Ltd. http://www.h3c.com Software version: Release 2609 and later Document version: 6W103-20190104 Copyright 2019, New H3C Technologies

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

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