LoginSignup
22
12

More than 5 years have passed since last update.

Vagrantのデフォルトのsshフォワーディングポートを変える

Last updated at Posted at 2015-07-18

Vagrantは、デフォルトの2222番ポートが使われていると、別ポートでフォワーディング設定してくれるが、いろいろ困ることがあるので固定化したい。

Vagrantfileの forwarded_port の設定に、id: "ssh"を付けて書けばよい。

Vagrantfile
Vagrant.configure(2) do |config|
  # --- (snip) ---

  config.vm.network "forwarded_port", guest: 22, host: 12222, id: "ssh"

  # --- (snip) ---
end
22
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
22
12