Recent content by ninjaprox

  1. N

    [SOLVED] Proxmox SSH Port Forward - Connection Refused

    At the end it was something with the reload of the network, after adding the firewall rules to the Node and the /etc/network/interfaces make sure to go to the network and "Apply Configuration" afterwards it was working fine.
  2. N

    [SOLVED] Proxmox SSH Port Forward - Connection Refused

    The ip_forward file is set to 1 The output of the packets sent to the internal ip is this ( If i access the VM from remote with ssh user@external-ip there is no traffic arriving at Port 20 on the internal VM...but if i SSH it from another VM inside the subnet the traffic is shown) Maybe the...
  3. N

    [SOLVED] Proxmox SSH Port Forward - Connection Refused

    1. So iptables-save gives the following -A PREROUTING -i <external_ip> -p tcp -m tcp --dport 3033 -j DNAT --to-destination <internal_ip>:22 -A INPUT -p tcp -m tcp --dport 3033 -j ACCEPT 2. Running tcpdump -eni vmbr0 port 3033 and trying ssh/telnet i recive the following listening on vmbr0...
  4. N

    [SOLVED] Proxmox SSH Port Forward - Connection Refused

    Hello, I have a hosted proxmox server with one public ip where i have configured a NAT rules to allow internet access to the VMs that have a separated vmbr1 bridge network, and that is working fine. The next step that wanted to configre was to be able to SSH to a specific VM, for this reason...