从 windows 浏览器访问 ubuntu 虚拟机主机
Accessing ubuntu virtual machine host from windows browser
我有一个 virtualbox ubuntu 机器 运行 正在运行一个 hellow world flask 应用程序。
我尝试在 127.0.0.1:5000 和 0.0.0.0:5000 上显示该应用程序
但是当我尝试在 windows 浏览器上加载时都无法解析。
当我在 ubuntu 虚拟机中 运行 ifconfig 时,我得到这个:
ifconfig -a
eth0 Link encap:Ethernet HWaddr 08:00:27:6f:2c:93
inet addr:10.0.2.15 Bcast:10.0.2.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:fe6f:2c93/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:657 errors:0 dropped:0 overruns:0 frame:0
TX packets:559 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:61322 (61.3 KB) TX bytes:73104 (73.1 KB)
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:65536 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)
然后在我的 windows 机器上 运行 ip config 我得到这个:
ipconfig
Windows IP Configuration
Ethernet adapter Local Area Connection:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Wireless LAN adapter Local Area Connection* 4:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Ethernet adapter Bluetooth Network Connection:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Wireless LAN adapter Local Area Connection* 2:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Wireless LAN adapter Wi-Fi:
Connection-specific DNS Suffix . :
Link-local IPv6 Address . . . . . : fe80::2140:c809:4677:98bc%3
IPv4 Address. . . . . . . . . . . : 10.32.16.32
Subnet Mask . . . . . . . . . . . : 255.0.0.0
Default Gateway . . . . . . . . . : 10.128.128.128
Ethernet adapter VirtualBox Host-Only Network:
Connection-specific DNS Suffix . :
Link-local IPv6 Address . . . . . : fe80::3568:3fc7:1697:a475%10
IPv4 Address. . . . . . . . . . . : 192.168.56.1
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . :
Tunnel adapter isatap.{2543650F-5CEA-40B8-B085-A54A628D3DCE}:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Tunnel adapter isatap.{8A555006-09A6-4A20-986D-F59F5741DCCE}:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
但出于某种原因,当我在 windows 浏览器中访问 192.168.56.1 时,它加载了一个白页。如果我去 192.168.56.1:5000 它说它无法连接。
在我的虚拟盒子里我有它"attached to: NAT"
和端口转发规则显示
ssh TCP 127.0.0.1 host port 2222 guest ip为空,guest port为22
我的烧瓶应用程序显示
* Running on http://0.0.0.0:5000/ (Press CTRL+C to quit)
* Restarting with stat
也试过
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
* Restarting with stat
您可以在 VirtualBox 文档中找到问题的答案:
https://www.virtualbox.org/manual/ch06.html
6.3.1。使用 NAT
配置端口转发
您可以将端口 5000 从来宾 OS (Ubuntu) 转发到主机一。在主机端你可以使用相同的端口号(如果它没有被其他人占用,当然)
我有一个 virtualbox ubuntu 机器 运行 正在运行一个 hellow world flask 应用程序。
我尝试在 127.0.0.1:5000 和 0.0.0.0:5000 上显示该应用程序
但是当我尝试在 windows 浏览器上加载时都无法解析。
当我在 ubuntu 虚拟机中 运行 ifconfig 时,我得到这个:
ifconfig -a
eth0 Link encap:Ethernet HWaddr 08:00:27:6f:2c:93
inet addr:10.0.2.15 Bcast:10.0.2.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:fe6f:2c93/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:657 errors:0 dropped:0 overruns:0 frame:0
TX packets:559 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:61322 (61.3 KB) TX bytes:73104 (73.1 KB)
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:65536 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)
然后在我的 windows 机器上 运行 ip config 我得到这个:
ipconfig
Windows IP Configuration
Ethernet adapter Local Area Connection:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Wireless LAN adapter Local Area Connection* 4:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Ethernet adapter Bluetooth Network Connection:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Wireless LAN adapter Local Area Connection* 2:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Wireless LAN adapter Wi-Fi:
Connection-specific DNS Suffix . :
Link-local IPv6 Address . . . . . : fe80::2140:c809:4677:98bc%3
IPv4 Address. . . . . . . . . . . : 10.32.16.32
Subnet Mask . . . . . . . . . . . : 255.0.0.0
Default Gateway . . . . . . . . . : 10.128.128.128
Ethernet adapter VirtualBox Host-Only Network:
Connection-specific DNS Suffix . :
Link-local IPv6 Address . . . . . : fe80::3568:3fc7:1697:a475%10
IPv4 Address. . . . . . . . . . . : 192.168.56.1
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . :
Tunnel adapter isatap.{2543650F-5CEA-40B8-B085-A54A628D3DCE}:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Tunnel adapter isatap.{8A555006-09A6-4A20-986D-F59F5741DCCE}:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
但出于某种原因,当我在 windows 浏览器中访问 192.168.56.1 时,它加载了一个白页。如果我去 192.168.56.1:5000 它说它无法连接。
在我的虚拟盒子里我有它"attached to: NAT" 和端口转发规则显示
ssh TCP 127.0.0.1 host port 2222 guest ip为空,guest port为22
我的烧瓶应用程序显示
* Running on http://0.0.0.0:5000/ (Press CTRL+C to quit)
* Restarting with stat
也试过
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
* Restarting with stat
您可以在 VirtualBox 文档中找到问题的答案: https://www.virtualbox.org/manual/ch06.html 6.3.1。使用 NAT
配置端口转发您可以将端口 5000 从来宾 OS (Ubuntu) 转发到主机一。在主机端你可以使用相同的端口号(如果它没有被其他人占用,当然)