Sftp: Unterschied zwischen den Versionen

Aus Foxwiki
imported>Abdalltifhannour
Keine Bearbeitungszusammenfassung
imported>Abdalltifhannour
Keine Bearbeitungszusammenfassung
Zeile 23: Zeile 23:




sftp
=Befehle für sftp=
cd path                           Change remote directory to 'path'
 
chgrp grp path                     Change group of file 'path' to 'grp'
{|class="wikitable"
chmod mode path                   Change permissions of file 'path' to 'mode'
|Befehl || Beschreibung
chown own path                     Change owner of file 'path' to 'own'
|-
df [-hi] [path]                    Display statistics for current directory or
|cd path ||Change remote directory to 'path'
|-
|chgrp grp path ||Change group of file 'path' to 'grp'
|-
|chmod mode path ||Change permissions of file 'path' to 'mode'
|-
|chown own path ||                    Change owner of file 'path' to 'own'
|-
|df [-hi] [path]||                   Display statistics for current directory or
                                   filesystem containing 'path'
                                   filesystem containing 'path'
exit                               Quit sftp
|-
get [-afPpRr] remote [local]       Download file
|exit       ||                        Quit sftp
reget [-fPpRr] remote [local]     Resume download file
|-
reput [-fPpRr] [local] remote     Resume upload file
|get [-afPpRr] remote [local]   ||  Download file
help                               Display this help text
|-
lcd path                           Change local directory to 'path'
|reget [-fPpRr] remote [local]   ||  Resume download file
lls [ls-options [path]]           Display local directory listing
|-
lmkdir path                       Create local directory
|reput [-fPpRr] [local] remote   ||  Resume upload file
ln [-s] oldpath newpath           Link remote file (-s for symlink)
|-
lpwd                               Print local working directory
|help                       ||      Display this help text
ls [-1afhlnrSt] [path]             Display remote directory listing
|-
lumask umask                       Set local umask to 'umask'
|lcd path                   ||      Change local directory to 'path'
mkdir path                         Create remote directory
|-
progress                           Toggle display of progress meter
|lls [ls-options [path]]     ||      Display local directory listing
put [-afPpRr] local [remote]       Upload file
|-
pwd                               Display remote working directory
|lmkdir path                   ||    Create local directory
quit                               Quit sftp
|-
rename oldpath newpath             Rename remote file
|ln [-s] oldpath newpath       ||    Link remote file (-s for symlink)
rm path                           Delete remote file
|-
rmdir path                         Remove remote directory
|lpwd                         ||    Print local working directory
symlink oldpath newpath           Symlink remote file
|-
version                           Show SFTP version
|ls [-1afhlnrSt] [path]       ||    Display remote directory listing
!command                           Execute 'command' in local shell
|-
!                                 Escape to loc
|lumask umask                 ||      Set local umask to 'umask'
|-
|mkdir path                   ||      Create remote directory
|-
|progress                     ||      Toggle display of progress meter
|-
|put [-afPpRr] local [remote] ||    Upload file
|-
|pwd                           ||    Display remote working directory
|-
|quit                       ||      Quit sftp
|-
|rename oldpath newpath       ||      Rename remote file
|-
|rm path                       ||    Delete remote file
|-
|rmdir path                     ||  Remove remote directory
|-
|symlink oldpath newpath       ||    Symlink remote file
|-
|version                       ||    Show SFTP version
|-
|!command                     ||      Execute 'command' in local shell
|-
|!                           ||      Escape to loc
|}

Version vom 13. März 2019, 14:22 Uhr

´´sftp´´ SSH File Transfer Protocol Zur Navigation springen Zur Suche springen SFTP im TCP/IP-Protokollstapel: Anwendung SFTP SSH Transport TCP Internet IP (IPv4, IPv6) Netzzugang Ethernet Token Bus Token Ring FDDI …

Das SSH File Transfer Protocol oder Secure File Transfer Protocol (SFTP) ist eine für die Secure Shell (SSH) entworfene Alternative zum File Transfer Protocol (FTP), die Verschlüsselung ermöglicht.

Im Unterschied zum FTP über TLS (FTPS) begnügt sich SFTP mit einer einzigen Verbindung zwischen Client und Server.

Obwohl das Protokoll SFTP im Kontext des SSH-2-Protokolls beschrieben wird, könnte es auch mit anderen Verfahren zur Authentifizierung und Verschlüsselung umgesetzt werden.[1] sftp root@192.168.1.119

passwort : yesLink-Text

sftp >> cd...cd


Befehle für sftp

Befehl Beschreibung
cd path Change remote directory to 'path'
chgrp grp path Change group of file 'path' to 'grp'
chmod mode path Change permissions of file 'path' to 'mode'
chown own path Change owner of file 'path' to 'own'
df [-hi] [path] Display statistics for current directory or
                                  filesystem containing 'path'
exit Quit sftp
get [-afPpRr] remote [local] Download file
reget [-fPpRr] remote [local] Resume download file
reput [-fPpRr] [local] remote Resume upload file
help Display this help text
lcd path Change local directory to 'path'
lls [ls-options [path]] Display local directory listing
lmkdir path Create local directory
ln [-s] oldpath newpath Link remote file (-s for symlink)
lpwd Print local working directory
ls [-1afhlnrSt] [path] Display remote directory listing
lumask umask Set local umask to 'umask'
mkdir path Create remote directory
progress Toggle display of progress meter
put [-afPpRr] local [remote] Upload file
pwd Display remote working directory
quit Quit sftp
rename oldpath newpath Rename remote file
rm path Delete remote file
rmdir path Remove remote directory
symlink oldpath newpath Symlink remote file
version Show SFTP version
!command Execute 'command' in local shell
! Escape to loc