You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Developed this automation using cPTX and cIXIA and it passes there, tried to use same script to verify on physical hardware and seeing the above mentioned issue
The text was updated successfully, but these errors were encountered:
On each PushConfig, the previous config is overwritten with the new config. So, unless the BGP peers, referenced in the Flow configuration (TxNames & RxNames) are part of the current config, the error will appear.
Please confirm if BGP neighbors are part of the present config being pushed.
Using below code for configuring traffic flow
func configureOTGTraffic(t *testing.T, top gosnappi.Config, ate *ondatra.ATEDevice, rxNames []string) {
t.Helper()
t.Logf("Start otg traffic config")
}
SetTxNames and SetRxNames uses below values from previous config used for BGP neighbor
iDut1Bgp4Peer := iDut1Bgp.Ipv4Interfaces().Add().SetIpv4Name(iDut1Ipv4.Name()).Peers().Add().SetName(Name + ".BGP4.peer")
Name + ".BGP4.peer" is = ateSrc.BGP4.peer here
Developed this automation using cPTX and cIXIA and it passes there, tried to use same script to verify on physical hardware and seeing the above mentioned issue
The text was updated successfully, but these errors were encountered: