I have this situation
sw1(3560)<---ospf-->sw2(3560)---->users( vlan 1)
sw1
interface g0/1
no switchport
ip address 10.0.0.2 255.255.255.0
router ospf 1
passive interface default
no passive interface g0/1
network 10.0.0.2 0.0.0.0.0 area 13
sw2
interface vlan 1
ip address 10.0.0.1 255.255.255.0
router ospf 1
passive interface default
no passive interface vlan 1
network 10.0.0.1 0.0.0.0.0 area 13
My question is, when I configuring this
network 10.0.0.1 0.0.0.0.0 area 13
Will I be sure that some of users in vlan 1(on sw2) do not sniff my routing table, or fo not inject some routes in my routing table? thanks