Is there any rules to specify private ip address
I guess 192.168., 169, 10* are all private ips, but I am not sure. Anyone can point out?
Is there any rules to specify private ip address
I guess 192.168., 169, 10* are all private ips, but I am not sure. Anyone can point out?
Take a look at RFC5735 for a complete list of reserved networks. You're looking for "Private-Use Networks".
Address Block Present Use Reference
------------------------------------------------------------------
10.0.0.0/8 Private-Use Networks RFC 1918
172.16.0.0/12 Private-Use Networks RFC 1918
192.168.0.0/16 Private-Use Networks RFC 1918
Private IPs are IP addresses in the subnets reserved for private addresses:
All other (non-reserved) IP addresses can (and most likely do) refer to actual computers in the public internet, so they should not be used in private networks.
If you are using it in a network that wont connect to outside, it is fine. Else, you can consider using NAT translations. Use the range provided for private IP addresses, as given in some of the answers.