Re: [vagrant-up] Need to see real source IPs from behind port forwarding, can I disable SNAT?

2015-12-01 Thread Michael Taylor
Got it. I added the customize line to the vagrantfile: config.vm.provider "virtualbox" do |v| v.memory = 4096 v.customize ["modifyvm", :id, "--nataliasmode1", "proxyonly"] end Pay attention to the number one at the end of "--nataliasmode", that's not the letter L and it refers to the

Re: [vagrant-up] Need to see real source IPs from behind port forwarding, can I disable SNAT?

2015-11-30 Thread Michael Taylor
Yes, but I was hoping for a way to do it within the vagrantfile. On Saturday, November 28, 2015 at 1:00:18 AM UTC-5, Alvaro Miranda Aguilera wrote: > > Hello, > > If you comment those out, and then use the gui I think the result will be > the same. > > I think if you can came up with the

Re: [vagrant-up] Need to see real source IPs from behind port forwarding, can I disable SNAT?

2015-11-30 Thread Alvaro Miranda Aguilera
Once you get the commands that work, you should be able to put them in the vagrant file. Alvaro On Tue, Dec 1, 2015 at 10:37 AM, Michael Taylor wrote: > Yes, but I was hoping for a way to do it within the vagrantfile. > > On Saturday, November 28, 2015 at 1:00:18 AM

[vagrant-up] Need to see real source IPs from behind port forwarding, can I disable SNAT?

2015-11-27 Thread Michael Taylor
I'm trying to use graylog with Vagrant in a port forwarded Virtualbox appliance and I'm noticing that every message has 10.0.2.2 as its source IP. Vagrantfile: Vagrant.configure(2) do |config| config.vm.box = "ubuntu/trusty64" config.vm.hostname = "graylog" config.vm.network

Re: [vagrant-up] Need to see real source IPs from behind port forwarding, can I disable SNAT?

2015-11-27 Thread Alvaro Miranda Aguilera
Hello, If you comment those out, and then use the gui I think the result will be the same. I think if you can came up with the VBoxManage that can do what you are afterm then you may use a virtualbox block to run that, and not use the out of the box forward port. make sense? Thanks Alvaro