injector22
Technical User
I have a router with the following OSPF schema
192.168.160.0/24 is a vlan, I need to add a new entry to the table for another vlan i have in the range of 10.0.0.0/22. my problem is that i don't understand the first entry
i've never seen an OSPF entry formatted like this.
secondly
if i was to add the entry to my 10.0.0.0/23 Vlan, what area would i use?
would this work?
thanks.
Code:
router ospf 100
router-id 192.168.160.2
log-adjacency-changes
area 0.0.160.0 range 192.168.160.0 255.255.252.0
network 192.168.91.80 0.0.0.3 area 0.0.0.0
network 192.168.160.0 0.0.1.255 area 0.0.160.0
192.168.160.0/24 is a vlan, I need to add a new entry to the table for another vlan i have in the range of 10.0.0.0/22. my problem is that i don't understand the first entry
Code:
area 0.0.160.0 range 192.168.160.0 255.255.252.0
secondly
if i was to add the entry to my 10.0.0.0/23 Vlan, what area would i use?
would this work?
Code:
area 10.0.0.0 range 10.0.0.0 255.255.252.0
network 10.0.0.0 0.0.3.255 area 10.0.0.0
thanks.