1. Create a Pyhton class to represent an IP address. Name it FLIPAddress. FL is your initials. Implement the methods below.(i) Constructor should take 2 arguments.(a) dotted decimal IP address (string). Check if the input IP address is in proper formator valid.(b) CIDR subnet mask (integer)(ii) __str__()• Output: Formatted string of(a) IP address (dotted decimal)(b) Subnet mask (dotted decima)(c) Subnet address (dotted decimal)(d) Broadcast address (dotted decimal)(iii) getSubnetAddress()• Output: dotted decimal subnet address (string)(iv) getMaskDD()• Output: dotted decimal subnet mask (string)
The post TELE21895: Network Engineering appeared first on My Assignment Online.