How to Solve NameError: name 'Ether' is not defined -- scapy

Solution: Import the 'Ether' module

To Solve the error, add the following line to the top of your code.

from scapy import Ether

 

For more information:
Python scapy Ether