LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   No access to webserver on orange network (DMZ) (https://www.linuxquestions.org/questions/linux-networking-3/no-access-to-webserver-on-orange-network-dmz-733889/)

jonaskellens 06-18-2009 07:50 AM

No access to webserver on orange network (DMZ)
 
I want to access my webserver from the green network.
I have an IP-address on the green network (192.168.1.19)

I can ping the webserver on IP :
Code:

[jonas@jonas ~]$ ping -c 4 192.168.2.3
PING 192.168.2.3 (192.168.2.3) 56(84) bytes of data.
64 bytes from 192.168.2.3: icmp_seq=1 ttl=63 time=2.70 ms
64 bytes from 192.168.2.3: icmp_seq=2 ttl=63 time=2.36 ms
64 bytes from 192.168.2.3: icmp_seq=3 ttl=63 time=2.44 ms
64 bytes from 192.168.2.3: icmp_seq=4 ttl=63 time=2.84 ms

--- 192.168.2.3 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3005ms
rtt min/avg/max/mdev = 2.366/2.590/2.847/0.193 ms

But when I want to access my index.php-page (http://192.168.2.3) firefox tells me :
Code:

Firefox can't establish a connection to the server at 192.168.2.3.
I have an Endian firewall that connects the RED, GREEN and ORANGE network.
All traffic from the GREEN to the ORANGE network is allowed (inter-zone traffic) on the firewall.

Code:

[jonas@jonas ~]$ traceroute 192.168.2.3
traceroute to 192.168.2.3 (192.168.2.3), 30 hops max, 60 byte packets
 1  endian.jocan.local (192.168.1.250)  0.495 ms  0.424 ms  0.388 ms
 2  192.168.2.3 (192.168.2.3)  4.928 ms !X  5.742 ms !X  9.344 ms !X

[jonas@jonas ~]$ telnet 192.168.2.3 80
Trying 192.168.2.3...
telnet: connect to address 192.168.2.3: No route to host

Extra info (httpd.conf) :

Listen 192.168.2.3:80
User apache
Group apache
DocumentRoot "/var/www/html"
<Directory "/var/www/html">
Order allow,deny
Allow from all
</Directory>

drwxr-xr-x 2 root root 4096 2009-06-16 21:07 html

I am able to access webpages on my webserver itself on http://192.168.2.3/index.php but not from an external host. Though I have "allow from all".

Do I miss something ?


All times are GMT -5. The time now is 12:16 AM.