Routing – why we can’t create multiple loopback interfaces in Junos

juniperjuniper-junosloopbackrouting

comparing to Cisco IOS , we can create any number of loopbacks on router , but on Junos you can create only one loopback interface (even logical units from same loopback) in the routing instance , did any one suggest or think about the reason for this design ? and did Junos has another logical interface can be used in the place of loopback ?

Best Answer

Because it's entirely unnecessary.

In JunOS you can have multiple addresses on a single logical interface.

> show configuration interfaces lo0.0
family inet {
    address 127.0.0.1/32;
    address 127.0.0.2/32;
}