Skip to main content
edited tags; edited title
Link
Jeff Schaller
  • 68.8k
  • 35
  • 122
  • 264

Access VirtualBox Debian Apache Guest on Windows Host

Tweeted twitter.com/#!/StackUnix/status/374143424221683713
added 1469 characters in body
Source Link
geo derek
  • 183
  • 1
  • 6

Thinking that the ifconfig results my help, I will include those also here:

eth0      Link encap:Ethernet  HWaddr 08:00:27:7a:1a:35  
      inet addr:192.168.1.106  Bcast:192.168.1.255  Mask:255.255.255.0
      inet6 addr: fe80::a00:27ff:fe7a:1a35/64 Scope:Link
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:252 errors:0 dropped:0 overruns:0 frame:0
      TX packets:19 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:25417 (24.8 KiB)  TX bytes:1765 (1.7 KiB)

eth1      Link encap:Ethernet  HWaddr 08:00:27:56:3d:90  
      inet addr:192.168.1.110  Bcast:192.168.1.255  Mask:255.255.255.0
      inet6 addr: fe80::a00:27ff:fe56:3d90/64 Scope:Link
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:231 errors:0 dropped:0 overruns:0 frame:0
      TX packets:7 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:21945 (21.4 KiB)  TX bytes:578 (578.0 B)

lo        Link encap:Local Loopback  
      inet addr:127.0.0.1  Mask:255.0.0.0
      inet6 addr: ::1/128 Scope:Host
      UP LOOPBACK RUNNING  MTU:16436  Metric:1
      RX packets:0 errors:0 dropped:0 overruns:0 frame:0
      TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:0 
      RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

Thinking that the ifconfig results my help, I will include those also here:

eth0      Link encap:Ethernet  HWaddr 08:00:27:7a:1a:35  
      inet addr:192.168.1.106  Bcast:192.168.1.255  Mask:255.255.255.0
      inet6 addr: fe80::a00:27ff:fe7a:1a35/64 Scope:Link
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:252 errors:0 dropped:0 overruns:0 frame:0
      TX packets:19 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:25417 (24.8 KiB)  TX bytes:1765 (1.7 KiB)

eth1      Link encap:Ethernet  HWaddr 08:00:27:56:3d:90  
      inet addr:192.168.1.110  Bcast:192.168.1.255  Mask:255.255.255.0
      inet6 addr: fe80::a00:27ff:fe56:3d90/64 Scope:Link
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:231 errors:0 dropped:0 overruns:0 frame:0
      TX packets:7 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:21945 (21.4 KiB)  TX bytes:578 (578.0 B)

lo        Link encap:Local Loopback  
      inet addr:127.0.0.1  Mask:255.0.0.0
      inet6 addr: ::1/128 Scope:Host
      UP LOOPBACK RUNNING  MTU:16436  Metric:1
      RX packets:0 errors:0 dropped:0 overruns:0 frame:0
      TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:0 
      RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
deleted 7 characters in body
Source Link
Joseph R.
  • 40.5k
  • 8
  • 113
  • 146

I am running Oracle VirtualBox with a Debian as guest OS on a WinWindows 7 host. I have installed apacheApache and specified the following two network adapters in VM:

  1. Bridge

    Bridge
  2. Host-only w/ the same IP set as below. My interfaces network settings on the Debian VM are:

    auto lo iface lo inet loopback

    allow-hotplug eth0 iface eth0 inet dhcp auto eth1 iface eth1 inet static address 192.168.1.110 netmask 255.255.255.0

    Host-only w/ the same IP set as below.

My interfaces network settings on the Debian VM are:

auto lo
iface lo inet loopback

allow-hotplug eth0
iface eth0 inet dhcp
auto eth1 
    iface eth1 inet static
    address 192.168.1.110
    netmask 255.255.255.0

which all seems to work well enough via pingping test between guest and host. However, when I try to browse to my guest instance in a web browser http:// 192.168.1.110 Ihttp://192.168.1.110 I keep getting a 404 message. AnyAny help would be appreciated. Thanks, Derek

I am running Oracle VirtualBox with a Debian guest OS on a Win 7 host. I have installed apache and specified the following two network adapters in VM:

  1. Bridge

  2. Host-only w/ the same IP set as below. My interfaces network settings on the Debian VM are:

    auto lo iface lo inet loopback

    allow-hotplug eth0 iface eth0 inet dhcp auto eth1 iface eth1 inet static address 192.168.1.110 netmask 255.255.255.0

which all seems to work well enough via ping test between guest and host. However, when I try to browse to my guest instance in a web browser http:// 192.168.1.110 I keep getting a 404 message. Any help would be appreciated. Thanks, Derek

I am running Oracle VirtualBox with Debian as guest OS on a Windows 7 host. I have installed Apache and specified the following two network adapters in VM:

  1. Bridge
  2. Host-only w/ the same IP set as below.

My interfaces network settings on the Debian VM are:

auto lo
iface lo inet loopback

allow-hotplug eth0
iface eth0 inet dhcp
auto eth1 
    iface eth1 inet static
    address 192.168.1.110
    netmask 255.255.255.0

which all seems to work well enough via ping test between guest and host. However, when I try to browse to my guest instance in a web browser http://192.168.1.110 I keep getting a 404 message. Any help would be appreciated.

Source Link
geo derek
  • 183
  • 1
  • 6
Loading