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 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 client configuration 1-8 ftp 1-9 ftp client source 1-10 ftp ipv get 1-12 lcd 1-12 ls 1-13 mkdir 1-14 open 1-14 open ipv passive 1-16 put 1-16 pwd 1-17 quit 1-17 remotehelp 1-18 rmdir 1-20 user 1-20 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 tftp ipv6 2-4 i

2 The models listed in this document are not applicable to all regions. Please consult your local sales office for the models applicable to your region. Support of the H3C WA series WLAN access points (APs) for commands may vary by AP model. For more information, see Feature Matrix. The interface types and the number of interfaces vary by AP model. 1 FTP Configuration Commands 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 more information, see 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 None Use the ascii command to set the file transfer mode to ASCII. 1-1

3 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. Related commands: binary. # Set the file transfer mode to ASCII. [ftp] ascii 200 Type set to A. binary binary 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. # Set the file transfer mode to binary. [ftp] binary 200 Type set to I. bye bye 1-2

4 None 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, and 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. drive represents the storage medium name. Usually, the storage medium is flash or cf. 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-3

5 cdup cdup None 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 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. [ftp] pwd 257 "/ftp" is current directory close 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 Service closing control connection 1-4

6 [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 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] debugging [ftp] get sample.file ---> PORT 192,168,1,44,4, Port command successful 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. 1-5

7 FTP: 3304 byte(s) received in second(s), byte(s)/sec. [ftp] Table 1-1 debugging command 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. delete delete remotefile remotefile: File name, a string of 1 to 256 characters. Use the delete command to permanently delete a specified file on the remote FTP server. To do this, you must be a user with the delete permission on the FTP server. # Delete file temp.c. [ftp] delete temp.c 250 DELE command successful. dir dir [ remotefile [ localfile ] ] 1-6

8 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.bin -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 file aa.txt [ftp] quit <Sysname> more aa.txt -rwxrwxrwx 1 noone nogroup 3077 Jun 20 15:34 ar-router.cfg 1-7

9 disconnect disconnect None 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 Any view 1: Monitor level None Use the display ftp client configuration command to display the configuration information of the FTP client. 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. 1-8

10 <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. 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 asked 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 from the current device Sysname1 in 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 1-9

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

12 <Sysname> system-view [Sysname] ftp client source interface Vlan-interface 1 ftp ipv6 ftp ipv6 [ server-address [ service-port ] [ source ipv6 source-ipv6-address ] [ -i interface-type interface-number ] ] 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 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 device. -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 IPv6 Basics in the Layer 3 IP Services Configuration Guide). Use the ftp ipv6 command to log in to the FTP server and enter. Note that: This command applies to IPv6 networks. If you use this command without specifying any parameters, you will simply enter the FTP client view 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] 1-11

13 get get remotefile [ localfile ] 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. If no local file name is specified, the local file uses the name of the source file on the FTP server by default. # 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 None Use the lcd command to display the local working directory of the FTP client. # Display the local working directory. [ftp] lcd 1-12

14 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 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 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 test.bin 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. 1-13

15 [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 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 MKD.command sucessful open open server-address [ service-port ] server-address: IP address or host name of a remote FTP server. service-port: Port number of the remote FTP server, in the range 0 to 65535, with the default value of

16 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] 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 0 to The default value is 21. -i interface-type interface-number: Specifies the egress interface by it 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 IPv6 Basics in the Layer 3 IP Services Configuration Guide). Use the open ipv6 command to log in to the IPv6 FTP server in. 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. 1-15

17 # 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 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 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 ] 1-16

18 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 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 [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 1-17

19 None 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 ] 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 parameter 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 1-18

20 214 : USER <sp> <username>. [ftp] Table 1-2 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* PORT PASV TYPE STRU* MODE* RETR STOR STOU* APPE* ALLO* REST* RNFR* RNTO* ABOR* DELE RMD MKD PWD LIST NLST SITE* SYST STAT* HELP 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 Delete a folder Create a folder Print working directory List files List file description Locate a parameter Display system parameters State Help 1-19

21 Field NOOP* XCUP XCWD XMKD XPWD XRMD : USER <sp> <username>. 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, a string of 1 to 256 characters.. 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, see 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 directory temp1 from the authorized directory on the FTP server. [ftp] rmdir /temp1 200 RMD command successful. user user username [ password ] 1-20

22 username: Login username. password: Login password. 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 tothe current FTP server. (Suppose username ftp2 and password have been configured on the FTP server). [ftp] user ftp2 331 Password required for ftp2. Password: 230 User logged in. [ftp] verbose verbose undo verbose None 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. [ftp] verbose FTP: verbose is on # Disable the protcol information function and perform the Get operation. [ftp] undo verbose 1-21

23 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 protcol inforamtion function and perfrom 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-22

24 2 TFTP Configuration Commands TFTP Client Configuration Commands display tftp client configuration display tftp client configuration Any view 1: Monitor level None 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 [ ipv6 ] acl acl-number undo tftp-server [ ipv6 ] acl System view 2-1

25 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 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, see ACL in the ACL and QoS Configuration Guide and Command Reference. # 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 # In IPv6 networking environment, allow the device to access the TFTP server with the IP address of 2001::1 only. <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 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. 2-2

26 sget: Downloads a file in secure mode. 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 have 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. 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 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 Ethernet 1/0. <Sysname> tftp put config.cfg config.bak source interface ethernet 1/0 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

27 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 telnet 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-interface 1. <Sysname> system-view [Sysname] tftp client source interface Vlan-interface 1 tftp ipv6 tftp ipv6 tftp-ipv6-server [ -i interface-type interface-number ] { get put } source-file [ destination-file ] User view 2-4

28 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 IPv6 Basics in the Layer 3 IP Services Configuration Guide). get: Downloads a file. put: Uploads a file. source-filename: Source filename, a string of 1 to 135 characters.. destination-filename: Destination filename, a string of 1 to 135 characters. If not specified, this filename is the same as the source filename. 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 Vlan-interface 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. 2-5

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Maintaining the System Software

Maintaining the System Software CHAPTER 2 This chapter covers the tasks required for maintaining a Content Engine. Upgrading the System Software, page 2-1 Recovering the System Software, page 2-2 Maintaining the Hard Disk Storage, page

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

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

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

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

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

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

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

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

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

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

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 Basic Configuration Commands 1-1

Table of Contents 1 Basic Configuration Commands 1-1 Table of Contents 1 Basic Configuration Commands 1-1 Basic Configuration Commands 1-1 clock datetime 1-1 clock summer-time one-off 1-2 clock summer-time repeating 1-3 clock timezone 1-4 configure-user

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

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

Model 5100 Remote Administration Guide

Model 5100 Remote Administration Guide Model 5100 Remote Administration Guide The information in this document is current as of the following Hardware and Firmware revision levels. Some features may not be supported in earlier revisions. See

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

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

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 Basic Configuration Commands 1-1

Table of Contents 1 Basic Configuration Commands 1-1 Table of Contents 1 Basic Configuration Commands 1-1 Basic Configuration Commands 1-1 clock datetime 1-1 clock summer-time one-off 1-1 clock summer-time repeating 1-2 clock timezone 1-4 command-privilege

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

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

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

Working with the Cisco IOS File System, Configuration Files, and Software Images

Working with the Cisco IOS File System, Configuration Files, and Software Images CHAPTER B Working with the Cisco IOS File System, Configuration Files, and Software Images This appendix describes how to manipulate the Catalyst 3750 Metro switch flash file system, how to copy configuration

More information

CENG 334 Computer Networks. Laboratory I Linux Tutorial

CENG 334 Computer Networks. Laboratory I Linux Tutorial CENG 334 Computer Networks Laboratory I Linux Tutorial Contents 1. Logging In and Starting Session 2. Using Commands 1. Basic Commands 2. Working With Files and Directories 3. Permission Bits 3. Introduction

More information

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING. Subject: NETWORK PROTOCOLS UNIT I (2 MARKS)

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING. Subject: NETWORK PROTOCOLS UNIT I (2 MARKS) DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING Subject: NETWORK PROTOCOLS UNIT I (2 MARKS) Network Architectures: Introduction OSI Model TCP/IP Model ATM Model. Application Layer Protocols : BOOTP DHCP

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

EVBAVR User Guide V-1.4

EVBAVR User Guide V-1.4 V-1.4 WIZnet,Inc Marketing & Sales: sales@wiznet.co.kr Technical Support: support@wiznet.co.kr Document History Information Revision Data Description Ver. 1.3 September 9, 2005 Modified ISP PIN spec. (6X1

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

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

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

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

3Com Switch 4800G Family IRF Configuration Guide

3Com Switch 4800G Family IRF Configuration Guide 3Com Switch 4800G Family IRF Configuration Guide Switch 4800G 24-Port Switch 4800G 48-Port Switch 4800G PWR 24-Port Switch 4800G PWR 48-Port Switch 4800G 24-Port SFP Product Version: Release 2202 Manual

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

Overview of the Cisco NCS Command-Line Interface

Overview of the Cisco NCS Command-Line Interface CHAPTER 1 Overview of the Cisco NCS -Line Interface This chapter provides an overview of how to access the Cisco Prime Network Control System (NCS) command-line interface (CLI), the different command modes,

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

Table of Contents 1 Ethernet Interface Configuration Commands 1-1

Table of Contents 1 Ethernet Interface Configuration Commands 1-1 Table of Contents 1 Ethernet Interface Configuration Commands 1-1 broadcast-suppression 1-1 description 1-2 display brief interface 1-3 display interface 1-4 display loopback-detection 1-8 duplex 1-9 flow-control

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

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

SCS3004 Networking Technologies Application Layer Protocols

SCS3004 Networking Technologies Application Layer Protocols SCS3004 Networking Technologies Application Layer Protocols Dr. Ajantha Atukorale University of Colombo School of Computing (UCSC) 2 TCP/IP Suit Applications and application-layer layer protocols Application:

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

Configuration Examples for Configuration File Management Using SNMP

Configuration Examples for Configuration File Management Using SNMP Configuration Examples for Configuration File Management Using SNMP Keywords: SNMP, NMS, agent, FTP, TFTP, current configuration, configuration file for the next system startup Abstract: Net-SNMP is a

More information