Skip to content

Instantly share code, notes, and snippets.

@TobleMiner
Last active December 28, 2016 06:26
Show Gist options
  • Save TobleMiner/187e75da665f06405c6e1ab4b9087879 to your computer and use it in GitHub Desktop.
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.
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;
};
};
}
protocol ospf dn42_ospf
{
table vm;
instance id 1;
export all;
import all;
area 0
{
interface "dn42"
{
cost 10;
hello 15;
};
};
}
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