#!/bin/sh ############################################################################## # Copyright (c) 2018 ZTE Corporation and others. # hu.zhijiang@zte.com.cn # All rights reserved. This program and the accompanying materials # are made available under the terms of the Apache License, Version 2.0 # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## #to be trusted by other host and no password needed when use ssh command #check parameters legality logfile=/var/log/trustme.log function print_log { local promt="$1" echo -e "$promt" echo -e "`date -d today +"%Y-%m-%d %H:%M:%S"` $promt" >> $logfile } ip=$1 if [ -z $ip ]; then print_log "Usage: `basename $0` ipaddr passwd" exit 1 fi passwd=$2 if [ -z $passwd ]; then print_log "Usage: `basename $0` ipaddr passwd" exit 1 fi rpm -qi sshpass >/dev/null if [ $? != 0 ]; then print_log "Please install sshpass first" exit 1 fi #ping other host unreachable=`ping $ip -c 1 -W 3 | grep -c "100% packet loss"` if [ $unreachable -eq 1 ]; then print_log "host $ip is unreachable" exit 1 fi #generate ssh pubkey if [ ! -e ~/.ssh/id_dsa.pub ]; then print_log "generating ssh public key ..." ssh-keygen -t dsa -f ~/.ssh/id_dsa -N "" <