@benis_redux @benis_redux 14 addresses, and the broadcast is 192.168.8.143.
Reasoning a /28 has 16 addresses avaliable in the but the first one 128 goes to the network, the last one 143 is the broadcast. so 192.168.8.129-142 is the usable range.
How you find out how many address there are in a CIDR.
An IPv4 address is 32 bits
00000000 00000000 00000000 00000000
A /28 CIDR implies that the network gets 28 bits out of the 32, so the host bits are 4 bits. You could express the mask in binary like so.
11111111 11111111 11111111 11110000 in the case of the network
or
00000000 00000000 00000000 00001111 in the case of the hosts
Focusing on the last octet 00001111
That number in binary is 16. A quick way to calculate that number is you know that four bits are going to the hosts so you can do 24 which equals 16, you always minus two off the end result for network and broadcast address which is why it's 14. You can apply this logic for the remainder of calculating CIDR addresses. And they will have you doing this in the CCNA exam.