* Raw Sockets
@ 2004-12-19 4:19 Igor A. Deruga
2004-12-19 11:07 ` Ron Michael Khu
0 siblings, 1 reply; 2+ messages in thread
From: Igor A. Deruga @ 2004-12-19 4:19 UTC (permalink / raw)
To: linux-c-programming
Greetings, fellows!
Hope you'll be able to help me with your useful advice...
I need to establish a connection using a Raw socket. That's what I'm doing:
int sock = socket(AF_PACKET, SOCK_RAW, IPPROTO_RAW);
sockaddr_ll addr;
addr.sll_family = AF_PACKET;
addr.sll_protocol = 0;
addr.sll_ifindex = 0;
addr.sll_hatype = 0;
addr.sll_pkttype = 0;
addr.sll_halen = 0;
But where can I get a value for addr.sll_addr? And what is it? "man 7 packet"
sais it's a Physical layer address, which is MAC, i guess... so, how do I
retreive it?
If it's possible, could anybody send me an example that uses sockaddr_ll to
SEND packets via RAW SOCKET? That'd be great!
Sincerely
Igor
P.S.: I've set the encoding to iso-8859-5. Hope this time it goes through...
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: Raw Sockets
2004-12-19 4:19 Raw Sockets Igor A. Deruga
@ 2004-12-19 11:07 ` Ron Michael Khu
0 siblings, 0 replies; 2+ messages in thread
From: Ron Michael Khu @ 2004-12-19 11:07 UTC (permalink / raw)
To: Igor A. Deruga; +Cc: linux-c-programming
i dont know how to use raw sockets....
but u could try using "ifconfig" (located usually in the /sbin directory)
to get the mach address...
*the mach address(or hwaddr is usually shown on the first line
of the output)
hope this helps.
Igor A. Deruga wrote:
>Greetings, fellows!
>
>Hope you'll be able to help me with your useful advice...
>I need to establish a connection using a Raw socket. That's what I'm doing:
>
>int sock = socket(AF_PACKET, SOCK_RAW, IPPROTO_RAW);
> sockaddr_ll addr;
> addr.sll_family = AF_PACKET;
> addr.sll_protocol = 0;
> addr.sll_ifindex = 0;
> addr.sll_hatype = 0;
> addr.sll_pkttype = 0;
> addr.sll_halen = 0;
>
>But where can I get a value for addr.sll_addr? And what is it? "man 7 packet"
>sais it's a Physical layer address, which is MAC, i guess... so, how do I
>retreive it?
>
>If it's possible, could anybody send me an example that uses sockaddr_ll to
>SEND packets via RAW SOCKET? That'd be great!
>
>Sincerely
> Igor
>
>
>P.S.: I've set the encoding to iso-8859-5. Hope this time it goes through...
>-
>To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at http://vger.kernel.org/majordomo-info.html
>
>
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2004-12-19 11:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-19 4:19 Raw Sockets Igor A. Deruga
2004-12-19 11:07 ` Ron Michael Khu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).