SSH Connectivity


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting SSH Connectivity
# 1  
Old 10-21-2014
Quote:
Originally Posted by dr46014
But this is going to C:\Users\testbatch when i trype ssh testwin

I want to use ssh testwinlogin@testwin and it should go to C:\Users\testwinlogin. How to make it this way ?
OK sounds like you want the userID to default to testwinlogin on your windws box to do this add the following entries to .ssh/config under testbatch home directory on the linux box (testlinux):

Code:
host testwin
user testwinlogin

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

SFTP Connectivity

can any one help me in SFTP connectivity? I am supposed to add Keys in my server(service Id). We are using ssh RSA authentication. But I m provided with DSA SSH2 2048 keys. Even after sharing, it didnt work. Please help. (3 Replies)
Discussion started by: dhilipans1988
3 Replies

2. Shell Programming and Scripting

ssh connectivity

Hi i have two servers name as ser1 ser2 with sudo user name "test" I want to ssh to the ser2 without using apassword am login with normal ssh method likes ssh test@ser2 i got the id_rsa.pub from ser1 and pasted int authorized_keys in ser2. and while connecting got one RSA key fingerprint .... (3 Replies)
Discussion started by: ckchelladurai
3 Replies

3. IP Networking

Lack of IP Connectivity

Hi Can any one please help identify the issue in scenario 2: Connectivity Diagram: 1) Distribution Switch----Int_Switch----LabSwitch(Fa1/0)----Terminal Ser 2) Distribution Swtich----Int_Swtich----LabSwitch(Fa2/0)----3640 Router ---all links are access links Distribution Switch... (0 Replies)
Discussion started by: sureshcisco
0 Replies

4. Shell Programming and Scripting

ssh connectivity

Hi, I have two unix servers named as uni115.net uni116.net In both the boxes, I have sudo access to access some file. From uni115.net , I need to login to uni116.net through script And while running my main script , it wont ask the password for login to another machine. How can we do... (1 Reply)
Discussion started by: ckchelladurai
1 Replies

5. UNIX for Advanced & Expert Users

SSH connectivity between two machines with private key

Hi I have two machines Mac1 and Mac2 logging in with same user id and same private key. can anyone let me know how to connect these two machine using ssh . or SCP files to other machine :wall: (1 Reply)
Discussion started by: madankumar
1 Replies

6. UNIX for Advanced & Expert Users

SSH/RCP connectivity error

Hi Team, Hope you will be able to help me out with this problem. Our sun solaris 9 system receives Idoc files from another xxx system through RCP. But before RCP they establish an SSH connection. Since today morning they are not able to establish connection and is getting an error as pasted below... (0 Replies)
Discussion started by: anitha111
0 Replies

7. Shell Programming and Scripting

Verifying SSH connectivity in a script

Hi everyone, I'm trying to write a korne shell script that takes the IP address of a remote server as an argument and logs into that server if RSA key has been setup properly, otherwise exits if RSA key is not set for that server. I don't want the script to get stuck with Password prompt... (1 Reply)
Discussion started by: omd
1 Replies

8. Shell Programming and Scripting

ssh connectivity problem

Hi All, i have problem with ssh i have three server(linux box) like below server A server B server C i did ssh(Private key & Public key) for passwordls .. i did for server A to Server B connection without any issue now i am able to connect server A to server B without... (6 Replies)
Discussion started by: Shahul
6 Replies

9. UNIX for Advanced & Expert Users

SSH Connectivity script

Hi all, I have developed a script to list out the servers that is not able to connect to the remote host. The problem with this script is it, if the remote server ask for a password it gets struck there. It works only if the server name is invalid Ex: Lets say ssh -q test@test "exit" <... (5 Replies)
Discussion started by: lorcan
5 Replies
Login or Register to Ask a Question
SCHEMA-RELOAD.PL(8)					      System Manager's Manual					       SCHEMA-RELOAD.PL(8)

NAME
schema-reload.pl - Directory Server perl script for updating the schema. SYNOPSIS
schema-reload.pl [-Z serverID] [-D rootdn] { -w password | -w - | -j filename } [-P protocol] [-d schemadir] [-v] [-h] DESCRIPTION
Manually reloads the schema files used by the Directory Server instance, either in the default location, or in user-specified locations. OPTIONS
A summary of options is included below: -Z Server Identifier The server ID of the Directory Server instance. If there is only one instance on the system, this option can be skipped. -D Root DN The Directory Manager DN, or root DN. If not specified, the script will search the server instance configuration for the value. -w password The rootdn password. -w - Prompt for the rootdn password. -j password filename The name of the file that contains the root DN password. -d schemadir Gives the full path to the directory where the schema file is located. If this is not specified, the script uses the default schema directory, /etc/dirsrv/schema. -P protocol The connection protocol to connect to the Directory Server. Protocols are STARTTLS, LDAPS, LDAPI, and LDAP. If this option is skipped, the most secure protocol that is available is used. For LDAPI, AUTOBIND is also available for the root user. -v Display verbose ouput -h Display usage EXAMPLE
schema-reload.pl -Z instance3 -D 'cn=directory manager' -w password -P STARTTLS -d /LDAP/schema/ Note: security must be enabled to use protocol STARTTLS. If STARTTLS is not available it will default to next strongest/available protocol automatically. DIAGNOSTICS
Exit status is zero if no errors occur. Errors result in a non-zero exit status and a diagnostic message being written to standard error. AUTHOR
schema-reload.pl was written by the 389 Project. REPORTING BUGS
Report bugs to http://bugzilla.redhat.com. COPYRIGHT
Copyright (C) 2013 Red Hat, Inc. Mar 5, 2013 SCHEMA-RELOAD.PL(8)