Tagged Questions
3
votes
1answer
329 views
Access Apache server running in Fedora guest VirtualBox from host
I have trouble accessing Apache server from host.
I’ve Fedora 15 VM VirtualBox installed on Windows 7. Within this VM I have Apache server running and working fine within the guest.
Not sure what ...
0
votes
0answers
156 views
iptables dont redirect to virtualmachine
I have problem to redirect a port
I have a linux working like gateway this have 2 eth
Gateway:
eth1 <- wan #public ip
eth0 <- lan #192.168.1.1
lo <- loopback
vboxnet 10.10.10.1
VM:
eth0 ...
0
votes
1answer
193 views
How to setup IPtables to allow capture network traffic from a virtualbox VM configured with NAT
I would like to have a VirtualBox virtual machine that can't get online. I want to be able to monitor all network traffic attempts from the Linux host.
So, if the virtual machine attempts to make a ...
4
votes
1answer
3k views
How to use iptables to forward all data from an IP to a Virtual Machine
OK, in an attempt to get some response, a TL;DR version. I know that the following command:
iptables -A PREROUTING -t nat -i eth0 --dport 80 --source 1.1.1.1 -j REDIRECT --to-port 8080
... will ...