I have a KVM server (host) with multiple virtual machines (guests).
My goal is my host forward port 23 to port 22 of a guest running an ssh service.
Command example...
ssh root@[HOST_IP] -p 23
NOTE I: That was the command I used on the host to make the port forward...
firewall-cmd --permanent --add-forward-port=port=23:proto=tcp:toaddr=[GUEST_IP]:toport=22
firewall-cmd --reload
NOTE II: I know that ssh itself provides the means to make this possible, but I really want this process to be "transparent" for the user to access the guest directly.
NOTE III: I will need to do a similar process for other ports (eg 389) so that I look for a process that works in other similar cases.
Thanks! =D
UPDATE I:
Currently the...
ssh root@[HOST_IP] -p 23
... command returns me the following error...
ssh: connect to host 172.16.13.8 port 23: Connection refused
UPDATE II: