Learning on how to use the (SSH) in any enviornment [HELP!!]


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Learning on how to use the (SSH) in any enviornment [HELP!!]
# 8  
Old 07-29-2013
10.25.12.255 is the broadcast address of the network your MBP is on (assuming that's where you ran the ifconfig command from). What is the IP address of the HP server you want to connect to?

Can you ping it?
# 9  
Old 07-29-2013
screenshot

Here is a screenshot of the target computer I'm trying to login to from my computer that might help. At the moment i'm having a hard time understanding what IP I'm suppose to use with ssh.

Also on my computer I type...

ssh name@IP

However, what goes in for name "Alien" or "root".
Learning on how to use the (SSH) in any enviornment [HELP!!]-photo-7-29-13-908-amjpg
# 10  
Old 07-29-2013
does this help? i'm confused on what ip address and name I should type into the ssh command
# 11  
Old 07-29-2013
OK, so the IP address (internet - or inet - address) of the remote machine is 10.25.12.204.

Can you ping that IP address from your Mac?

If not, when you ssh root@10.25.12.204 does it refuse, or ask you a question, or ask you for a password?

How is your Mac connected to the network at your school?

Show the output of ifconfig -a from the terminal.
# 12  
Old 07-29-2013
Error

I've entered Alien@127.0.0.1 and I get the following

Code:
The authenticity of host '127.0.0.1 (127.0.0.1)' can't be established.
ECDSA key fingerprint is 35:3e...................
Are you sure you to continue connecting (yes/no)?

Then I hit enter and it says

Code:
Host key verification failed.

# 13  
Old 07-29-2013
screenshot

Entering what you just told me I get nothing
Learning on how to use the (SSH) in any enviornment [HELP!!]-screen-shot-2013-07-29-94021-ampng
# 14  
Old 07-29-2013
Forget "Alien" for now. And 127.0.0.1 is the loopback device, and has nothing to do with anything here.

Focus!

Open a Teminal.app on your Mac and show the output of ifconfig -a, as well as trying the ping and ssh commands and questions from my previous post.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. AIX

Learning AIX?

I have a new job where they will expect me to start (as a beginner) to administer using AIX, this will be for a credit card payment company. I understand that there are many flavours of Unix of which AIX is just one. Should I concentrate on just trying to learn AIX or is there some other... (9 Replies)
Discussion started by: henfold
9 Replies

2. Web Development

Learning HTML

I have tried to create a web page browser window. An example, I copied what the book pretty much wanted but get only the header. What should I change? Also Anyone know any good books for this? Many thanks. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Translation/EN" ... (4 Replies)
Discussion started by: N-Training
4 Replies

3. UNIX for Dummies Questions & Answers

Learning VI editor

Hi, Can you give me some good document or link to learn more about "vi" editor. I'm interested to master its short-cut keys and tricks in the VI editor, please help, thank you. (1 Reply)
Discussion started by: Dev_Dev
1 Replies

4. Shell Programming and Scripting

Learning Perl

Folks! Anyone please explain the behavior of this program step by step. Thanks. #! /usr/bin/perl $testfile = "./testfile2"; for ( $i = 1, $i <= 5, $i++) { open ($FILE, ">", $testfile); print ($FILE "Output 1 \n"); close ($FILE); } print "The value of (4 * 2) / 2 is "; print (4 * 2)... (1 Reply)
Discussion started by: huko99
1 Replies

5. Solaris

Learning Solaris

Is possible to learn Solaris 10 from guides for Solaris 9 (3 Replies)
Discussion started by: microbot
3 Replies

6. Programming

learning fortran

Can anyone recommend a very good Fortran online course for unix. It should also cover Fortran X11 programming if possible. I understand this learning cannot be rushed but a course that addresses useful topics sooner is best. If it isn't free, that's okay. (1 Reply)
Discussion started by: gav2251
1 Replies

7. UNIX for Dummies Questions & Answers

learning about pipes!

im trying to figure out how to do the following: using pipes to combine grep and find commands to print all lines in files that start with the letter f in the current directory that contain the word "test" for example? again using pipes to combine grep and find command, how can I print all... (1 Reply)
Discussion started by: ez45
1 Replies

8. Shell Programming and Scripting

Enviornment Variable in B shell (I call it nested variable)

#!/bin/sh APP_ROOT_MODE1=/opt/app1.0 APP_ROOT_MODE2=/opt/app2.0 APP_ROOT=${APP_ROOT_${APP_MODE}} # enviornment variable APP_MODE will be exported in the terminal where # we run the applciation, its value is string - MODE1 or MODE2 # My intension is: # when export APP_MODE=MODE1... (4 Replies)
Discussion started by: princelinux
4 Replies

9. UNIX for Dummies Questions & Answers

learning on my own

can i do this? i am learning this on my own..and from the book..simple unix i am not sure if the syntax would work if statement then statement do or for or while statement done else statement fi.... I dont know how else to explain that...I hope I... (2 Replies)
Discussion started by: jonas27
2 Replies
Login or Register to Ask a Question