Troubleshooting steps to verify and correct reachability to the SRX.
Symptoms:
https:// <ike external interface IP> /dynamic-vpn
https:// <srx interface ip> http:// <srx interface ip>
Instead of the SRX web page being displayed, the user receives one of the following browser error messages (depending on the Web browser being used):
Perform the follow steps to solve the problem:
On the SRX, are 'ping, http or https' enabled on the interface you are trying to reach for the method being attempted? In order to verify, enter the following command, replacing fe-0/0/0.0 with the proper interface name.
root@srx> show interfaces fe-0/0/0.0
Logical interface fe-0/0/0.0 (Index 68) (SNMP ifIndex 151) Flags: SNMP-Traps Encapsulation: ENET2 Input packets : 0 Output packets: 0 Security: Zone: untrust Allowed host-inbound traffic : http https ike ping Protocol inet, MTU: 1500 Flags: Sendbcast-pkt-to-re, Is-Primary Addresses, Flags: Is-Default Is-Preferred Is-Primary Destination: 172.27.201/24, Local: 172.27.201.26, Broadcast: 172.27.201.255
This can also be checked through the configuration:
root@srx> show security zones security-zone untrust interfaces fe-0/0/0.0 { host-inbound-traffic { system-services { http ; https ; ike; ping } } }
root@srx> show security zones security-zone untrust interfaces
fe-0/0/0.0 { host-inbound-traffic { system-services { http ; https ; ike; ping } } }
root@srx# set security zones security-zone < zone name > interfaces < interface name > host-inbound-traffic system-services <service>
root@srx# commit
Are you attempting to reach the SRX using HTTP or HTTPS?
root@srx# show system services web-management { http; https { system-generated-certificate; } }
Is there a firewall filter applied to loopback interface or interface attempting to be reached?
root# show interfaces lo0unit 0 { family inet { filter { input fw_filter; } }}root# show interfaces fe-0/0/0unit 0 { family inet { filter { input fw_filter; } dhcp; }}
root# show firewallfilter fw_filter { term 1 { from { destination-port [ ssh https http ]; } then accept; } term 2 { from { protocol icmp; } then accept; }}
With PING being allowed in Step 1, try to ping the IP address of the SRX. Is the ping successful?
Do you have a route back to the source using the same interface that you are attempting to reach?
root@srx> show route 1.1.1.1inet.0: 5 destinations, 5 routes (5 active, 0 holddown, 0 hidden)+ = Active Route, - = Last Active, * = Both0.0.0.0/0 *[Static/5] 3w4d 01:58:54 > to 192.168.1.1 via fe-0/0/1.0 <-Active Route (denoted by an *) [Access-internal/12] 00:02:25 > to 172.27.201.1 via fe-0/0/0.0
root# set routing-options static route 1.1.1.1/32 next-hop 172.27.201.1 root# commit
'monitor traffic interface <interface name> '