我想用我的手机连接我的ubuntu服务器中的视图网络应用程序

时间:2014-07-23 14:14:10

标签: ubuntu apache2

但是我在访问192.168.1.108

时获得了Forbidden页面

地址是正确的。

如何允许访问?

1 个答案:

答案 0 :(得分:0)

首先,找出你的IP地址:

ifconfig

这用于查找服务器的IP地址。

在服务器上安装了nmap(在linux上的sudo apt-get install nmap),然后找出网络中的所有ip地址运行:

sudo nmap -sP 192.168.1.0/24

更新apache配置以确保允许连接: vim /etc/apache2/sites-enabled/000-default.conf 找到它所说的部分:

    <Directory /media/jay/Data/apache/>
            Options Indexes FollowSymLinks
            AllowOverride All
            Order Deny,Allow
            Deny from all
            Allow from 127.0.0.1
            Allow from ::1
            Allow from localhost
    </Directory>

然后添加: 允许来自[ip of mobile device]

尝试从移动设备连接到服务器。

要检查连接是否正确,请在服务器上运行此命令: sudo tcpdump -i any -vvv -s 1600 port 80 然后从客户端尝试连接到该服务器以查看收到的数据包。