how can i restrict sending all our prefixes towards my isps by AS or me and my ip prefixes? Namely i want to apply filter not in order to send prefixes the isp from other isp. Could you give me an example?
Em seu bgpd.conf
você usa a sintaxe de configuração announce self
(supondo que você queira anunciar 192.168.1.0/24 do AS 100 para seus vizinhos em 192.0.2.1 (AS 777) e 192.0.2.9 (AS 778)) ...
# FILE: bgpd.conf
AS 100
network 192.168.1.0/24
router-id 192.0.2.2
neighbor 192.0.2.1 {
remote-as 777
descr upstream
local-address 192.0.2.2
announce self
}
neighbor 192.0.2.9 {
remote-as 778
descr upstream
local-address 192.0.2.10
announce self
}
Procure também as notas de configuração openbgp do Henning Brauer
AS112 também tem boas informações
BTW, openbgpd também está disponível para pfSense , como é uma plataforma baseada em BSD