vagrant-port
Display Vagrant VM port forwarding mappings
TLDR
Show port mappings
$ vagrant port
Show for specific VM$ vagrant port [name]
Show host port for a specific guest port$ vagrant port --guest [80]
SSH using the forwarded port$ ssh -p $(vagrant port --guest 22) vagrant@localhost
SYNOPSIS
vagrant port [options] [name]
DESCRIPTION
vagrant port displays guest to host port mappings. Shows forwarded ports configured for the VM. Useful for finding the host port to access services in the guest.
PARAMETERS
--guest port
Show only the host port that maps to the specified guest port. Returns an error if the port is not forwarded. Useful for scripting.--machine-readable
Machine-readable output format for automation.
SEE ALSO
vagrant(1), vagrant-status(1), vagrant-ssh(1), vagrant-ssh-config(1)
