Last active
December 28, 2016 06:26
-
-
Save TobleMiner/187e75da665f06405c6e1ab4b9087879 to your computer and use it in GitHub Desktop.
dn42 OSPF setup: Lockdown is the peering vm, blaze is the primary router and connects to lockdown via interface dn42. 'some random dn42 enabled vm' is connected to blaze via interface dn42-gw.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protocol ospf dn42 | |
{ | |
table vm; | |
instance id 1; | |
export all; | |
import all; | |
area 0 | |
{ | |
interface "dn42" | |
{ | |
cost 10; | |
hello 15; | |
}; | |
}; | |
area 42 | |
{ | |
interface "dn42-gw" | |
{ | |
cost 10; | |
hello 15; | |
}; | |
}; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protocol ospf dn42_ospf | |
{ | |
table vm; | |
instance id 1; | |
export all; | |
import all; | |
area 0 | |
{ | |
interface "dn42" | |
{ | |
cost 10; | |
hello 15; | |
}; | |
}; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protocol ospf dn42 | |
{ | |
table vm; | |
instance id 1; | |
export all; | |
import all; | |
area 42 | |
{ | |
interface "dn42" | |
{ | |
cost 10; | |
hello 15; | |
}; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment