美文网首页
VMware 设置虚拟机与主机在同一网段

VMware 设置虚拟机与主机在同一网段

作者: dongzhensong | 来源:发表于2019-11-28 14:57 被阅读0次

    环境: 主机 Windows Server 2012
    VMware 14.1.3 build-9474260
    虚拟机 ubuntu18

    选中虚拟机右键--设置


    image.png

    设置网络适配器--网络连接--桥接模式


    image.png

    验证:

    主机下win + r输入cmd回车进入命令行查询:

    C:\Users\Administrator>ipconfig
    
    Windows IP 配置
    
    
    以太网适配器 以太网:
    
       连接特定的 DNS 后缀 . . . . . . . :
       本地链接 IPv6 地址. . . . . . . . : fe80::98b0:7383:3c3a:c5b6%12
       IPv4 地址 . . . . . . . . . . . . : 192.168.3.224
       子网掩码  . . . . . . . . . . . . : 255.255.255.0
       默认网关. . . . . . . . . . . . . : 192.168.3.1
    
    以太网适配器 VMware Network Adapter VMnet1:
    
       连接特定的 DNS 后缀 . . . . . . . :
       本地链接 IPv6 地址. . . . . . . . : fe80::4020:5764:35b5:147b%14
       IPv4 地址 . . . . . . . . . . . . : 192.168.88.1
       子网掩码  . . . . . . . . . . . . : 255.255.255.0
       默认网关. . . . . . . . . . . . . :
    
    以太网适配器 VMware Network Adapter VMnet8:
    
       连接特定的 DNS 后缀 . . . . . . . :
       本地链接 IPv6 地址. . . . . . . . : fe80::c09c:81ab:1a69:f2ee%16
       IPv4 地址 . . . . . . . . . . . . : 192.168.31.1
       子网掩码  . . . . . . . . . . . . : 255.255.255.0
       默认网关. . . . . . . . . . . . . :
    
    隧道适配器 isatap.{C4B264F2-EB27-4E45-88F6-CAA32F3F1E61}:
    
       媒体状态  . . . . . . . . . . . . : 媒体已断开
       连接特定的 DNS 后缀 . . . . . . . :
    
    隧道适配器 isatap.{62EF72BC-C81B-4CF9-8F15-BCC6DC8C067B}:
    
       媒体状态  . . . . . . . . . . . . : 媒体已断开
       连接特定的 DNS 后缀 . . . . . . . :
    
    隧道适配器 isatap.{ED8AE2E6-402C-405F-B795-90353AA7FBC7}:
    
       媒体状态  . . . . . . . . . . . . : 媒体已断开
       连接特定的 DNS 后缀 . . . . . . . :
    
    C:\Users\Administrator>
    

    主机ip为192.168.3.224

    虚拟机打开终端,ifconfig查询:

    root@ubuntu:~# ifconfig
    docker0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
            inet 172.17.0.1  netmask 255.255.0.0  broadcast 172.17.255.255
            inet6 fe80::42:5cff:fe27:a6  prefixlen 64  scopeid 0x20<link>
            ether 02:42:5c:27:00:a6  txqueuelen 0  (Ethernet)
            RX packets 55  bytes 4317 (4.3 KB)
            RX errors 0  dropped 0  overruns 0  frame 0
            TX packets 137  bytes 16528 (16.5 KB)
            TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
    
    ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
            inet 192.168.3.104  netmask 255.255.255.0  broadcast 192.168.3.255
            inet6 fe80::8a78:4f55:f10:9ddb  prefixlen 64  scopeid 0x20<link>
            ether 00:0c:29:10:ae:9f  txqueuelen 1000  (Ethernet)
            RX packets 7284  bytes 1166813 (1.1 MB)
            RX errors 0  dropped 0  overruns 0  frame 0
            TX packets 1422  bytes 161226 (161.2 KB)
            TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
    
    lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
            inet 127.0.0.1  netmask 255.0.0.0
            inet6 ::1  prefixlen 128  scopeid 0x10<host>
            loop  txqueuelen 1000  (Local Loopback)
            RX packets 826  bytes 73735 (73.7 KB)
            RX errors 0  dropped 0  overruns 0  frame 0
            TX packets 826  bytes 73735 (73.7 KB)
            TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
    
    veth5201280: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
            inet6 fe80::4049:26ff:fe28:73b8  prefixlen 64  scopeid 0x20<link>
            ether 42:49:26:28:73:b8  txqueuelen 0  (Ethernet)
            RX packets 55  bytes 5087 (5.0 KB)
            RX errors 0  dropped 0  overruns 0  frame 0
            TX packets 175  bytes 22022 (22.0 KB)
            TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
    
    root@ubuntu:~#
    

    虚拟机ip为192.168.3.104

    搞定!

    相关文章

      网友评论

          本文标题:VMware 设置虚拟机与主机在同一网段

          本文链接:https://www.haomeiwen.com/subject/qrrbwctx.html