Search found 7 matches

by jsearleEOC
Mon Apr 20, 2015 12:41 pm
Forum: NetBurner Software
Topic: Send Via on Mod 54417
Replies: 12
Views: 9396

Re: Send Via on Mod 54417

I am able to perform you test from my laptop(windows machine) For some reason I cannot get this netburner to talk directly to the hardware I am using. I can use only one port but much have a switch for it communicate.

I am able to communicate directly to this device with a MOD54415 Rev1.5 board and ...
by jsearleEOC
Mon Apr 20, 2015 6:36 am
Forum: NetBurner Software
Topic: Send Via on Mod 54417
Replies: 12
Views: 9396

Re: Send Via on Mod 54417

Thanks for the very detailed instructions.

I will try this.

Jeff
by jsearleEOC
Thu Apr 16, 2015 11:32 am
Forum: NetBurner Software
Topic: Send Via on Mod 54417
Replies: 12
Views: 9396

Re: Send Via on Mod 54417

Yes it can.
by jsearleEOC
Tue Apr 14, 2015 12:46 pm
Forum: NetBurner Software
Topic: Send Via on Mod 54417
Replies: 12
Views: 9396

Re: Send Via on Mod 54417

pbreed,


I checked the performance of the netburner. I cannot get any communication to start unless I have both the nic's plugged into a switch.

Jeff
by jsearleEOC
Tue Apr 14, 2015 8:33 am
Forum: NetBurner Software
Topic: Send Via on Mod 54417
Replies: 12
Views: 9396

Re: Send Via on Mod 54417

preed,

sorry for the delayed reply. The code is not waiting for a DCHP address. I have to have hard coded ip's for my application. the code blocks on the upkt.Validate() call.

I will check the interaction with the different ports connected.

Jeff
by jsearleEOC
Wed Apr 08, 2015 7:35 am
Forum: NetBurner Software
Topic: Send Via on Mod 54417
Replies: 12
Views: 9396

Re: Send Via on Mod 54417

pbreed,

Thanks for the information.

I have one other question with connecting via specific interface for UDP.

I am using the following code

OSFifoInit(&m_udpFifo);
RegisterUDPFifo(m_destPortNum, &m_udpFifo);

UDPPacket upkt(&m_udpFifo, 0);

if (upkt.Validate())
{
m_bytesRcvd = upkt ...
by jsearleEOC
Tue Apr 07, 2015 11:48 am
Forum: NetBurner Software
Topic: Send Via on Mod 54417
Replies: 12
Views: 9396

Send Via on Mod 54417

I am using a MOD54417 and am having trouble sending out a specific nic.
I have disabled the Eswitch.

I have eth0 set to 192.168.100.20 and eth1 set to 192.168.100.40.

here is the block of code I am using to send my packet
UDPPacket pkt;
pkt.SetDestinationPort(m_destPortNum);
pkt.SetSourcePort ...