- 论坛徽章:
- 0
|
本帖最后由 migney 于 2010-02-04 13:17 编辑
三台主机A、B、C。A与B相连,B与C相连。
B有2个网卡:与A相连的网卡为eth0,接口索引为2,IPv6地址为1::2。与C相连的网卡为eth1,接口索引为3,IPv6地址为2::1。
A有1个网卡:eth0,接口索引为2,IPv6地址为1::1。
C有1个网卡:eth0,接口索引为2,IPv6地址为2::2。
即:
[A eth0,2,1::1]-------[eth0,2,1::2 B eth1,3,2::1]----------[eth0,2,2::2 C]
- //省略各种include
- int main ()
- {
- int sockfd = socket (AF_INET6, SOCK_RAW, 88);
- if (sockfd < 0) {
- perror ("socket");
- return -1;
- }
- int hop = 1; /* 设置为1跳,即只有邻居才能收到 */
- if (setsockopt (sockfd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &hop, sizeof (hop)) < 0) {
- perror ("setsockopt");
- return -1;
- }
- char dst_addr[] = "ff02::1"; /* 组播地址 */
- char src_addr[] = "1::2"; /* IPv6数据报源地址 */
- int ifindex = 3; /* 设置从哪个接口发送数据 */
- char data[] = "\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x00";
- struct iovec iovector[2];
- iovector[0].iov_base = (void *)data;
- iovector[0].iov_len = 16;
- iovector[1].iov_base = NULL;
- iovector[1].iov_len = 0;
- struct sockaddr_in6 sa6_dst;
- memset (&sa6_dst, 0, sizeof (sa6_dst));
- sa6_dst.sin6_family = AF_INET6;
- #ifdef SIN6_LEN
- sa6_dst.sin6_len = sizeof (struct sockaddr_in6);
- #endif
- if (inet_pton (AF_INET6, dst_addr, &sa6_dst.sin6_addr) != 1) {
- perror ("inet_pton");
- return -1;
- }
- #ifdef HAVE_SIN6_SCOPE_ID
- sa6_dst.sin6_scope_id = ifindex;
- #endif
- u_char cmsgbuf[CMSG_SPACE(sizeof (struct in6_pktinfo))];
- struct cmsghdr *scmsgp;
- scmsgp = (struct cmsghdr *)cmsgbuf;
- struct in6_pktinfo *pktinfo;
- pktinfo = (struct in6_pktinfo *)(CMSG_DATA(scmsgp));
- scmsgp->cmsg_len = CMSG_LEN (sizeof (struct in6_pktinfo));
- scmsgp->cmsg_level = IPPROTO_IPV6;
- scmsgp->cmsg_type = IPV6_PKTINFO;
- if (inet_pton (AF_INET6, src_addr, &pktinfo->ipi6_addr) != 1) {
- perror ("inet_pton");
- return -1;
- }
- pktinfo->ipi6_ifindex = ifindex;
- struct msghdr smsghdr;
- memset (&smsghdr, 0, sizeof (struct msghdr));
- smsghdr.msg_name = (void *)&sa6_dst;
- smsghdr.msg_namelen = sizeof (struct sockaddr_in6);
- smsghdr.msg_iov = iovector;
- smsghdr.msg_iovlen = 1;
- smsghdr.msg_control = NULL;
- smsghdr.msg_controllen = 0;
- smsghdr.msg_flags = 0;
- int n;
- if ((n = sendmsg (sockfd, &smsghdr, 0)) < 0)
- {
- perror("sendmsg");
- return -1;
- }
- printf ("send %d bytes\n", n);
- return 0;
- }
复制代码 看代码中17、18两行,无论源地址改为什么,发送接口索引改为什么,都只有主机A能收到数据,且源地址为 fe80 :: xxxx : xxxx : xxxx : xxxx 形的地址。
由此可见,这两行设置没有起作用。 |
|