2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2002-11-10 07:03:55 +05:30
|
|
|
/*
|
|
|
|
* ip.c "ip" utility frontend.
|
|
|
|
*
|
2005-10-26 16:17:26 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2002-11-10 07:03:55 +05:30
|
|
|
*
|
|
|
|
* Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Changes:
|
|
|
|
*
|
|
|
|
* Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2005-10-26 16:17:26 +05:30
|
|
|
#include "libiproute/utils.h"
|
|
|
|
#include "libiproute/ip_common.h"
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
#include "busybox.h"
|
|
|
|
|
2002-12-02 04:34:06 +05:30
|
|
|
int ip_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int ret = EXIT_FAILURE;
|
|
|
|
|
|
|
|
ip_parse_common_args(&argc, &argv);
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
if (argc > 1) {
|
|
|
|
#ifdef CONFIG_FEATURE_IP_ADDRESS
|
2002-12-02 04:34:06 +05:30
|
|
|
if (matches(argv[1], "address") == 0) {
|
|
|
|
ret = do_ipaddr(argc-2, argv+2);
|
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_FEATURE_IP_ROUTE
|
2004-04-12 08:05:44 +05:30
|
|
|
if (matches(argv[1], "route") == 0) {
|
2002-12-02 04:34:06 +05:30
|
|
|
ret = do_iproute(argc-2, argv+2);
|
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_FEATURE_IP_LINK
|
2004-04-12 08:05:44 +05:30
|
|
|
if (matches(argv[1], "link") == 0) {
|
2002-12-02 04:34:06 +05:30
|
|
|
ret = do_iplink(argc-2, argv+2);
|
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_FEATURE_IP_TUNNEL
|
2004-04-12 08:05:44 +05:30
|
|
|
if (matches(argv[1], "tunnel") == 0 || strcmp(argv[1], "tunl") == 0) {
|
2002-12-02 04:34:06 +05:30
|
|
|
ret = do_iptunnel(argc-2, argv+2);
|
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
#endif
|
|
|
|
}
|
2002-12-02 04:34:06 +05:30
|
|
|
if (ret) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2002-12-02 04:34:06 +05:30
|
|
|
}
|
|
|
|
return(EXIT_SUCCESS);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|