123
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
# Минимальная тестовая конфигурация 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;
|
||||
}
|
||||
Reference in New Issue
Block a user