Home All Groups Group Topic Archive Search About
Author
31 Mar 2006 4:14 AM
Stanley
Hi all, is it possible to send raw packet in vb.net like the following:

00 50 DA B8 A2 E4 00 08 75 00 00 54 88 64 11 00 00 19 00 12 C0 21 05 07
00 10
6F ED 58 BA 00 3C CD 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00
00 00 00 00 00 00 00 00 00 00 00

It's not a TCP/IP packet, it's PPPoE packet. The Destination MAC is
00:50:DA:B8:A2:E4 and the Source MAC is 00:08:75:00:00:54   Can we send
it out to the network?? Thanks in advance!

Author
31 Mar 2006 4:20 PM
Claes Bergefall
It should be possible. Check out the Socket class. It supports raw sockets.
Not sure you can use the MAC address to address the clients though (I've
never used raw sockets)

    /claes

Show quoteHide quote
"Stanley" <xstan***@gmail.com> wrote in message
news:1143778457.071204.91490@j33g2000cwa.googlegroups.com...
> Hi all, is it possible to send raw packet in vb.net like the following:
>
> 00 50 DA B8 A2 E4 00 08 75 00 00 54 88 64 11 00 00 19 00 12 C0 21 05 07
> 00 10
> 6F ED 58 BA 00 3C CD 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> 00 00
> 00 00 00 00 00 00 00 00 00 00 00
>
> It's not a TCP/IP packet, it's PPPoE packet. The Destination MAC is
> 00:50:DA:B8:A2:E4 and the Source MAC is 00:08:75:00:00:54   Can we send
> it out to the network?? Thanks in advance!
>
Author
2 Apr 2006 3:42 AM
Stanley
Thanks you for that!