Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Ruby (http://www.velocityreviews.com/forums/f66-ruby.html)
-   -   How to write packets on ethernet card.. (http://www.velocityreviews.com/forums/t856293-how-to-write-packets-on-ethernet-card.html)

Stalin Thangaraj 03-11-2009 10:48 AM

How to write packets on ethernet card..
 
Hi all,
I want to write raw packets over the Ethernet card. I don't
how to do it in ruby. If anybody knows help me..
--
Posted via http://www.ruby-forum.com/.


Gregory Brown 03-11-2009 11:58 AM

Re: How to write packets on ethernet card..
 
On Wed, Mar 11, 2009 at 6:48 AM, Stalin Thangaraj
<stalin@bksystems.co.in> wrote:
> Hi all,
> =A0 =A0 =A0 =A0 =A0I want to write raw packets over the Ethernet card. I =

don't
> how to do it in ruby. If anybody knows help me..


http://tinyurl.com/cb9p7z

When you have more specific questions, and have researched this a
little and can show what you have tried so far, post back and I'm sure
folks will help you.

-greg


--=20
Technical Blaag at: http://blog.majesticseacreature.com
Non-tech stuff at: http://metametta.blogspot.com
"Ruby Best Practices" Book now in O'Reilly Roughcuts:
http://rubybestpractices.com


Brian Candler 03-11-2009 12:23 PM

Re: How to write packets on ethernet card..
 
Stalin Thangaraj wrote:
> I want to write raw packets over the Ethernet card. I don't
> how to do it in ruby. If anybody knows help me..


First find out how to do it in C using the Unix sockets API. Suggested
resource is "Unix Network Programming volume 1" by Richard Stevens, pub
Addison Wesley. Or you can find existing code which sends raw packets
and reverse-engineer that. Ask questions on a kernel/networking mailing
list if you have problems.

Once you know this, you can translate easily to Ruby, since ruby's
Socket is a thin layer on top of this.

Google "ruby socket" and the first hit is the socket documentation. Also
look in the sockets documentation at
http://www.ruby-doc.org/books/ProgrammingRuby (click on "Network and Web
Libraries")
--
Posted via http://www.ruby-forum.com/.


Eleanor McHugh 03-12-2009 01:18 AM

Re: How to write packets on ethernet card..
 
On 11 Mar 2009, at 12:23, Brian Candler wrote:
> Stalin Thangaraj wrote:
>> I want to write raw packets over the Ethernet card. I don't
>> how to do it in ruby. If anybody knows help me..

>
> First find out how to do it in C using the Unix sockets API. Suggested
> resource is "Unix Network Programming volume 1" by Richard Stevens,
> pub
> Addison Wesley. Or you can find existing code which sends raw packets
> and reverse-engineer that. Ask questions on a kernel/networking
> mailing
> list if you have problems.
>
> Once you know this, you can translate easily to Ruby, since ruby's
> Socket is a thin layer on top of this.
>
> Google "ruby socket" and the first hit is the socket documentation.
> Also
> look in the sockets documentation at
> http://www.ruby-doc.org/books/ProgrammingRuby (click on "Network and
> Web
> Libraries")


Follow the link in my sig and you'll find some presentations bursting
with code for UDP and TCP network comms. These aren't raw packets in
the fullest sense of the term but depending on your intent they may
suffice.


Ellie

Eleanor McHugh
Games With Brains
http://slides.games-with-brains.net
----
raise ArgumentError unless @reality.responds_to? :reason





All times are GMT. The time now is 04:33 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57