36 lines
592 B
Plaintext
36 lines
592 B
Plaintext
# Минимальная тестовая конфигурация BIRD
|
|
# Ubuntu 24.04
|
|
|
|
# Logging
|
|
log stderr all;
|
|
|
|
# Router ID
|
|
router id 77.232.38.173;
|
|
|
|
# Device protocol
|
|
protocol device {
|
|
scan time 10;
|
|
}
|
|
|
|
# Direct protocol (disabled)
|
|
protocol direct {
|
|
disabled;
|
|
}
|
|
|
|
# Kernel protocol (disabled)
|
|
protocol kernel {
|
|
disabled;
|
|
}
|
|
|
|
# Static routes
|
|
protocol static {
|
|
# Пустая таблица статических маршрутов
|
|
}
|
|
|
|
# BGP protocol
|
|
protocol bgp any_peer {
|
|
local as 65001;
|
|
listen bgp port 179;
|
|
import none;
|
|
export where source = RTS_STATIC;
|
|
} |