can you decipher this script ?

 
Thread Tools Search this Thread
Operating Systems Linux SuSE can you decipher this script ?
# 1  
Old 10-28-2011
can you decipher this script ?

Code:
ssh-add -t 30 >/dev/null 2>&1
LOGNAME=`whoami`
cp $HOME/.ssh/known_hosts $HOME/.ssh/known_hosts.org
grep -v localhost $HOME/.ssh/known_hosts.org > $HOME/.ssh/known_hosts

ssh -1 -f -l $LOGNAME -o "ForwardX11 yes" -o "StrictHostKeyChecking no" -L 6003:195.244.210.107:2222 ext-proxy-2 sleep 5 >/dev/null 2>&1
xterm -title GIBFDX -e ssh -1 -q -o "StrictHostKeyChecking no" -l fujitsu -p 6003 -L 8080:accessmngr.gibtelecom.lan:8080 localhost &

can anyone decipher the above script word for word if possible I know what certain bits do but it would be great if an expert could explain, sorry im new to scripting and will also check the newbie threads.

thanks in advance

Last edited by methyl; 12-09-2011 at 08:19 PM.. Reason: Please use code tags. Tried laying out the code to remove obvious syntax errors due to extra or missing line breaks.
# 2  
Old 12-09-2011
Please mention what version of SuSE you have.
Please edit post #1 if I have guessed the line breaks incorrectly. The line containing "sleep 5" still looks unlikely unless it is just testing the ssh connection.

Sorry but I cannot help with the actual query but I'm trying to get the post clearer for other posters.
This User Gave Thanks to methyl For This Post:
# 3  
Old 12-09-2011
10.0 (i586)
# 4  
Old 12-09-2011
It's just a script to add a new 'user account' to an ssh infrastructure, and seems to rely on using the known_hosts config files (there's one on each side) as the 'authentication'.

Just lookup each command and it's options with 'man',
and read up on how ssh works. Easy stuff Smilie

The 'remote' 'sleep 5' command allows you to run/request a 'reverse' connection,
a.k.a. 'bounce' off the remote server.
Similar to what you would do with a reverse VNC connection, but the 'listening' side only runs for 5 seconds..

Last edited by unisoftdesign; 12-09-2011 at 09:21 PM..
These 2 Users Gave Thanks to unisoftdesign For This Post:
# 5  
Old 12-09-2011
@unisoftdesign
I know nothing about SuSE Linux. This could change overnight if I get interested.

What is the reason for the script lines which remove "localhost" from the file pointed to by $HOME/.ssh/known_hosts.org ? Where does this file come from?

Does SuSE Linux bash Shell not set $LOGNAME ? It's a standard Environment Variable in unix.

@llcooljatt
Please post the bits you understand. Saves time for the other posters.
This User Gave Thanks to methyl For This Post:
# 6  
Old 12-09-2011
Quote:
Originally Posted by methyl
@unisoftdesign
I know nothing about SuSE Linux. This could change overnight if I get interested.
Same here, I just focus on the (generic) SSH and grep syntax. Who knows what flavour of SSH the OP is on?

Quote:
Originally Posted by methyl
What is the reason for the script lines which remove "localhost" from the file pointed to by $HOME/.ssh/known_hosts.org ? Where does this file come from?
No line is being removed. A line is grepped out and copied onto the other system. The known_hosts files are part of an existing SSH infrastructure.

Quote:
Originally Posted by methyl
Does SuSE Linux bash Shell not set $LOGNAME ? It's a standard Environment Variable in unix.
Good point, maybe his version of Suse is weird/proprietary/commercialised, or a predecessor has been cutting and pasting too much? Document and annotate, people!
This User Gave Thanks to unisoftdesign For This Post:
# 7  
Old 12-09-2011
the first bit having read it is trying to add known_hosts to known_hosts.org i presume then looks for a comparison and looks for non-matching lines but what does it do with them?

I think im getting confused how it all ties in.

I understand most of the options listed apart from -q ?

also what is
"StrictHostKeyChecking no"
"ForwardX11 yes"

also the line:
-l fujitsu -p 6003 -L 8080:accessmngr.gibtelecom.lan:8080 localhost &

the -p 6003 is the local linux port? mapping to blind host address/port ?

and $HOME is the users home directory?

Last edited by llcooljatt; 12-09-2011 at 10:31 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script will keep checking running status of another script and also restart called script at night

I am using blow script :-- #!/bin/bash FIND=$(ps -elf | grep "snmp_trap.sh" | grep -v grep) #check snmp_trap.sh is running or not if then # echo "process found" exit 0; else echo "process not found" exec /home/Ketan_r /snmp_trap.sh 2>&1 & disown -h ... (1 Reply)
Discussion started by: ketanraut
1 Replies

2. Shell Programming and Scripting

decipher shell commands

Hi Guys, I am busy trying to re-write a shell script that was written way back. I need help with these codes: # Process switches if ; then echo "usage : process <optional instance>" exit 99 fi What does the above code mean? What does these $? -gt 1 mean? Then I have... (3 Replies)
Discussion started by: Phuti
3 Replies

3. Shell Programming and Scripting

Can you decipher this script ?

ssh-add -t 30 >/dev/null 2>&1 LOGNAME=`whoami` cp $HOME/.ssh/known_hosts $HOME/.ssh/known_hosts.org grep -v localhost $HOME/.ssh/known_hosts.org > $HOME/.ssh/known_hosts ssh -1 -f -l $LOGNAME -o "ForwardX11 yes" -o "StrictHostKeyChecking no" -L 6003:1.1.1.1:2222 ext-proxy-2 sleep 5... (1 Reply)
Discussion started by: llcooljatt
1 Replies

4. UNIX for Advanced & Expert Users

ssh decipher a tunnel

Two question here, but it's only one on the protocol point of view. If two persons use the same key to connect to a SSH server is there a risk they can decipher the other tunnel. In other terms is that less safe than if they have two separate keys. Same question if two persons use the same user... (2 Replies)
Discussion started by: moi
2 Replies

5. Shell Programming and Scripting

Sed - Unable to decipher this.

Guys, I am going through an existing code in production and found the following lines. I have used "sed" before but am unable to decipher the following statement. :( echo ${F_NAME} | sed 's/\(.*\)............/\1/' Any help is greatly appreciated. Cheers, Sid (6 Replies)
Discussion started by: sid1982
6 Replies

6. Shell Programming and Scripting

Decipher Script

Hi Guys, I am running solaris and I need help in deciphering the following commands: dir_t1=`echo $0|nawk -F'/' '{print NF}'` dir_t2=`expr $dir_t1- 1` dir_t3=`echo $0|cut -d'/' -f1-$dir_t2` export dir_t2 What will be the value for dir_t3? Please help !!!!!!!!!!!!!!! (5 Replies)
Discussion started by: Phuti
5 Replies

7. HP-UX

help me decipher how much memory on my box

hi, if I do top, I get Memory: 19277012K (5868296K) real, 33860312K (11294208K) virtual, 795392K free If I do swapinfo -tm I get: % swapinfo -tm Mb Mb Mb PCT TYPE AVAIL USED FREE USED dev 16384 0 16383 0% dev ... (3 Replies)
Discussion started by: JamesByars
3 Replies

8. Cybersecurity

How to decipher tcpdump file

Hi, I am stuck with a tricky situation in which one of my applications is flooding the network with UDP messages. The architecture of the application is not supposed to do so. Neither is there any place where the application will go into an infinite loop sending UDP messages over the network. To... (3 Replies)
Discussion started by: diganta
3 Replies

9. UNIX for Dummies Questions & Answers

Please help me decipher this header - I'm desperate!

I've got a really weird situation here.... the same IP address keeps popping up in porn spam that I have rec'd in 2 different email accts. It looks to me like it's coming from UC Davis, and I suspect someone there, so I am hoping you all can verify the same thing before I call the person on this... (0 Replies)
Discussion started by: christinef
0 Replies

10. Solaris

decipher pstack with problem lwp

My company has a product that is running on JBoss on Solaris against Oracle 8.1.7. We are having an issue with the server process and high CPU utilization. During this time, and only during this time, we are experiencing database locks that will not let go. A 'ps -L' on the server process... (5 Replies)
Discussion started by: hosierdm
5 Replies
Login or Register to Ask a Question