I had installed Proxmox, which seems to be working fine Even internet is working in all VM, but i cant connect from my PC using RDP as ports are not opening.
I already allowed Inbound/Outbound connections on all ports in Windows VM firewall
A quick next step would be going into the shell and using tcpdump to see if the traffic is making it into the Proxmox Node.
Code:
tcpdump -n -i vmbr1 host 192.168.10.100
If the connection between your computer and the Proxmox Node is working correctly, you should see packets listed in the tcpdump output. These packets will have your computer's IP address as the source and 192.168.10.100 (the Proxmox Node) as the destination for outgoing traffic. You should also see packets in the other direction, with the Proxmox Node as the source and your computer as the destination for incoming responses.
I'm not sure what you were doing with Powershell to find a port number on an interface.
Since you're not seeing your computer's IP address on the bridge interface, it's pretty clear that your machine isn't even reaching the interface. You could try going further down below the bridge and use the actual physical interface for the tcpdump. You might have to use ifup to bring that interface online if tcpdump complains that the device isn't configured.
To check the iptables rules you can run
Code:
iptables -L -n
You could also disable the firewall and re-check connectivity.
That shows that nothing is being blocked by the firewall. I noticed you were using nat options. Obviously this will kill those nat rules, but when you try to connect the tcpdump should show the packets arriving at the interface.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.