- 论坛徽章:
- 0
|
有人知道用IOCTL SIOCADDRT 来设置网关出现错误
Address family not supported by protocol是什么原因.系统里的route命令都能设置的啊,,,
设置IP和子网都对的
ioctl (fd, SIOCSIFADDR, &ifr)
ioctl (fd, SIOCSIFNETMASK, &ifr)
我设置网关代码如下:
int SetIPGw(const char *ifname, const char *gw)
{
struct sockaddr_in sin;
struct protoent *pro;
struct rtentry rm;
int fd;
int ret;
char *ptr;
short found_colon = 0;
//bzero (&ifr, sizeof (struct ifreq));
bzero (&rm, sizeof (struct rtentry));
if (ifname == NULL || gw == NULL)
return -1;
pro = getprotobyname("tcp");
fd = socket (AF_INET, SOCK_STREAM, pro->p_proto);
if (fd == -1)
{
perror ("Cann't create network socket connection\n");
return -1;
}
memset(&sin, 0, sizeof(sin));
sin.sin_family = AF_INET;
sin.sin_addr.s_addr = inet_addr(gw);
memcpy(&rm.rt_gateway, &sin, sizeof(sin));
if (ioctl (fd, SIOCADDRT, &rm) < 0)
{
perror ("Gw Not setup interface\n");
return -1;
}
rm.rt_flags = RTF_UP | RTF_GATEWAY;;
if (ioctl(fd, SIOCSIFFLAGS, &rm) < 0)
{
perror("SIOCSIFFLAGS");
return -1;
}
close (fd);
return 0;
} |
|