0

I have enabled SSL in Nexus 3.0 as described here on a machine with RHEL6.

Before enabling SSL, I could access the Nexus from a browser using the IP-address of the RHEL6 machine from my Windows machine. However, after enabling SSL I cannot do that. I can however, access the Nexus from a browser using the same IP-address on the RHEL6 machine, so the https seems to have been enabled correctly.

Are there any other settings I need to do on RHEL to be able to make it accessible to other machines on https? Bot the machines are on the same network.

rgamber
  • 5,749
  • 10
  • 55
  • 99
  • Does it still work via http? – Manfred Moser Jun 14 '16 at 17:00
  • Check connectivity on the same host using curl... "curl -v --insecure https://localhost:8443", or whatever your SSL port is. If that works, check your RHEL firewall settings, the port may be blocked. – rseddon Jun 14 '16 at 18:51
  • Figured out what was the problem. Had to open the ports I was using in iptables. I'll add that as an answer. Thanks for your help! – rgamber Jun 14 '16 at 18:53

1 Answers1

0

Found the issue. The ports I was using needed to be opened in the iptables using:

sudo iptables -I INPUT -i eth0 -p tcp --dport <portnumber> -j ACCEPT

rgamber
  • 5,749
  • 10
  • 55
  • 99