diff options
| author | Sven Eckelmann <[email protected]> | 2015-10-28 10:58:00 +0100 |
|---|---|---|
| committer | Antonio Quartulli <[email protected]> | 2016-01-09 20:56:00 +0800 |
| commit | cc69d3dbbbfa134df2a7e7a72da6484c5d34fb0d (patch) | |
| tree | 175e83578a032c157a693d02d9ade058e1cb3c23 | |
| parent | e087f34f28d8597f7c82f079337939367ba96537 (diff) | |
batman-adv: Change ifconfig examples to iproute2
Signed-off-by: Sven Eckelmann <[email protected]>
Signed-off-by: Marek Lindner <[email protected]>
Signed-off-by: Antonio Quartulli <[email protected]>
| -rw-r--r-- | Documentation/networking/batman-adv.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Documentation/networking/batman-adv.txt b/Documentation/networking/batman-adv.txt index 58e49042fc20..ff23b755f5e4 100644 --- a/Documentation/networking/batman-adv.txt +++ b/Documentation/networking/batman-adv.txt @@ -115,14 +115,17 @@ The "bat0" interface can be used like any other regular inter- face. It needs an IP address which can be either statically con- figured or dynamically (by using DHCP or similar services): -# NodeA: ifconfig bat0 192.168.0.1 -# NodeB: ifconfig bat0 192.168.0.2 +# NodeA: ip link set up dev bat0 +# NodeA: ip addr add 192.168.0.1/24 dev bat0 + +# NodeB: ip link set up dev bat0 +# NodeB: ip addr add 192.168.0.2/24 dev bat0 # NodeB: ping 192.168.0.1 Note: In order to avoid problems remove all IP addresses previ- ously assigned to interfaces now used by batman advanced, e.g. -# ifconfig eth0 0.0.0.0 +# ip addr flush dev eth0 LOGGING/DEBUGGING |