1999-01-16 02:13:55 +08:00
|
|
|
/*
|
|
|
|
* This is an example configuration file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
# Yet another comment
|
|
|
|
|
1999-04-07 20:11:08 +08:00
|
|
|
router id 62.168.0.1;
|
1999-01-16 02:13:55 +08:00
|
|
|
|
1999-04-07 20:11:08 +08:00
|
|
|
define xyzzy = 120+10;
|
1999-01-16 02:13:55 +08:00
|
|
|
|
|
|
|
protocol rip MyRIP_test {
|
1999-04-07 20:11:08 +08:00
|
|
|
debug all;
|
|
|
|
port 1520;
|
1999-12-08 20:50:57 +08:00
|
|
|
period 7;
|
|
|
|
garbagetime 60;
|
2000-04-12 18:34:02 +08:00
|
|
|
interface "*" { mode broadcast; };
|
1999-08-18 21:19:33 +08:00
|
|
|
honour neighbour;
|
2000-03-22 22:23:40 +08:00
|
|
|
# passwords { password "ahoj" from 0 to 10;
|
|
|
|
# password "nazdar" from 10;
|
|
|
|
# }
|
1999-12-01 20:54:23 +08:00
|
|
|
authentication none;
|
1999-12-08 20:50:57 +08:00
|
|
|
import filter { print "importing"; accept; };
|
|
|
|
export filter { print "exporting"; accept; };
|
1999-01-16 02:13:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protocol device {
|
1999-04-07 20:11:08 +08:00
|
|
|
# disabled;
|
|
|
|
# interface "eth*", "ppp*";
|
1999-01-16 02:13:55 +08:00
|
|
|
}
|
|
|
|
|
1999-12-08 20:50:57 +08:00
|
|
|
protocol direct {
|
|
|
|
}
|
|
|
|
|
|
|
|
protocol kernel {
|
|
|
|
disabled;
|
1999-01-16 02:13:55 +08:00
|
|
|
# learn; # Learn all routes from the kernel
|
|
|
|
# scan time 10; # Scan kernel tables every 10 seconds
|
1999-12-08 20:50:57 +08:00
|
|
|
}
|
1999-01-16 02:13:55 +08:00
|
|
|
|
|
|
|
protocol static {
|
1999-04-07 20:11:08 +08:00
|
|
|
# disabled;
|
1999-12-08 20:50:57 +08:00
|
|
|
route 0.0.0.0/0 via 195.113.31.113;
|
1999-04-07 20:11:08 +08:00
|
|
|
route 62.168.0.0/25 reject;
|
1999-12-08 20:50:57 +08:00
|
|
|
route 1.2.3.4/32 via 195.113.31.124;
|
1999-04-07 20:11:08 +08:00
|
|
|
# route 10.0.0.0/8 reject;
|
|
|
|
# route 10.1.1.0:255.255.255.0 via 62.168.0.3;
|
|
|
|
# route 10.1.2.0:255.255.255.0 via 62.168.0.3;
|
|
|
|
# route 10.1.3.0:255.255.255.0 via 62.168.0.4;
|
|
|
|
# route 10.2.0.0/24 via "arc0";
|
1999-12-08 18:15:40 +08:00
|
|
|
export all;
|
1999-01-16 02:13:55 +08:00
|
|
|
}
|