Description

Sometimes, you will get the error "The requested URL was not found on this server" while accessing the WebUI of the Junos Space server using IPV6. This article explains how to fix that.

Symptoms

This is a BUG in Junos Space when we configure IPV6 during the initial setup. Please refer to Configuring a Junos Space Appliance as a Junos Space Node


The issue will not be there if we configure IPV6 from Administration > Fabric > Add Fabric Node after the initial configuration using IPv4.


Solution

Please follow the below work arround to fix the issue:


step 1:-  vi /etc/httpd/conf.d/webProxy.conf


<VirtualHost jmp-CLUSTER:443> change this to below


  # Listen on both IPv4 and IPv6 for HTTPS

 Listen 0.0.0.0:443 https

 Listen [::]:443 https

<VirtualHost jmp-CLUSTER:443 jmp-IPV6CLUSTER:443 [::]:443>


step 2:- vi /etc/httpd/conf.d/ssl.conf

comment below 

#Listen 443


step 3:- Restart httpd service

systemctl restart httpd


The fix will also be part of the Junos Space release 24.1R6






Modification History

2025-11-19 : Article Created