@@ -0,0 +1,9 @@
import ipaddress
net = ipaddress.ip_network("201.90.0.0/16")
subnets = net.subnets(new_prefix=22)
for subnet in subnets:
start = subnet.network_address
end = subnet.broadcast_address
print(f"{start} - {end}")
The note is not visible to the blocked user.