How to set OSPF passive mode interface?

When I’m trying to set up OSFP:

routing ospf instance add name=ospf_v2 version=2 router-id=1.2.3.4
routing ospf area add name=bkbn_v2 area-id=0.0.0.0 instance=ospf_v2   
routing ospf interface-template add area=bkbn_v2 networks=192.168.100.0/24
routing ospf interface-template add area=bkbn_v2 networks=10.1.2.0/24
routing ospf interface-template add area=bkbn_v2 networks=172.16.254.0/24
routing ospf interface-template add interfaces=ether1,ether2 area=bkbn_v2

There are 3 subnets on the router and 3 interfaces. I don’t want to OSFP traffic to be sent or received via ether3. Trying:

routing/ospf/interface-template/add interfaces=ether3 passive area=bkbn_v2

But wireshark still shows OSPF Hello Packets in unwanted network.

routing/ospf/interface-template/print 

area=bkbn_v2 interfaces=ether3 instance-id=0 type=broadcast 
     retransmit-interval=5s transmit-delay=1s hello-interval=10s dead-interval=40s 
     priority=128 cost=1 passive

I am confused, please help…