20 lines
434 B
Plaintext
20 lines
434 B
Plaintext
protocol bfd bfd1 {
|
|
interface "eth2" { interval 100 ms; multiplier 30; };
|
|
}
|
|
|
|
protocol ospf v2 ospf4 {
|
|
ipv4 { import all; export all; };
|
|
area 0 {
|
|
interface "loop0" { stub yes; };
|
|
interface "eth2" { type pointopoint; cost 10; bfd on; };
|
|
};
|
|
}
|
|
|
|
protocol ospf v3 ospf6 {
|
|
ipv6 { import all; export all; };
|
|
area 0 {
|
|
interface "loop0" { stub yes; };
|
|
interface "eth2" { type pointopoint; cost 10; bfd on; };
|
|
};
|
|
}
|