Skip to content

Commit 833925e

Browse files
committed
Switch to TEST-NET-1 example addresses
1 parent 2e16c7a commit 833925e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ there may not be cache entry for it. You can refresh the cache, by trying to
3333
communicate with IP (e.g. by sending and ICMP Echo-Request aka ping) before
3434
probing the ARP cache.
3535

36-
Let's assume your current machine has the address ``192.168.1.10`` and
37-
another machine with the address ``192.168.1.1`` is on the same subnet:
36+
Let's assume your current machine has the address ``192.0.2.10`` and
37+
another machine with the address ``192.0.2.1`` is on the same subnet:
3838

3939
.. code:: python
4040
4141
>>> import arpreq
42-
>>> arpreq.arpreq('192.168.1.1')
42+
>>> arpreq.arpreq('192.0.2.1')
4343
'00:11:22:33:44:55'
4444
4545
If an IP address can not be resolved to an MAC address, None is returned.
@@ -73,7 +73,7 @@ returned as native bytes when using the ``arpreqb`` function:
7373
7474
>>> arpreq.arpreqb('127.0.0.1')
7575
b'\x00\x00\x00\x00\x00\x00'
76-
>>> arpreq.arpreqb('192.168.1.1')
76+
>>> arpreq.arpreqb('192.0.2.1')
7777
b'\x00\x11"3DU'
7878
7979
Supported Platforms

0 commit comments

Comments
 (0)