You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
467 B
14 lines
467 B
clear
|
|
echo "Applying SSH Configuration to allow only keys"
|
|
network=$(ifconfig | grep inet | sed -n 1p | awk "{print \$2}" | cut -f 1-3 -d "." | sed 's/$/.*/')
|
|
worker1IP=$(nmap -sP $network | grep worker_1 | awk '{print $NF}' | tr -d '()')
|
|
ssh-keygen -t rsa
|
|
#(path kai kwdiko enter+enter)
|
|
ssh-copy-id docker@$worker1IP
|
|
ssh docker@$worker1IP
|
|
bash
|
|
sudo cp /project/sshdconfrsa /etc/ssh/sshd_config
|
|
sudo service ssh restart
|
|
exit
|
|
exit
|
|
echo "Configuration Finished!"
|