Soumya Roy
Soumya Roy
Following core/BT was seen in internal code Program terminated with signal SIGSEGV, Segmentation fault. [Current thread is 1 (Thread 0x7fcd750c9540 (LWP 30999))] (gdb) bt 0 0x00007fcd7596feec in ?? () from...
Issue: PBR rules don't install to kernel when more than 32 interfaces use the same PBR policy. Root cause: Bit shift overflow when install_bit >= 32. Basically Line 197 uses...
Issue: snprintf returns desired length, not bytes written. When truncated, using return value causes position miscalculation and buffer overflow. Before: pos += snprintf(...) /* Wrong when truncated */ After: pos...
Issue: With higher mroute scale (around 900), in PIM MLAG active-active setup crash was observed on a) restarting frr service on standby b) Enabling/Disabling pim active-active Root Cause: During bulk...
When a BGP route is leaked from source VRF foo to destination VRF bar, a route-map can be configured to strip off AS path attributes during the import process. Consider...
As per RFC rfc3168 section 5, the ECN field in the IP header has two bits, allowing for four ECN codepoints from '00' to '11'. DSCP/ECN with a value of...
Increase the number of reads per kernel_read call to speed up the kernel message receive processing. Ticket: #3775686 Testing: mlx-4600ca1-01# show ip bgp summary Neighbor V AS MsgRcvd MsgSent TblVer...
when ra lifetime is 0, the interval check of lessthan lifetime should not be done. Ticket: #4205240 Testing: root@r1:mgmt:/var/log/frr# nv set interface swp3 ip neighbor-discovery router-advertisement interval 10000 created [rev_id:...
Issue: issue is how the IPv6 address is formatted when being printed in PBR. Format specifier %pFX not be the correct one to use for printing IPv6 addresses. Fix: 1.In...