Address Bar
The address bar grammar is as follows:
[protocol://][user[:password]@]hostname[:port][/]
The available protocols are ssh, sftp, telnet, rlogin, and serial. The default protocol is a protocol selected in the default session. Default port numbers by protocol are defined as follows:
- ssh: 22
- sftp: 22
- telnet: 23
- rlogin: 513
- ftp: 21
A number of examples are given below.
Example | Description |
---|---|
foobar.com | Connect to foobar.com using the protocol and port number designated in the default session. |
ssh://kay:passwd@foobar.com/ | Connect to foobar.com using the SSH protocol. User account is 'kay' and password is 'passwd'. The default port number is used. |
ssh://kay@foobar.com:12345/ | Connect to foobar.com port 12345 using the SSH protocol. User account is kay. |
telnet://foobar.com/ | Connect to foobar.com via telnet protocol. User account is not designated and connection is made with port 23, the default port. |
rlogin://kay@foobar.com/ | Connect to foobar.com using the rlogin protocol. The user account is 'kay' and connection is made with port |
sftp://kay@foobar.com/ | Connect to foobar.com using the SFTP protocol. User account is 'kay' and the default port number is used. |
ftp://foobar.com/test.zip | Connect to foobar.com using the ftp protocol and download test.zip file. |