Home Web Front-end JS Tutorial js verification example of legality and validity of IP and subnet mask_javascript skills

js verification example of legality and validity of IP and subnet mask_javascript skills

May 16, 2016 pm 04:50 PM
subnet mask

Copy code The code is as follows:

function checkIP(ip)
{
obj=ip ;
var exp=/^(d{1,2}|1dd|2[0-4]d|25[0-5]).(d{1,2}|1dd|2[0-4 ]d|25[0-5]).(d{1,2}|1dd|2[0-4]d|25[0-5]).(d{1,2}|1dd|2[0 -4]d|25[0-5])$/;
var reg = obj.match(exp);
if(reg==null)
{
return false;// Illegal
}
else
{
return true; //Legal
}
}

function checkMask(mask)
{
obj =mask;
var exp=/^(254|252|248|240|224|192|128|0).0.0.0|255.(254|252|248|240|224|192|128| 0).0.0|255.255.(254|252|248|240|224|192|128|0).0|255.255.255.(254|252|248|240|224|192|128|0)$/ ;
var reg = obj.match(exp);
if(reg==null)
{
return false; //"illegal"
}
else
{
return true; //"Legal"
}
}
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is subnet mask What is subnet mask Jan 29, 2023 pm 04:57 PM

A subnet mask is a 32-bit address that is used to mask a part of an IP address to distinguish network identification and host identification, and to indicate whether the IP address is on a LAN or a WAN. The subnet mask can indicate which bits of an IP address identify the subnet where the host is located, and which bits identify the host's bit mask; the subnet mask cannot exist alone, it must be used in conjunction with the IP address.

Understand the function of subnet masking and its importance in network planning Understand the function of subnet masking and its importance in network planning Dec 26, 2023 am 09:06 AM

The role of subnet mask and its application in network planning With the rapid development of the Internet, network planning has become an important part of the operation of modern society. As one of the key elements in network planning, subnet mask plays an important role. This article will introduce the role of subnet mask and its application in network planning. First, let’s understand what a subnet mask is. A subnet mask is a 32-bit binary number used to divide a network. It is generally represented by four eight-bit binary numbers, such as 255.255.255.0. subnet mask

Subnet mask: role and impact on network communication efficiency Subnet mask: role and impact on network communication efficiency Dec 26, 2023 pm 04:28 PM

The role of subnet mask and its impact on network communication efficiency Introduction: With the popularity of the Internet, network communication has become an indispensable part of modern society. At the same time, the efficiency of network communication has also become one of the focuses of people's attention. In the process of building and managing a network, subnet mask is an important and basic configuration option, which plays a key role in network communication. This article will introduce the role of subnet mask and its impact on network communication efficiency. 1. Definition and function of subnet mask Subnet mask (subnetmask)

What is the function of subnet mask What is the function of subnet mask Dec 25, 2023 pm 04:16 PM

A subnet mask is an IP mask used to divide network addresses and host addresses. Its functions include: 1. Divide the network. By dividing different networks, network resources can be managed more effectively and network congestion and conflicts can be reduced. 2. Network security can be improved. By using subnet masks, a large network can be divided into Multiple small networks to achieve network isolation and security; 3. Optimize network performance. By properly configuring subnet masks, network broadcasts and conflicts can be reduced, thereby improving network performance and reliability.

What is the 192.168.1.1 subnet mask? What is the 192.168.1.1 subnet mask? Feb 20, 2023 pm 02:00 PM

The 192.168.1.1 subnet mask is "255.255.255.0". 192.168.1.1 is a Class C IP address. The default subnet mask of a Class C IP address is 255.255.255.0. The subnet mask is composed of a 32-bit binary number, which defines how many of the 32 bits of the IP address are used to identify the network, so the subnet mask cannot exist independently of the IP address.

What is the default subnet mask for a Class A network? What is the default subnet mask for a Class A network? Aug 01, 2022 pm 03:33 PM

The default subnet mask for a Class A network is "255.0.0.0"; a subnet can accommodate up to 16.77 million computers. The subnet mask is also called a network mask and an address mask. It is a method used to specify an IP address. Which bits of the address identify the subnet the host is on, and which bits identify the host's bitmask.

What is the relationship between subnet mask and ip address? What is the relationship between subnet mask and ip address? Sep 13, 2022 pm 03:34 PM

The relationship between subnet mask and IP address: 1. Subnet mask is used to determine whether the IP addresses of two computers belong to the same subnet. That is, the relationship between subnet mask and IP address can determine the unique address; 2. Convert the subnet mask and the IP address into binary and perform the AND algorithm, which is the only external address; 3. The subnet mask can be used to distinguish the network address and the host address.

What is the subnet mask for a Class A network? What is the subnet mask for a Class A network? Mar 08, 2023 am 11:19 AM

The subnet mask of a Class A network is "255.255.255.0". Subnet mask is a virtual IP technology produced in order to solve the problem of IP address allocation under the background of shortage of IPv4 address resources. The three types of addresses A, B, and C are divided into several subnets through the subnet mask, thus significantly improving the efficiency of IPv4 address allocation. IP address allocation efficiency; the default subnet mask of Class A is "255.0.0.0", the default subnet mask of Class B is "255.255.0.0", and the default subnet mask of Class C is "255.255.255.0" .

See all articles