File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,13 +33,13 @@ there may not be cache entry for it. You can refresh the cache, by trying to
3333communicate with IP (e.g. by sending and ICMP Echo-Request aka ping) before
3434probing 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
You can’t perform that action at this time.
0 commit comments