aboutsummaryrefslogtreecommitdiff
path: root/networking/ip.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/ip.c')
-rw-r--r--networking/ip.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/networking/ip.c b/networking/ip.c
index cca7cbe12..8aaeef0db 100644
--- a/networking/ip.c
+++ b/networking/ip.c
@@ -14,8 +14,10 @@
14//config: select PLATFORM_LINUX 14//config: select PLATFORM_LINUX
15//config: help 15//config: help
16//config: The "ip" applet is a TCP/IP interface configuration and routing 16//config: The "ip" applet is a TCP/IP interface configuration and routing
17//config: utility. You generally don't need "ip" to use busybox with 17//config: utility.
18//config: TCP/IP. 18//config: Short forms (enabled below) are busybox-specific extensions.
19//config: The standard "ip" utility does not provide them. If you are
20//config: trying to be portable, it's better to use "ip CMD" forms.
19//config: 21//config:
20//config:config IPADDR 22//config:config IPADDR
21//config: bool "ipaddr (14 kb)" 23//config: bool "ipaddr (14 kb)"
@@ -23,7 +25,7 @@
23//config: select FEATURE_IP_ADDRESS 25//config: select FEATURE_IP_ADDRESS
24//config: select PLATFORM_LINUX 26//config: select PLATFORM_LINUX
25//config: help 27//config: help
26//config: Support short form of ip addr: ipaddr 28//config: Short form of "ip addr"
27//config: 29//config:
28//config:config IPLINK 30//config:config IPLINK
29//config: bool "iplink (16 kb)" 31//config: bool "iplink (16 kb)"
@@ -31,7 +33,7 @@
31//config: select FEATURE_IP_LINK 33//config: select FEATURE_IP_LINK
32//config: select PLATFORM_LINUX 34//config: select PLATFORM_LINUX
33//config: help 35//config: help
34//config: Support short form of ip link: iplink 36//config: Short form of "ip link"
35//config: 37//config:
36//config:config IPROUTE 38//config:config IPROUTE
37//config: bool "iproute (15 kb)" 39//config: bool "iproute (15 kb)"
@@ -39,7 +41,7 @@
39//config: select FEATURE_IP_ROUTE 41//config: select FEATURE_IP_ROUTE
40//config: select PLATFORM_LINUX 42//config: select PLATFORM_LINUX
41//config: help 43//config: help
42//config: Support short form of ip route: iproute 44//config: Short form of "ip route"
43//config: 45//config:
44//config:config IPTUNNEL 46//config:config IPTUNNEL
45//config: bool "iptunnel (9.6 kb)" 47//config: bool "iptunnel (9.6 kb)"
@@ -47,7 +49,7 @@
47//config: select FEATURE_IP_TUNNEL 49//config: select FEATURE_IP_TUNNEL
48//config: select PLATFORM_LINUX 50//config: select PLATFORM_LINUX
49//config: help 51//config: help
50//config: Support short form of ip tunnel: iptunnel 52//config: Short form of "ip tunnel"
51//config: 53//config:
52//config:config IPRULE 54//config:config IPRULE
53//config: bool "iprule (10 kb)" 55//config: bool "iprule (10 kb)"
@@ -55,7 +57,7 @@
55//config: select FEATURE_IP_RULE 57//config: select FEATURE_IP_RULE
56//config: select PLATFORM_LINUX 58//config: select PLATFORM_LINUX
57//config: help 59//config: help
58//config: Support short form of ip rule: iprule 60//config: Short form of "ip rule"
59//config: 61//config:
60//config:config IPNEIGH 62//config:config IPNEIGH
61//config: bool "ipneigh (8.3 kb)" 63//config: bool "ipneigh (8.3 kb)"
@@ -63,7 +65,7 @@
63//config: select FEATURE_IP_NEIGH 65//config: select FEATURE_IP_NEIGH
64//config: select PLATFORM_LINUX 66//config: select PLATFORM_LINUX
65//config: help 67//config: help
66//config: Support short form of ip neigh: ipneigh 68//config: Short form of "ip neigh"
67//config: 69//config:
68//config:config FEATURE_IP_ADDRESS 70//config:config FEATURE_IP_ADDRESS
69//config: bool "ip address" 71//config: bool "ip address"