My application is running on CentOS 5.5. I'm using raw socket to send data:

sd = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
if (sd < 0) {
  // Error
}
const int opt_on = 1;
rc = setsockopt(m_SocketDescriptor, IPPROTO_IP, IP_HDRINCL, &opt_on, sizeof(opt_on));
if (rc < 0) {
  close(sd);
  // Error
}
struct sockaddr_in sin;
memset(&sin, 0, sizeof(sin));
sin.sin_family = AF_INET;
sin.sin_addr.s_addr = my_ip_address;

if (sendto(m_SocketDescriptor, DataBuffer, (size_t)TotalSize, 0, (struct sockaddr *)&sin, sizeof(struct sockaddr)) < 0)  {
  close(sd);
  // Error
}

How can I bind this socket to specific network interface (say eth1)?

Thanks

link|improve this question

Why would you want to do that? Your program will lose portability unless you are sure your machines will have interfaces named the predefined names. – Andrew Sledge Oct 22 '10 at 16:52
It is for embedded device, the portability is not needed. I have 6 Ethernet ports and I need to send data using specific interface – Dima Oct 22 '10 at 17:47
feedback

1 Answer

up vote 10 down vote accepted
char *opt;
opt = "eth0";
setsockopt(sd, SOL_SOCKET, SO_BINDTODEVICE, opt, 4);

First line: set up your variable

Second line: tell the program which interface to bind to

Third line: set the socket options for socket sd, binding to the device opt, and since opt is four characters long set 4 as the length.

setsockopt prototype:

int setsockopt(int s, int level, int optname, const void *optval, socklen_t optlen);

Also, make sure you include the socket.h header file

link|improve this answer
1  
Thanks, it working, but with one small modification: ifreq Interface; memset(&Interface, 0, sizeof(Interface)); strncpy(Interface.ifr_ifrn.ifrn_name, "eth1", IFNAMSIZ); if (setsockopt(sd, SOL_SOCKET, SO_BINDTODEVICE, &Interface, sizeof(Interface)) < 0) { close(sd); // Error } – Dima Oct 22 '10 at 20:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.