HomeSort by relevance Sort by last modified time
    Searched refs:ifconfig (Results 1 - 25 of 40) sorted by null

1 2

  /device/generic/uml/
init.eth0.sh 2 ifconfig eth0 192.168.0.253 u
  /external/ltp/testcases/network/stress/interface/
if-updown 21 IF_CMD='ifconfig'
38 ifconfig) ifconfig $iface down ;;
47 ifconfig) ifconfig $iface up ;;
if-addr-adddel 21 IF_CMD='ifconfig'
52 ifconfig)
54 ifconfig $iface add $new_ip/$netmask
56 ifconfig $iface:1 $new_ip netmask 255.255.255.0
79 ifconfig)
81 ifconfig $iface del $new_ip/$netmask
83 ifconfig $iface:1 down
if-addr-addlarge 21 IF_CMD='ifconfig'
65 ifconfig)
67 ifconfig $iface add $new_ip/$netmask
69 ifconfig $iface:$x:$y $new_ip netmask 255.255.0.0
90 ifconfig)
92 ifconfig $iface del $new_ip/$netmask
94 ifconfig $iface:$x:$y down
if-mtu-change 21 IF_CMD='ifconfig'
76 ifconfig) ifconfig $iface mtu $mtu || ret=1
77 tst_rhost_run -c "ifconfig $iface_rmt mtu $mtu"
if4-addr-change 24 TST_NEEDS_CMDS="ifconfig"
43 tst_res TINFO "ifconfig changes IPv4 address $NS_TIMES times"
63 ROD ifconfig $(tst_iface) ${IPV4_LNETWORK}${add_to_net}.${num} netmask \
  /device/generic/goldfish/
init.ranchu-net.sh 20 *) ifconfig eth1 "$my_ip" netmask 255.255.255.0 up
init.goldfish.sh 4 ifconfig eth0 10.0.2.15 netmask 255.255.255.0 up
72 *) ifconfig eth1 "$my_ip" netmask 255.255.255.0 up
  /device/google/cuttlefish_common/tools/
vlan_prototype_down.sh 12 /sbin/ifconfig "${tap}" down
21 /sbin/ifconfig "${bridge}" down
vlan_prototype_up.sh 18 /sbin/ifconfig "${bridge}" "${gateway}" netmask "${netmask}" up
35 /sbin/ifconfig "${tap}" 0.0.0.0 up
40 ifconfig cvd-net-01 0.0.0.0 up
  /external/ltp/runtest/
net_stress.interface 8 if4-updown_ifconfig if-updown -c ifconfig
10 if4-addr-adddel_ifconfig if-addr-adddel -c ifconfig
12 if4-addr-addlarge_ifconfig if-addr-addlarge -c ifconfig
18 if4-mtu-change_ifconfig if-mtu-change -c ifconfig
21 if6-updown_ifconfig if-updown -6 -c ifconfig
23 if6-addr-adddel_ifconfig if-addr-adddel -6 -c ifconfig
25 if6-addr-addlarge_ifconfig if-addr-addlarge -6 -c ifconfig
31 if6-mtu-change_ifconfig if-mtu-change -6 -c ifconfig
  /external/ltp/testcases/kernel/containers/netns/
netns_breakns.sh 34 # and 'ifconfig' for ioctl.)
36 # Tests communication with ip (uses netlink) and ifconfig (uses ioctl)
42 # 2. using ioctl (ifconfig command).
64 tst_test_cmds ifconfig
65 $NS_EXEC $NS_HANDLE0 $NS_TYPE ifconfig veth1 $IFCONF_IN6_ARG $IP1/$NETMASK 2>/dev/null
netns_comm.sh 34 # and 'ifconfig' for ioctl.)
38 # or ioctl(2) ('ifconfig' command) for controlling devices.
86 $NS_EXEC $NS_HANDLE0 $NS_TYPE ifconfig lo up || \
netns_helper.sh 23 # Set to 1 only for test cases using ifconfig (ioctl).
56 # Adds "inet6 add" to the 'ifconfig' arguments which is required for the ipv6
57 # version. Always use with 'ifconfig', even if ipv4 version of a test case is
59 # ifconfig <device> $IFCONF_IN6_ARG IP/NETMASK
101 # ethernet devices. Uses 'ip' command for netlink and 'ifconfig'
103 # of the 'ifconfig' command.)
142 tst_test_cmds ifconfig
275 $NS_EXEC $NS_HANDLE0 $NS_TYPE ifconfig veth0 $IFCONF_IN6_ARG $IP0/$NETMASK ||
277 $NS_EXEC $NS_HANDLE1 $NS_TYPE ifconfig veth1 $IFCONF_IN6_ARG $IP1/$NETMASK ||
279 $NS_EXEC $NS_HANDLE0 $NS_TYPE ifconfig veth0 up |
    [all...]
  /external/ltp/testcases/network/stress/ns-tools/
add_ipv6addr 84 ifconfig ${ifname} up ; ifconfig ${ifname} add ${addr}/${netmask}
87 ret=`$LTP_RSH $RHOST '( PATH=/sbin:/usr/sbin:$PATH ; ifconfig '${ifname}' up && ifconfig '${ifname}' add '${addr}/${netmask}' ) >/dev/null 2>&1; echo $?'`
initialize_if 73 command="ifconfig $ifname down mtu 1500 ; ip route flush dev $ifname ; ip addr flush dev $ifname ; ifconfig $ifname up"
76 ( ifconfig $ifname down && \
80 ifconfig $ifname up ) >/dev/null 2>&1
83 ret=`$LTP_RSH $RHOST '( PATH=/sbin:/usr/sbin:$PATH ; ifconfig '$ifname' down && ip link set mtu 1500 dev '$ifname' && ip route flush dev '$ifname' && ip addr flush dev '$ifname' && ifconfig '$ifname' up ) >/dev/null 2>&1 ; echo $?'`
set_ipv4addr 85 ifconfig $ifname up
86 ifconfig $ifname $addr netmask $netmask broadcast $broadcast
89 ret=`$LTP_RSH $RHOST '( PATH=/sbin:/usr/sbin:$PATH ; ifconfig '$ifname' up && ifconfig '$ifname $addr' netmask '$netmask' broadcast '$broadcast' ) >/dev/null 2>&1; echo $?'`
  /external/toybox/tests/
ifconfig.test 4 # Brief: Some cursery coverage tests of ifconfig...
5 # Note: requires permissions to run modprobe and all ifconfig options
10 # instead of relying on ifconfig output
11 # 2. Introduce more error cases, to verify ifconfig fails gracefully
12 # 3. Do more complex calls to ifconfig, while mixing the order of the
14 # 4. Cover more ifconfig options:
26 echo "$SHOWSKIP: ifconfig (not root)"
35 if ! ifconfig dummy0 up 2>/dev/null
37 echo "$SHOWSKIP: ifconfig dummy0 up failed"
41 # Results Expected: After calling ifconfig, no lines with dummy0 are displaye
    [all...]
  /external/ltp/testcases/kdump/lib/
sysinfo.sh 48 echo "------------- IFCONFIG -------------------"
50 ifconfig
  /external/wpa_supplicant_8/wpa_supplicant/examples/
p2p-action-udhcp.sh 27 ifconfig $GIFNAME 192.168.42.1 up
42 ifconfig $GIFNAME 0.0.0.0
46 ifconfig $GIFNAME 0.0.0.0
p2p-action.sh 29 ifconfig $GIFNAME 192.168.42.1 up
53 sudo ifconfig $GIFNAME "$ipaddr" netmask "$ipmask"
68 ifconfig $GIFNAME 0.0.0.0
73 ifconfig $GIFNAME 0.0.0.0
  /external/ipsec-tools/src/racoon/samples/roadwarrior/client/
phase1-down.sh 35 ifconfig ${if} delete ${INTERNAL_ADDR4}
44 ifconfig ${if}:1 del ${INTERNAL_ADDR4}
phase1-up.sh 36 ifconfig ${if} alias ${INTERNAL_ADDR4} netmask ${INTERNAL_NETMASK4}
43 ifconfig ${if}:1 ${INTERNAL_ADDR4}
  /development/scripts/
reverse_tether.sh 87 $ADB shell "ifconfig $PHONE_DEV down"
101 $ADB shell "ifconfig $PHONE_DEV $PHONE_IP netmask $NETMASK up"
102 sudo ifconfig $HOST_DEV $HOST_IP netmask $NETMASK up
121 $ADB shell "ifconfig $dev down"
127 $ADB shell "ifconfig $PHONE_DEV $PHONE_IP netmask $NETMASK up"
136 $ADB shell "ifconfig $PHONE_DEV up"
138 $ADB shell "ifconfig $PHONE_DEV" # for diagnostics
161 sudo ifconfig $HOST_DEV $HOST_IP netmask $NETMASK up
168 sudo ifconfig usb0 $HOST_IP netmask $NETMASK up
180 sudo ifconfig $LAN_DEV 0.0.0.
    [all...]
  /external/iproute2/examples/
dhcp-client-script 136 LOG ifconfig $addrid down
137 ifconfig $addrid down
164 LOG ifconfig $addrid $2 $mask_arg $brd_arg up
165 ifconfig $addrid $2 $mask_arg $brd_arg up
345 ifconfig $interface:dhcp down
346 ifconfig $interface:dhcp1 down
348 ifconfig $interface:dhcp 10.10.10.10 netmask 255.255.255.255
349 ifconfig $interface:dhcp down
354 ifconfig $interface:dhcp up

Completed in 284 milliseconds

1 2