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.

54 lines
677 B
Plaintext

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 kernel {
ipv6 {
preference 100;
import none;
export all;
};
}
protocol ospf v2 {
ipv4 {
preference 10;
import all;
export all;
};
area 0 {
{% for br in c.bridges %}
interface "net_{{br.num}}" {
cost 10;
type broadcast;
};
{% endfor %}
};
}
protocol ospf v3 {
ipv6 {
preference 10;
import all;
export all;
};
area 0 {
{% for br in c.bridges %}
interface "net_{{br.num}}" {
cost 10;
type broadcast;
};
{% endfor %}
};
}