SSH connection without password between two Azure VMs
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
Clash Royale CLAN TAG #URR8PPP up vote 0 down vote favorite SSH connection without password between two Azure VMs I have two RHEL7 VMs running in the same resource group with the same subscription ID. I have assigned DNS names to them; master.eastus.cloudapp.azure.com and node.eastus.cloudapp.azure.com The ips are dynamically assigned by Azure These VMs are setup for a manual installation of OpenShift which requires two VMs and will need to communicate with ssh, no password Both VMs are on the same subnet: subnet Virtual network/subnet: openshift-vm-vnet/default I have set up two Network Interface Inbound rules for each vm-vnet/default Master :: internal ip 10.0.0.3 name port protocol Source Destination Action default -allow-ssh 22 TCP <Corp ip> Any Allow node_vm 22 TCP 10.0.0.0/29 Any Allow Node :: internal ip 10.0.0.4 name port protocol Source Destination Action default -allow-ssh 22 TCP <Corp ip> Any Allow master_vm 22 TCP 10.0.0.0/29 Any Allow I am able ...