25 lines
396 B
Text
25 lines
396 B
Text
|
protocol device {
|
||
|
scan time 10;
|
||
|
};
|
||
|
|
||
|
protocol direct {
|
||
|
ipv4;
|
||
|
ipv6;
|
||
|
interface "dn42dummy0";
|
||
|
};
|
||
|
|
||
|
protocol babel int_babel {
|
||
|
randomize router id on;
|
||
|
ipv4 {
|
||
|
import all;
|
||
|
export all;
|
||
|
};
|
||
|
ipv6 {
|
||
|
import all;
|
||
|
export all;
|
||
|
};
|
||
|
interface "{% if vlan is defined %}host0.{{ vlan }}{% else %}host0{% endif %}" {
|
||
|
type wired;
|
||
|
};
|
||
|
};
|