Can't access Plex (in Virtualbox) from any device other than host

Status
Not open for further replies.

posman

Cadet
Joined
Nov 12, 2013
Messages
2
Hi

My problem is that I'm able to open the Plex webpage in the host. But I can't open it from a phone or tablet (both with Android).

I have Linux has the host and FreeNAS-9.1.1-RELEASE-x64 as the guest (Virtualbox 4.3.2)
192.168.1.66 host
192.168.1.74 guest (FreeNAS)
192.168.1.76 Plex

This is my network configuration in Virtualbox:
Attached to: Bridged Adapter
Adapter type: Intel PRO/1000 MT Desktop (82540EM)
Promiscuous mode: Allow all

In FreeNAS, Network -> Global Configuration:
Hostname: freenas
Domain: local
IPv4 Default Gateway: empty
IPv6 Default Gateway: empty
Nameserver 1,2 and 3: empty
Enable netwait feature: unchecked
Netwait IP list: empty
Host name database: empty

In the jail configuration for Plex:
IPv4 address: 192.168.1.76/24
autostart: checked
VIMAGE: checked
All other values empty

From the host I use http://192.168.1.76:32400/web to access Plex. But when I use the same URL from the tablet or phone I get a timeout error. Both devices respond to pings from FreeNAS

Code:
[root@freenas ~]# ifconfig -a                                                                                                     
em0: flags=8943<UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST> metric 0 mtu 1500                                                 
        options=98<VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM>                                                                           
        ether 08:00:27:c8:14:2d                                                                                                   
        inet 192.168.1.74 netmask 0xffffff00 broadcast 192.168.1.255                                                               
        nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>                                                                       
        media: Ethernet autoselect (1000baseT <full-duplex>)                                                                       
        status: active                                                                                                             
ipfw0: flags=8801<UP,SIMPLEX,MULTICAST> metric 0 mtu 65536                                                                         
        nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>                                                                       
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384                                                                 
        options=600003<RXCSUM,TXCSUM,RXCSUM_IPV6,TXCSUM_IPV6>                                                                     
        inet6 ::1 prefixlen 128                                                                                                   
        inet6 fe80::1%lo0 prefixlen 64 scopeid 0x4                                                                                 
        inet 127.0.0.1 netmask 0xff000000                                                                                         
        nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>                                                                                 
bridge0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500                                                     
        ether 02:1f:82:52:eb:00                                                                                                   
        nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>                                                                                 
        id 00:00:00:00:00:00 priority 32768 hellotime 2 fwddelay 15                                                               
        maxage 20 holdcnt 6 proto rstp maxaddr 2000 timeout 1200                                                                   
        root id 00:00:00:00:00:00 priority 32768 ifcost 0 port 0                                                                   
        member: epair0a flags=143<LEARNING,DISCOVER,AUTOEDGE,AUTOPTP>                                                             
                ifmaxaddr 0 port 6 priority 128 path cost 2000                                                                     
        member: em0 flags=143<LEARNING,DISCOVER,AUTOEDGE,AUTOPTP>                                                                 
                ifmaxaddr 0 port 1 priority 128 path cost 20000                                                                   
epair0a: flags=8943<UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST> metric 0 mtu 1500                                             
        options=8<VLAN_MTU>                                                                                                       
        ether 02:25:7f:00:06:0a                                                                                                   
        inet6 fe80::25:7fff:fe00:60a%epair0a prefixlen 64 scopeid 0x6                                                             
        inet 0.0.0.0 netmask 0xff000000 broadcast 255.255.255.255                                                                 
        nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>                                                                                 
        media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)                                                                       
        status: active
[root@freenas ~]#                                                                                                     
[root@freenas ~]# netstat -rn                                                                                                     
Routing tables                                                                                                                     
                                                                                                                                   
Internet:                                                                                                                         
Destination        Gateway            Flags    Refs      Use  Netif Expire                                                         
0.0.0.0/8          link#6            U          0        0 epair0 =>                                                             
default            192.168.1.254      UGS        0      179    em0                                                               
127.0.0.1          link#4            UH          0    23092    lo0                                                               
192.168.1.0/24    link#1            U          0    10308    em0                                                               
192.168.1.74      link#1            UHS        0      25    lo0                                                               
                                                                                                                                   
Internet6:                                                                                                                         
Destination                      Gateway                      Flags      Netif Expire                                           
::/96                            ::1                          UGRS        lo0                                                   
::1                              link#4                        UH          lo0                                                   
::ffff:0.0.0.0/96                ::1                          UGRS        lo0                                                   
fe80::/10                        ::1                          UGRS        lo0                                                   
fe80::%lo0/64                    link#4                        U          lo0                                                   
fe80::1%lo0                      link#4                        UHS        lo0                                                   
fe80::%epair0a/64                link#6                        U      epair0a                                                   
fe80::25:7fff:fe00:60a%epair0a    link#6                        UHS        lo0                                                   
ff01::%lo0/32                    ::1                          U          lo0                                                   
ff01::%epair0a/32                fe80::25:7fff:fe00:60a%epair0a U      epair0a                                                   
ff02::/16                        ::1                          UGRS        lo0                                                   
ff02::%lo0/32                    ::1                          U          lo0                                                   
ff02::%epair0a/32                fe80::25:7fff:fe00:60a%epair0a U      epair0a
[root@freenas ~]#
[root@freenas ~]# jls                                                                                                             
  JID  IP Address      Hostname                      Path                                                                         
    1  -              plex_1                        /mnt/plex_volumenZFS/jails/plex_1                                           
[root@freenas ~]#
[root@freenas ~]# jexec 1 ifconfig -a                                                                                             
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384                                                                 
        options=600003<RXCSUM,TXCSUM,RXCSUM_IPV6,TXCSUM_IPV6>                                                                     
        inet6 ::1 prefixlen 128                                                                                                   
        inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1                                                                                 
        inet 127.0.0.1 netmask 0xff000000                                                                                         
        nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>                                                                                 
epair0b: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500                                                     
        options=8<VLAN_MTU>                                                                                                       
        ether 02:25:7f:00:07:0b                                                                                                   
        inet 192.168.1.76 netmask 0xffffff00 broadcast 192.168.1.255                                                               
        inet6 fe80::25:7fff:fe00:70b%epair0b prefixlen 64 scopeid 0x2                                                             
        nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>                                                                                 
        media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)                                                                       
        status: active
 

cyberjock

Inactive Account
Joined
Mar 25, 2012
Messages
19,526

amires

Explorer
Joined
Nov 19, 2012
Messages
66
How is your virtualbox host (your pc) connected to the network? Is it wired or wireless?
 
Status
Not open for further replies.
Top