linux ftp serverLinux serverNETWORK ADMINISTRATIONS

Part 11 | Linux Networking | Rsync| SCP| FTP | Linux for Beginners | LFCS | RHCSA

Agenda:
– Basic Networking Concepts
– Some network related Important files
– Some basic networking Commands and tools
– FTP (File Transfer Protocol)
– SCP (Secure Copy)
– Rsync (Remote Synchronisation)

Ping: https://www.youtube.com/watch?v=IIicPE38O-s

Commands:
– rsync -azvh filename user@ip-address:/path
– scp filename user@ip-address:/path
– scp -r foldername user@ip-address:/path

when we execute tcpdump command it will captures from all the interfaces, however with -i switch only capture from desire interface.
##################tcpdump -i eth0########################

When you run tcpdump command it will capture all the packets for specified interface, until you Hit cancel button. But using -c option, you can capture specified number of packets. The below example will only capture 6 packets.

################### tcpdump -c 5 -i eth0##################
We can display Available Interfaces
To list number of available interfaces on the system, run the following command with -D option.

##################tcpdump -D########################

source

by Technical tips with Hasan

linux ftp command