• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/doc/

Lines Matching refs:add

128 As a rule, it is possible to \verb|add|, \verb|delete| and
563 \paragraph{Commands:} \verb|add|, \verb|delete|, \verb|flush| and \verb|show|
567 \subsection{{\tt ip address add} --- add a new protocol address}
570 \paragraph{Abbreviations:} \verb|add|, \verb|a|.
577 \noindent--- the name of the device to add the address to.
641 \item \verb|ip addr add 127.0.0.1/8 dev lo brd + scope host|
643 --- add the usual loopback address to the loopback device.
645 \item \verb|ip addr add 10.0.0.1/24 brd + dev eth0 label eth0:Alias|
647 --- add the address 10.0.0.1 with prefix length 24 (i.e.\ netmask
657 \paragraph{Arguments:} coincide with the arguments of \verb|ip addr add|.
841 and their properties, add new neighbour entries and delete old ones.
843 \paragraph{Commands:} \verb|add|, \verb|change|, \verb|replace|,
850 \subsection{{\tt ip neighbour add} --- add a new neighbour entry\\
852 {\tt ip neighbour replace} --- add a new entry or change an existing one}
854 \paragraph{Abbreviations:} \verb|add|, \verb|a|; \verb|change|, \verb|chg|;
898 \item \verb|ip neigh add 10.0.0.3 lladdr 0:0:0:0:0:1 dev eth0 nud perm|
900 --- add a permanent ARP entry for the neighbour 10.0.0.3 on the device \verb|eth0|.
914 \paragraph{Arguments:} The arguments are the same as with \verb|ip neigh add|,
1207 \subsection{{\tt ip route add} --- add a new route\\
1209 {\tt ip route replace} --- change a route or add a new one}
1212 \paragraph{Abbreviations:} \verb|add|, \verb|a|; \verb|change|, \verb|chg|;
1243 --- the table to add this route to.
1394 thing as classic \verb|route add|, i.e.\ adds a route, even if another
1407 \item add a plain route to network 10.0.0/24 via gateway 193.233.7.65
1409 ip route add 10.0.0/24 via 193.233.7.65
1415 \item add a default multipath route splitting the load between \verb|ppp0|
1418 ip route add default scope global nexthop dev ppp0 \
1428 ip route add nat 192.203.80.144 via 193.233.7.83
1439 \verb|ip route add|, but their semantics are a bit different.
1576 The output has the same syntax as arguments given to {\tt ip route add},
1845 It is time for a more complicated example. Let us add an invalid
1848 netadm@alisa:~ # ip route add 193.233.7.98 via 193.233.7.254
2009 \paragraph{Commands:} \verb|add|, \verb|delete| and \verb|show|
2012 \subsection{{\tt ip rule add} --- insert a new rule\\
2016 \paragraph{Abbreviations:} \verb|add|, \verb|a|; \verb|delete|, \verb|del|,
2055 Really, for historical reasons \verb|ip rule add| does not require a
2099 ip ru add from 192.203.80.0/24 table inr.ruhep prio 220
2105 ip ru add from 193.233.7.83 nat 192.203.80.144 table 1 prio 320
2164 \paragraph{Commands:} \verb|add|, \verb|delete|, \verb|show| (or \verb|list|).
2202 with \verb|ip maddr add|. See the following subsection.
2206 \subsection{{\tt ip maddress add} --- add a multicast address\\
2209 \paragraph{Abbreviations:} \verb|add|, \verb|a|; \verb|delete|, \verb|del|, \verb|d|.
2234 netadm@alisa:~ # ip maddr add 33:33:00:00:00:01 dev dummy
2340 \paragraph{Commands:} \verb|add|, \verb|delete|, \verb|change|, \verb|show|
2346 \subsection{{\tt ip tunnel add} --- add a new tunnel\\
2350 \paragraph{Abbreviations:} \verb|add|, \verb|a|; \verb|change|, \verb|chg|;
2437 netadm@amber:~ # ip tunl add Cisco mode sit remote 192.31.7.104 \
2758 ip neigh add proxy ADDRESS [ dev NAME ]
2833 ip route add nat 192.203.80.144 via 193.233.7.83
2845 ip route add nat 192.203.80.192/26 via 193.233.7.64
2856 ip rule add prio 320 from 193.233.7.83 nat 192.203.80.144
2861 is some NAT address, declared by {\tt ip route add nat}.
2875 useful and even necessary to add rules disabling translation
2963 ip addr add 127.0.0.1/8 dev lo brd + scope host
2968 \# If user gave loopback as device, we add the address as alias and exit.
2973 ip address add $ipaddr dev $dev
3015 \# OK, the address is unique, we may add it on the interface.\\
3021 if ! ip address add $pfx brd + dev $dev; then
3022 echo "Failed to add $pfx on $dev, trying DHCP..." 1>&2
3044 ip route add unreachable 224.0.0.0/24
3045 ip route add unreachable 255.255.255.255
3047 ip route add 224.0.0.0/4 dev $dev scope global
3062 ip ro add default dev $dev metric 30000 scope global
3092 \# {\bf Usage: \verb?ifcfg DEVICE[:ALIAS] [add|del] ADDRESS[/LENGTH] [PEER]?}\\
3095 \# ---Command: add, delete or stop.\\
3152 echo "Usage: ifcfg DEV [[add|del [ADDR[/LEN]] [PEER] | stop]" 1>&2
3153 echo " add - add new address" 1>&2
3169 add) shift ;;
3259 \# OK, the address is unique. We may add it to the interface.\\
3264 if ! ip address add $pfx brd + dev $dev $label; then
3265 echo "Error: failed to add $pfx on $dev." 1>&2
3284 ip route add unreachable 224.0.0.0/24 >& /dev/null
3285 ip route add unreachable 255.255.255.255 >& /dev/null
3287 ip route add 224.0.0.0/4 dev $dev scope global >& /dev/null