FTP push

Hi I am trying to send a file form one linux server into an another linux server.
I cannot do ftp get. Can anyone please assist me how can I push the file to the other server ?

Thanks.

put is the reverse of get. Just do:
put filename

for higher security maybe try:

scp <filename> username@host:<destination path>

you may need to perform key generation and placement as well.
See: man ssh, man scp, man ssh-keygen