Junos devices will respond to packets using the Record Route IP Option by default
The Record Route IP Option is read by the kernel by default. This option is used to trace the route an IP packet takes through the network. The following is from RFC 791 , pg. 20, 21:
This may be a security concern. Some administrators may choose to disable the feature.
Some applications rely on the Record Route IP Option, so it is enabled by default.
The Record Route IP Option can be disabled manually by the root administrator. To view the current status:
junos> start shell user root root@junos% sysctl -a | grep ip_rr net.inet.ip.ip_rr: 1
The value of 1 indicates the default value, where Record Route is used. To change the behavior:
root@junos% sysctl -w net.inet.ip.ip_rr=0
This will need to be done each time the Routing Engine restarts.