diff --git a/doc/scapy/usage.rst b/doc/scapy/usage.rst index 0914939f9..4abf75efd 100644 --- a/doc/scapy/usage.rst +++ b/doc/scapy/usage.rst @@ -1386,7 +1386,7 @@ Use Scapy to send a DHCP discover request and analyze the replies:: In this case we got 2 replies, so there were two active DHCP servers on the test network:: - >>> ans.summarize() + >>> ans.summary() Ether / IP / UDP 0.0.0.0:bootpc > 255.255.255.255:bootps / BOOTP / DHCP ==> Ether / IP / UDP 192.168.1.1:bootps > 255.255.255.255:bootpc / BOOTP / DHCP Ether / IP / UDP 0.0.0.0:bootpc > 255.255.255.255:bootps / BOOTP / DHCP ==> Ether / IP / UDP 192.168.1.11:bootps > 255.255.255.255:bootpc / BOOTP / DHCP }}}