You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
402 B
Plaintext
30 lines
402 B
Plaintext
3 years ago
|
log syslog all;
|
||
|
debug protocols all;
|
||
|
router id 172.23.100.{{c.num}};
|
||
|
protocol device { }
|
||
|
protocol direct { disabled; }
|
||
|
protocol kernel {
|
||
|
ipv4 {
|
||
|
preference 100;
|
||
|
import none;
|
||
|
export all;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
protocol ospf v3 {
|
||
|
ipv4 {
|
||
|
preference 10;
|
||
|
import all;
|
||
|
export all;
|
||
|
};
|
||
|
area 0 {
|
||
|
{% for br in c.bridges %}
|
||
|
interface "net_{{br.num}}" {
|
||
|
cost 10;
|
||
|
type broadcast;
|
||
|
};
|
||
|
{% endfor %}
|
||
|
};
|
||
|
}
|
||
|
|