Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 19 Sep 2024 14:00:09 +0000
From:      bugzilla-noreply@freebsd.org
To:        net@FreeBSD.org
Subject:   [Bug 280648] Traffic leak between fibs
Message-ID:  <bug-280648-7501-bUOqKrz7tg@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-280648-7501@https.bugs.freebsd.org/bugzilla/>
References:  <bug-280648-7501@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D280648

--- Comment #17 from Egor <banezmesm@gmail.com> ---
I tried to use bird but it didn't up bgp sessions in fib 1.

bird_enable=3D"YES"
bird_fib=3D"1"

log "/var/log/bird.log" all;
log stderr all;

router id 10.64.244.139;

protocol device { }

protocol kernel {               # Primary routing table
        learn;                  # Learn alien routes from the kernel
        persist;                # Do not remove routes on bird shutdown
        scan time 10;           # Scan kernel routing table every 10 seconds
        kernel table 1;
        ipv4 {
                import all;
                export all;
        };
}

protocol bfd {
        interface "mce*" {
                interval 100 ms;
                min rx interval 100 ms;
                multiplier 5;
        };
}

filter vxlan_fabric {
        if (net ~ [ 172.16.0.0/15{15,16}]) then {
                accept;
        }
}

protocol bgp {
        local as 4230040015;
        neighbor 192.168.255.0 as 4230041240;
        hold 180;
        keepalive 60;
        bfd on;
        ipv4 {
                export filter vxlan_fabric;
                import all;
                next hop self;
        };
}

bgp1       BGP        ---        start  13:55:50.007  Connect       Socket:
Connection refused
  BGP state:          Connect
    Neighbor address: 192.168.255.0
    Neighbor AS:      4230041240
    Local AS:         4230040015
    Last error:       Socket: Connection refused
  Channel ipv4
    State:          DOWN
    Table:          master4
    Preference:     100
    Input filter:   ACCEPT
    Output filter:  vxlan_fabric

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-280648-7501-bUOqKrz7tg>