Your starting IP address is beyond the subnet you've set for yourself. When you employ subnetting, you need to use the IP addresses within the same subnet. Otherwise it is treated as a different network. Thats what subnetting is, you further divide the network into smaller, independent segments.
If you plan to use 192.168.1.1 with the subnetmask 255.255.255.252, your starting address has to be either 192.168.1.1 or .2
When using the mask 255.255.255.252, you only have 4 IP addresses. The rule of thumb is that the 1st and the last address can't be used, hence you only have 2 left to use for routers and computers.
You're IP scheme will look like this:
192.168.1.0 255.255.255.252 - Network ID
192.168.1.1 255.255.255.252 - Router IP address
192.168.1.2 255.255.255.252 - PC IP address
192.168.1.3 255.255.255.252 - Broadcast address
Using this scheme you're using the smallest possible subnet. For more information, look up the topic
Subnetting in the Wikipedia.
Hope this answers your question
