To configure OSPF on the 6024, you would configure the global settings first (area ID, router ID, cost, priority, etc.), then enable OSPF on the interface.
A similar configuration would be:
(config)# router ospf enable (config)# router ospf area 0.0.0.0 (config)# interface ip 200.0.0.1 (this would be the IP address bound to an interface) (config-ip)# ospf (this command tells the interface to participate in OSPF) (config-ip)# ospf enable (this command tells the interface to send LSAs)
For more information and command syntax, see the OSPF Commands section of the online CLI Guide at the following link:
umekoro
44 Posts
0
September 15th, 2004 11:00
Thanks for you reply.
>interface ip 200.0.0.1 (this would be the IP address bound to an interface)
On the above configuration, how should I understand '200.0.0.1' ? There's no wildcard mask.
Please let me know.
GregG1
2 Intern
•
812 Posts
0
September 15th, 2004 11:00
To configure OSPF on the 6024, you would configure the global settings first (area ID, router ID, cost, priority, etc.), then enable OSPF on the interface.
A similar configuration would be:
(config)# router ospf enable
(config)# router ospf area 0.0.0.0
(config)# interface ip 200.0.0.1 (this would be the IP address bound to an interface)
(config-ip)# ospf (this command tells the interface to participate in OSPF)
(config-ip)# ospf enable (this command tells the interface to send LSAs)
For more information and command syntax, see the OSPF Commands section of the online CLI Guide at the following link:
http://support.dell.com/support/edocs/network/pc6024/en/clig/ospf.htm#1043205
GregG1
2 Intern
•
812 Posts
0
September 15th, 2004 11:00
There is no wildcard mask used when configuring this switch.
The 200.0.0.1 is the ip address that was previously configured on an interface using the "ip address
" command.Ex.
(config)# interface ethernet g1
(config-if)# ip address 200.0.0.1 255.0.0.0
This command would enter the 200.0.0.0 /8 network in the routing table.