Hi Alvaro 10x for your replay i tried to enter this in the etc/host/ 192.168.100.11 server2 Do i need some restart?
still it ask me for pw: $ vagrant ssh server1 Welcome to Ubuntu 12.04 LTS (GNU/Linux 3.2.0-23-generic x86_64) * Documentation: https://help.ubuntu.com/ Welcome to your Vagrant-built virtual machine. Last login: Sun Oct 29 21:07:27 2017 from 10.0.2.2 vagrant@server1:~$ ssh server2 vagrant@server2's password: On Monday, October 30, 2017 at 10:25:58 AM UTC+2, Alvaro Miranda Aguilera wrote: > > Hello > > the easiest way is to add a entry into /etc/hosts with other server ip name > > you can use the same shell script for this. > > > <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail> > Virusvrij. > www.avast.com > <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail> > > <#CAHqq0ewyrBe5AF_-+-fLkdeq+osHiYzrHshgR0J7GwczWhzLKA@mail.gmail.com_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2> > > On Sun, Oct 29, 2017 at 6:57 PM, LIRAN Y <[email protected] <javascript:>> > wrote: > >> I would like to ssh between the servers using their names rather than >> their ips. >> >> for example >> >> in order to test this, run i need to vagrant ssh server1 and from their >> i should be able to run ssh server2 to the second server. >> >> >> i have the vagrantfile configure that way: >> servers=[ >> >> >> >> { >> >> :hostname => "server1", >> >> :ip => "192.168.100.10", >> >> :box => "hashicorp/precise64", >> >> :ram => 512, >> >> :cpu => 1, >> >> >> >> >> }, >> >> { >> >> :hostname => "server2", >> >> :ip => "192.168.100.11", >> >> :box => "hashicorp/precise64", >> >> :ram => 512, >> >> :cpu => 1, >> >> } >> >> >> ] >> >> >> >> >> Vagrant.configure(2) do |config| >> >> servers.each do |machine| >> >> config.vm.define machine[:hostname] do |node| >> >> machine [:provisions].each do |script| >> >> node.vm.provision :shell, :path => script >> >> end >> >> node.vm.box = machine[:box] >> >> node.vm.hostname = machine[:hostname] >> >> node.vm.network "private_network", ip: machine[:ip] >> >> node.vm.provider "virtualbox" do |vb| >> >> vb.memory = machine[:ram] >> >> vb.cpus = machine[:cpu] >> >> end >> >> end >> >> end >> >> end >> >> >> i tried to enter the server 1 by vagrant ssh server1 >> >> and there i did ssh server2 but it ask me for a password? >> >> how can i enter without password? >> >> >> 10x >> >> -- >> This mailing list is governed under the HashiCorp Community Guidelines - >> https://www.hashicorp.com/community-guidelines.html. Behavior in >> violation of those guidelines may result in your removal from this mailing >> list. >> >> GitHub Issues: https://github.com/mitchellh/vagrant/issues >> IRC: #vagrant on Freenode >> --- >> You received this message because you are subscribed to the Google Groups >> "Vagrant" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected] <javascript:>. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/vagrant-up/c7500ffd-e168-4987-b1f1-16aca8219ded%40googlegroups.com >> >> <https://groups.google.com/d/msgid/vagrant-up/c7500ffd-e168-4987-b1f1-16aca8219ded%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> For more options, visit https://groups.google.com/d/optout. >> > > > > -- > Alvaro > > -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/a8a85dc1-0b98-4f12-b5a6-aac402a3733b%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
