Update default IPs v0.9.7
authorJoseph C. Lehner <joseph.c.lehner@gmail.com>
Sun, 13 Nov 2016 10:48:43 +0000 (11:48 +0100)
committerJoseph C. Lehner <joseph.c.lehner@gmail.com>
Sun, 13 Nov 2016 10:48:43 +0000 (11:48 +0100)
README.md
nmrp.c

index 235c9128d610f340a5b490024a12b99d70df79e9..a9226cf875a49e2acf187aa7511dece8b4a0a26d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -55,7 +55,7 @@ after starting `nmrpflash`.
 # nmrpflash -i eth0 -f EX2700-V1.0.1.8.img
 Advertising NMRP server on eth0 ... /
 Received configuration request from a4:2b:8c:00:00:01.
-Sending configuration: ip 10.11.12.252, mask 255.255.255.0.
+Sending configuration: ip 10.164.183.252, mask 255.255.255.0.
 Received upload request: filename 'firmware'.
 Uploading EX2700-V1.0.1.8.img ... OK
 Waiting for remote to respond.
@@ -97,7 +97,7 @@ MAC address. It's also possible that your device does not support the NMRP proto
 ###### "Timeout while waiting for initial reply."
 
 The device did not respond to `nmrpflash`'s TFTP upload request. By default,
-`nmrpflash` will assign `10.11.12.252` to the target device, while adding `10.11.12.253`
+`nmrpflash` will assign `10.164.183.252` to the target device, while adding `10.164.183.253`
 to the network interface specified by the `-i` flag. You can use `-a` to change the IP
 address assigned to the target (e.g. if your network is `192.168.1.0/24`, specify a *free*
 IP address, such as `-a 192.168.1.252`), and `-A` to change the IP address used for the
diff --git a/nmrp.c b/nmrp.c
index 86550b928b7517704a1af2ee257f2ddf4eae5d47..0fb583ed2428ca97cd7df91799fe0efb47089bfe 100644 (file)
--- a/nmrp.c
+++ b/nmrp.c
@@ -430,10 +430,13 @@ int nmrp_do(struct nmrpd_args *args)
 
        if (!args->ipaddr) {
                autoip = true;
-               args->ipaddr = "10.11.12.252";
+               /* The MAC of the device that was used to test this utility starts
+                * with a4:2b:8c, hence 164 (0xa4) and 183 (0x2b + 0x8c)
+                */
+               args->ipaddr = "10.164.183.252";
 
                if (!args->ipaddr_intf) {
-                       args->ipaddr_intf = "10.11.12.253";
+                       args->ipaddr_intf = "10.164.183.253";
                }
        } else if (args->ipaddr_intf) {
                autoip = true;