AttemptingAttempts to connect from hostA to hostB results in astops here and eventually time out:
meanwhile, fromExamining tcp packets on either end show the perspective of hostBfollowing:
hostB#hostA# tcpdump -i any tcp port 22 and host hostB and 'tcp[tcpflags] & (tcp-syn) != 0' 2208:04:02.280667 ens3 Out IP hostA.50672 > hostB: Flags [S], seq 1743155524, win 62720, options [mss 8960,sackOK,TS val 2010161184 ecr 0,nop,wscale 7], length 0 08:04:02.286807 ens3 In IP hostB > hostA.50672: Flags [S.], seq 2691905561, ack 1743155525, win 62636, options [mss 8960,sackOK,TS val 2267917840 ecr 2010161184,nop,wscale 7], length 0 08:04:03.284668 ens3 Out IP hostA.50672 > hostB: Flags [S], seq 1743155524, win 62720, options [mss 8960,sackOK,TS val 2010162189 ecr 0,nop,wscale 7], length 0 08:04:03.290862 ens3 In IP hostB > hostA.50672: Flags [S.], seq 2691905561, ack 1743155525, win 62636, options [mss 8960,sackOK,TS val 2267918844 ecr 2010161184,nop,wscale 7], length 0 hostB# tcpdump -i any tcp port 22 and host hostA and 'tcp[tcpflags] & (tcp-syn) != 0' 09:1104:02.636059284606 enp0s3 In IP hostA.4846050672 > hostB: Flags [S], seq 30855041743155524, win 62720, options [mss 8960,sackOK,TS val 19716505372010161184 ecr 0,nop,wscale 7], length 0 2209:2204:1102.636114284651 enp0s3 Out IP hostB > hostA.4846050672: Flags [S.], seq 14065269582691905561, ack 30855051743155525, win 62636, options [mss 8960,sackOK,TS val 22294071922267917840 ecr 19716505372010161184,nop,wscale 7], length 0 09:04:03.288627 enp0s3 In IP hostA.50672 > hostB: Flags [S], seq 1743155524, win 62720, options [mss 8960,sackOK,TS val 2010162189 ecr 0,nop,wscale 7], length 0 09:04:03.288668 enp0s3 Out IP hostB > hostA.50672: Flags [S.], seq 2691905561, ack 1743155525, win 62636, options [mss 8960,sackOK,TS val 2267918844 ecr 2010161184,nop,wscale 7], length 0 ThusThe above sequence repeats on both sides about once per second until timeout. My understanding of TCP dumps is limited, hostB receives packets frombut it looks as though hostA's attempt is acknowledged by hostB; hostA and sends back an acknowledgement,receives the ack but nothing else happensthen sends out another identical request.
Also, the authorization log shows no signs of hostA access attempts:
Please noteSo that you know, I can successfully ssh into all VMs from either my personal computer or non-Oracle hosts.
I would much appreciate any pointers.