Glam Prestige Journal

Bright entertainment trends with youth appeal.

In cmd prompt i tried ftp ftp.(Computer Name)that is local area network but it shows unknown host name error.

2

2 Answers

This is a DNS lookup issue - you shouldn't prefix with "ftp."

Just run "ftp computername".

You can also test this by trying to ping the machine in question: "ping ftp.computername" will fail to resolve (with a slightly more meaningful message than the FTP client gives), whereas "ping computername" will respond to ping (unless security software is preventing this).

3

You have two ways: the interactive way and the other alternative. For the first, the command syntax is as the following. First launch the dos prompt. At the MSDOS prompt write:

ftp

you get the ftp prompt

ftp>

now write the command to open the connection:

open website.subdomain.ext

Notice: don't use the protocol nor the ftp. string: the command needs just website.subdomain.ext

Now you will be prompted to type the user

and then the password.

If all is wrote right you will be able to type ftp commands like ls or send ecc...

Alternatively you can write directly at the DOS prompt

ftp website.subdomain.ext

you will be prompted into ftp command prompt for username then for the password

for further help write

help ftp

at the ms dos prompt

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy