Hi @Nandan Hegde , welcome to Microsoft Q&A forum.
Anything after '/' represents the subnet mask of network and there is way to determine the IP range based on it. IP address is basically a 32 bit number divided into 4 bytes. few Examples below:
255.255.255.255 -> 11111111 11111111 11111111 11111111
255.255.255.128 -> 11111111 11111111 11111111 10000000
0.0.0.0 -> 00000000 00000000 00000000 00000000
When we add a subnet to it, it will represent it in below binary formats:
/28 -> 11111111 11111111 11111111 11110000. This means we have range from '0000' to '1111' for this subnet mask (16)
/27 -> 11111111 11111111 11111111 11100000. This means we have range from '00000' to '11111' for this subnet mask (32)
And so on and so forth.
Now if we calculate the IP range of your example (13.69.230.96/28), it will be as below.
Network Address: 13.69.230.96/28
Broadcast: 13.69.230.111
Range of usable IP: 13.69.230.97 to 13.69.230.110
Another example of 13.74.108.224/28:
Network Address: 13.74.108.224/28
Broadcast: 13.74.108.239
Range of usable IP: 13.74.108.225 to 13.74.108.238
You can use below calculator for more conversions:
http://jodies.de/ipcalc?
Second type of IP example you provided was related to IPv6 which is not supported to be added to Azure SQL firewall yet. If we try to add it, error message 'IP Address must be a valid IPv4 address' pop ups.
Please let me know if this helps or else we can discuss further.
----------
If answer helps, please select 'Accept Answer' as it could help other community members looking for similar query.