#!/bin/bash echo "" if [ "$1" == "0" ]; then echo "OLD ROTA 교통정보 연계서버(rota-utic-server/rota-utic-client) ==> vip" echo "asnuser, *88ubutiits" ssh -p 50022 utic@192.168.10.20 elif [ "$1" == "1" ]; then echo "ROTA 교통정보 연계서버 #1(rota-utic-server/rota-utic-client)" echo "utic, *20ut25ic, su/*88ubutiits" ssh -p 50022 utic@192.168.10.91 elif [ "$1" == "2" ]; then echo "ROTA 교통정보 연계서버 #1(rota-utic-server/rota-utic-client)" echo "utic, *20ut25ic, su/*88ubutiits2" ssh -p 50022 utic@192.168.10.92 else echo "사용법: $0 [0|1|2]" exit 1 fi